Package software.constructs
Interface MetadataEntry
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MetadataEntry.Jsii$Proxy
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-06-06T00:11:09.617Z") @Stability(Stable) public interface MetadataEntry extends software.amazon.jsii.JsiiSerializable
An entry in the construct metadata table.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
MetadataEntry.Builder
A builder forMetadataEntry
static class
MetadataEntry.Jsii$Proxy
An implementation forMetadataEntry
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static MetadataEntry.Builder
builder()
Object
getData()
The data.default List<String>
getTrace()
Stack trace at the point of adding the metadata.String
getType()
The metadata entry type.
-
-
-
Method Detail
-
getData
@Stability(Stable) @NotNull Object getData()
The data.
-
getType
@Stability(Stable) @NotNull String getType()
The metadata entry type.
-
getTrace
@Stability(Stable) @Nullable default List<String> getTrace()
Stack trace at the point of adding the metadata.Only available if
addMetadata()
is called withstackTrace: true
.Default: - no trace information
-
builder
@Stability(Stable) static MetadataEntry.Builder builder()
- Returns:
- a
MetadataEntry.Builder
ofMetadataEntry
-
-