Interface CfnTable.IcebergMetadataProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.IcebergMetadataProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.IcebergMetadataProperty
extends software.amazon.jsii.JsiiSerializable
Contains details about the metadata for an Iceberg table.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.s3tables.*;
IcebergMetadataProperty icebergMetadataProperty = IcebergMetadataProperty.builder()
.icebergSchema(IcebergSchemaProperty.builder()
.schemaFieldList(List.of(SchemaFieldProperty.builder()
.name("name")
.type("type")
// the properties below are optional
.required(false)
.build()))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.IcebergMetadataPropertystatic final classAn implementation forCfnTable.IcebergMetadataProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIcebergSchema
The schema for an Iceberg table.Returns union: either
IResolvableorCfnTable.IcebergSchemaProperty- See Also:
-
builder
-