Interface CfnTable.IcebergSchemaProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.IcebergSchemaProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.IcebergSchemaProperty
extends software.amazon.jsii.JsiiSerializable
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.glue.*;
IcebergSchemaProperty icebergSchemaProperty = IcebergSchemaProperty.builder()
.fields(List.of(IcebergStructFieldProperty.builder()
.id(123)
.name("name")
.required(false)
.type("type")
// the properties below are optional
.doc("doc")
.build()))
// the properties below are optional
.identifierFieldIds(List.of(123))
.schemaId(123)
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.IcebergSchemaPropertystatic final classAn implementation forCfnTable.IcebergSchemaProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnTable.IcebergStructFieldProperty>default Objectdefault Numberdefault StringgetType()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFields
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnTable.IcebergStructFieldProperty>- See Also:
-
getIdentifierFieldIds
- See Also:
-
getSchemaId
- See Also:
-
getType
- See Also:
-
builder
-