interface PropertyMutationMetadataEntry
| Language | Type name |
|---|---|
.NET | Amazon.CDK.cloud_assembly_schema.PropertyMutationMetadataEntry |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#PropertyMutationMetadataEntry |
Java | software.amazon.awscdk.cloud_assembly_schema.PropertyMutationMetadataEntry |
Python | aws_cdk.cloud_assembly_schema.PropertyMutationMetadataEntry |
TypeScript (source) | aws-cdk-lib » cloud_assembly_schema » PropertyMutationMetadataEntry |
Metadata type of a PropertyMutation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cloud_assembly_schema } from 'aws-cdk-lib';
const propertyMutationMetadataEntry: cloud_assembly_schema.PropertyMutationMetadataEntry = {
propertyName: 'propertyName',
stackTrace: ['stackTrace'],
};
Properties
| Name | Type | Description |
|---|---|---|
| property | string | Name of the property. |
| stack | string[] | Stack trace of the mutation. |
propertyName
Type:
string
Name of the property.
stackTrace
Type:
string[]
Stack trace of the mutation.

.NET
Go
Java
Python
TypeScript (