Skip to content

MetadataEntryResult

Initializer

import { MetadataEntryResult } from '@alicloud/ros-cdk-cxapi'
const metadataEntryResult: MetadataEntryResult = { ... }

Properties

Name Type Description
type string The type of the metadata entry.
data string | @alicloud/ros-cdk-assembly-schema.Tag[] The data.
trace string[] A stack trace for when the entry was created.
path string The path in which this entry was defined.

typeRequired

public readonly type: string;
  • Type: string

The type of the metadata entry.


dataOptional

public readonly data: string | Tag[];
  • Type: string | @alicloud/ros-cdk-assembly-schema.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.


pathRequired

public readonly path: string;
  • Type: string

The path in which this entry was defined.