aws-cdk-lib.cx_api.MetadataEntryResult

interface MetadataEntryResult

LanguageType name
.NETAmazon.CDK.CXAPI.MetadataEntryResult
Gogithub.com/aws/aws-cdk-go/awscdk/v2/cxapi#MetadataEntryResult
Javasoftware.amazon.awscdk.cxapi.MetadataEntryResult
Pythonaws_cdk.cx_api.MetadataEntryResult
TypeScript (source)aws-cdk-lib » cx_api » MetadataEntryResult

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { cx_api } from 'aws-cdk-lib';
const metadataEntryResult: cx_api.MetadataEntryResult = {
  path: 'path',
  type: 'type',

  // the properties below are optional
  data: 'data',
  trace: ['trace'],
};

Properties

NameTypeDescription
pathstringThe path in which this entry was defined.
typestringThe type of the metadata entry.
data?string | FileAssetMetadataEntry | ContainerImageAssetMetadataEntry | 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 | FileAssetMetadataEntry | ContainerImageAssetMetadataEntry | Tag[] (optional, default: no data.)

The data.


trace?

Type: string[] (optional, default: no trace.)

A stack trace for when the entry was created.