interface MetadataEntry
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.MetadataEntry |
Java | software.amazon.awscdk.cloudassembly.schema.MetadataEntry |
Python | aws_cdk.cloud_assembly_schema.MetadataEntry |
TypeScript (source) | @aws-cdk/cloud-assembly-schema » MetadataEntry |
A metadata entry in a cloud assembly artifact.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';
const metadataEntry: cloud_assembly_schema.MetadataEntry = {
type: 'type',
// the properties below are optional
data: 'data',
trace: ['trace'],
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of the metadata entry. |
| data? | string | File | Container | Tag[] | The data. |
| trace? | string[] | A stack trace for when the entry was created. |
type
Type:
string
The type of the metadata entry.
data?
Type:
string | File | Container | Tag[]
(optional, default: no data.)
The data.
trace?
Type:
string[]
(optional, default: no trace.)
A stack trace for when the entry was created.

.NET
Java
Python
TypeScript (