Skip to content

MetadataEntry

A metadata entry in a cloud assembly artifact.

Initializer

using AlibabaCloud.SDK.ROS.CDK.Assembly.Schema;
new MetadataEntry {
    string Type,
    object Data = null,
    string[] Trace = null
};

Properties

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

TypeRequired

public string Type { get; set; }
  • Type: string

The type of the metadata entry.


DataOptional

public object Data { get; set; }
  • Type: object
  • Default: no data.

The data.


TraceOptional

public string[] Trace { get; set; }
  • Type: string[]
  • Default: no trace.

A stack trace for when the entry was created.