Interface CfnTablePropsMixin.IcebergSchemaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.IcebergSchemaProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.IcebergSchemaProperty
extends software.amazon.jsii.JsiiSerializable
Contains details about the schema 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.cfnpropertymixins.services.s3tables.*;
IcebergSchemaProperty icebergSchemaProperty = IcebergSchemaProperty.builder()
.schemaFieldList(List.of(SchemaFieldProperty.builder()
.id(123)
.name("name")
.required(false)
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTablePropsMixin.IcebergSchemaPropertystatic final classAn implementation forCfnTablePropsMixin.IcebergSchemaProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSchemaFieldList
The schema fields for the table.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnTablePropsMixin.SchemaFieldProperty>- See Also:
-
builder
-