IntrinsicProps

class aws_cdk.IntrinsicProps(*, stack_trace=None, type_hint=None)

Bases: object

Customization properties for an Intrinsic token.

Parameters:
  • stack_trace (Optional[bool]) – Capture the stack trace of where this token is created. Default: true

  • type_hint (Optional[ResolutionTypeHint]) – Type that this token is expected to evaluate to. Default: ResolutionTypeHint.STRING

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk as cdk

intrinsic_props = cdk.IntrinsicProps(
    stack_trace=False,
    type_hint=cdk.ResolutionTypeHint.STRING
)

Attributes

stack_trace

Capture the stack trace of where this token is created.

Default:

true

type_hint

Type that this token is expected to evaluate to.

Default:

ResolutionTypeHint.STRING