interface MetadataEntryResult
Language | Type name |
---|---|
.NET | Amazon.CDK.CXAPI.MetadataEntryResult |
Java | software.amazon.awscdk.cxapi.MetadataEntryResult |
Python | aws_cdk.cx_api.MetadataEntryResult |
TypeScript (source) | @aws-cdk/cx-api » MetadataEntryResult |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cx_api from '@aws-cdk/cx-api';
const metadataEntryResult: cx_api.MetadataEntryResult = {
path: 'path',
type: 'type',
// the properties below are optional
data: 'data',
trace: ['trace'],
};
Properties
Name | Type | Description |
---|---|---|
path | string | The path in which this entry was defined. |
type | string | The type of the metadata entry. |
data? | string | File | Container | Tag [] | The data. |
trace? | string[] | A stack trace for when the entry was created. |
path
Type:
string
The path in which this entry was defined.
type
Type:
string
The type of the metadata entry.
data?
Type:
string |
File
|
Container
|
Tag
[]
(optional, default: no data.)
The data.
trace?
Type:
string[]
(optional, default: no trace.)
A stack trace for when the entry was created.