Skip to content

MetadataEntry

A metadata entry in a cloud assembly artifact.

Initializer

import { MetadataEntry } from '@alicloud/ros-cdk-assembly-schema'
const metadataEntry: MetadataEntry = { ... }

Properties

Name Type Description
type string The type of the metadata entry.
data string | Tag[] The data.
trace string[] A stack trace for when the entry was created.

typeRequired

public readonly type: string;
  • Type: string

The type of the metadata entry.


dataOptional

public readonly data: string | Tag[];
  • Type: string | Tag[]
  • Default: no data.

The data.


traceOptional

public readonly trace: string[];
  • Type: string[]
  • Default: no trace.

A stack trace for when the entry was created.