ResolveChangeContextOptions
- class aws_cdk.ResolveChangeContextOptions(*, allow_intrinsic_keys=None, remove_empty=None)
Bases:
object
Options that can be changed while doing a recursive resolve.
- Parameters:
allow_intrinsic_keys (
Optional
[bool
]) – Change the ‘allowIntrinsicKeys’ option. Default: - Unchangedremove_empty (
Optional
[bool
]) – Whether to remove undefined elements from arrays and objects when resolving. Default: - Unchanged
- 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 resolve_change_context_options = cdk.ResolveChangeContextOptions( allow_intrinsic_keys=False, remove_empty=False )
Attributes
- allow_intrinsic_keys
Change the ‘allowIntrinsicKeys’ option.
- Default:
Unchanged
- remove_empty
Whether to remove undefined elements from arrays and objects when resolving.
- Default:
Unchanged