You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This won't work because when we generate the unique logical ID we will treat the stringified token as a normal string and that's not what the user intends. If the need arises, we can technically support "lazy" logical IDs (see API Gateway's LatestDeploymentResource).
The text was updated successfully, but these errors were encountered:
Relax construct ID constraints to allow "/" (path seprator)
to be used in construct IDs, but convert it to "--" so it won't
collide with path strings.
It's quite rare for people to actually try to find a construct
by their ID (it's mostly "write-only") and the logical ID is eventually
mangled anyway when synthesized to CFN.
Fails if the construct ID contains a token. This won't work because
we mangle the IDs as strings when we generate the logical ID
and the construct's unique ID, and stringified tokens won't be
resolved.
Fixes#1351Fixes#1374
…1375)
Relax construct ID constraints to allow "/" (path seprator)
to be used in construct IDs, but convert it to "--" so it won't
collide with path strings.
It's quite rare for people to actually try to find a construct
by their ID (it's mostly "write-only") and the logical ID is eventually
mangled anyway when synthesized to CFN.
Fails if the construct ID contains a token. This won't work because
we mangle the IDs as strings when we generate the logical ID
and the construct's unique ID, and stringified tokens won't be
resolved.
Fixes#1351Fixes#1374
This won't work because when we generate the unique logical ID we will treat the stringified token as a normal string and that's not what the user intends. If the need arises, we can technically support "lazy" logical IDs (see API Gateway's LatestDeploymentResource).
The text was updated successfully, but these errors were encountered: