CfnDynamicReference¶
-
class
aws_cdk.core.
CfnDynamicReference
(service, key)¶ Bases:
aws_cdk.core.Intrinsic
References a dynamically retrieved value.
This is a Construct so that subclasses will (eventually) be able to attach metadata to themselves without having to change call signatures.
- See
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/dynamic-references.html
- Parameters
service (
CfnDynamicReferenceService
) –key (
str
) –
Methods
-
resolve
(_context)¶ (experimental) Produce the Token’s value at resolution time.
- Parameters
_context (
IResolveContext
) –- Stability
experimental
- Return type
Any
-
to_json
()¶ (experimental) Turn this Token into JSON.
Called automatically when JSON.stringify() is called on a Token.
- Stability
experimental
- Return type
Any
-
to_string
()¶ (experimental) Convert an instance of this Token to a string.
This method will be called implicitly by language runtimes if the object is embedded into a string. We treat it the same as an explicit stringification.
- Stability
experimental
- Return type
str
Attributes
-
creation_stack
¶ (experimental) The captured stack trace which represents the location in which this token was created.
- Stability
experimental
- Return type
List
[str
]