aws-cdk-lib.IntrinsicProps

interface IntrinsicProps

LanguageType name
.NETAmazon.CDK.IntrinsicProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2#IntrinsicProps
Javasoftware.amazon.awscdk.IntrinsicProps
Pythonaws_cdk.IntrinsicProps
TypeScript (source)aws-cdk-lib » IntrinsicProps

Customization properties for an Intrinsic token.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from 'aws-cdk-lib';
const intrinsicProps: cdk.IntrinsicProps = {
  stackTrace: false,
  typeHint: cdk.ResolutionTypeHint.STRING,
};

Properties

NameTypeDescription
stackTrace?booleanCapture the stack trace of where this token is created.
typeHint?ResolutionTypeHintType that this token is expected to evaluate to.

stackTrace?

Type: boolean (optional, default: true)

Capture the stack trace of where this token is created.


typeHint?

Type: ResolutionTypeHint (optional, default: ResolutionTypeHint.STRING)

Type that this token is expected to evaluate to.