Interface MetadataEntry
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MetadataEntry.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.796Z") @Stability(Stable) public interface MetadataEntry extends software.amazon.jsii.JsiiSerializable
A metadata entry in a cloud assembly artifact.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classMetadataEntry.BuilderA builder forMetadataEntrystatic classMetadataEntry.Jsii$ProxyAn implementation forMetadataEntry
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static MetadataEntry.Builderbuilder()default ObjectgetData()The data.default List<String>getTrace()A stack trace for when the entry was created.StringgetType()The type of the metadata entry.
-
-
-
Method Detail
-
getType
@Stability(Stable) @NotNull String getType()
The type of the metadata entry.
-
getData
@Stability(Stable) @Nullable default Object getData()
The data.Returns union: either
StringorNumberorBooleanorFileAssetMetadataEntryorContainerImageAssetMetadataEntryor List<Tag>Default: - no data.
-
getTrace
@Stability(Stable) @Nullable default List<String> getTrace()
A stack trace for when the entry was created.Default: - no trace.
-
builder
@Stability(Stable) static MetadataEntry.Builder builder()
- Returns:
- a
MetadataEntry.BuilderofMetadataEntry
-
-