Interface MetadataEntry

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
MetadataEntryResult
All Known Implementing Classes:
MetadataEntry.Jsii$Proxy, MetadataEntryResult.Jsii$Proxy

@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)", date="2025-11-13T16:10:16.225Z") @Stability(Stable) public interface MetadataEntry extends software.amazon.jsii.JsiiSerializable
A metadata entry in a cloud assembly artifact.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cloud_assembly_schema.*;
 MetadataEntry metadataEntry = MetadataEntry.builder()
         .type("type")
         // the properties below are optional
         .data("data")
         .trace(List.of("trace"))
         .build();