interface ResolveChangeContextOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.ResolveChangeContextOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2#ResolveChangeContextOptions |
Java | software.amazon.awscdk.ResolveChangeContextOptions |
Python | aws_cdk.ResolveChangeContextOptions |
TypeScript (source) | aws-cdk-lib » ResolveChangeContextOptions |
Options that can be changed while doing a recursive resolve.
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 resolveChangeContextOptions: cdk.ResolveChangeContextOptions = {
allowIntrinsicKeys: false,
removeEmpty: false,
};
Properties
Name | Type | Description |
---|---|---|
allow | boolean | Change the 'allowIntrinsicKeys' option. |
remove | boolean | Whether to remove undefined elements from arrays and objects when resolving. |
allowIntrinsicKeys?
Type:
boolean
(optional, default: Unchanged)
Change the 'allowIntrinsicKeys' option.
removeEmpty?
Type:
boolean
(optional, default: Unchanged)
Whether to remove undefined elements from arrays and objects when resolving.