Package software.constructs
Interface MetadataEntry
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MetadataEntry.Jsii$Proxy
@Generated(value="jsii-pacmak/1.57.0 (build f614666)", date="2022-05-02T00:17:06.884Z") @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.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.Can be omitted by setting the context key
ConstructMetadata.DISABLE_STACK_TRACE_IN_METADATA
to 1.Default: - no trace information
-
builder
@Stability(Stable) static MetadataEntry.Builder builder()
- Returns:
- a
MetadataEntry.Builder
ofMetadataEntry
-
-