interface IntrinsicProps
Language | Type name |
---|---|
.NET | Amazon.CDK.IntrinsicProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2#IntrinsicProps |
Java | software.amazon.awscdk.IntrinsicProps |
Python | aws_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
Name | Type | Description |
---|---|---|
stack | boolean | Capture the stack trace of where this token is created. |
type | Resolution | Type 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:
Resolution
(optional, default: ResolutionTypeHint.STRING)
Type that this token is expected to evaluate to.