Skip to content

MetadataEntry

A metadata entry in a cloud assembly artifact.

Initializer

import ros_cdk_assembly_schema
ros_cdk_assembly_schema.MetadataEntry(
  type: str,
  data: typing.Union[str, typing.List[Tag]] = None,
  trace: typing.List[str] = None
)

Properties

Name Type Description
type str The type of the metadata entry.
data typing.Union[str, typing.List[Tag]] The data.
trace typing.List[str] A stack trace for when the entry was created.

typeRequired

type: str
  • Type: str

The type of the metadata entry.


dataOptional

data: typing.Union[str, typing.List[Tag]]
  • Type: typing.Union[str, typing.List[Tag]]
  • Default: no data.

The data.


traceOptional

trace: typing.List[str]
  • Type: typing.List[str]
  • Default: no trace.

A stack trace for when the entry was created.