PropertyMutationMetadataEntry
- class aws_cdk.cloud_assembly_schema.PropertyMutationMetadataEntry(*, property_name, stack_trace)
Bases:
objectMetadata type of a PropertyMutation.
- Parameters:
property_name (
str) – Name of the property.stack_trace (
Sequence[str]) – Stack trace of the mutation.
- 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.cloud_assembly_schema as cloud_assembly_schema property_mutation_metadata_entry = cloud_assembly_schema.PropertyMutationMetadataEntry( property_name="propertyName", stack_trace=["stackTrace"] )
Attributes
- property_name
Name of the property.
- stack_trace
Stack trace of the mutation.