MetadataEntry

class aws_cdk.cloud_assembly_schema.MetadataEntry(*, type, data=None, trace=None)

Bases: object

A metadata entry in a cloud assembly artifact.

Parameters:
  • type (str) – The type of the metadata entry.

  • data (Union[str, FileAssetMetadataEntry, Dict[str, Any], ContainerImageAssetMetadataEntry, Sequence[Union[Tag, Dict[str, Any]]], None]) – The data. Default: - no data.

  • trace (Optional[Sequence[str]]) – A stack trace for when the entry was created. Default: - no trace.

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

metadata_entry = cloud_assembly_schema.MetadataEntry(
    type="type",

    # the properties below are optional
    data="data",
    trace=["trace"]
)

Attributes

data

The data.

Default:
  • no data.

trace

A stack trace for when the entry was created.

Default:
  • no trace.

type

The type of the metadata entry.