Interface CfnTableMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTableMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:26.510Z")
@Stability(Stable)
public interface CfnTableMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTablePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.glue.mixins.*;
Object parameters;
Object skewedColumnValueLocationMaps;
CfnTableMixinProps cfnTableMixinProps = CfnTableMixinProps.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.openTableFormatInput(OpenTableFormatInputProperty.builder()
.icebergInput(IcebergInputProperty.builder()
.metadataOperation("metadataOperation")
.version("version")
.build())
.build())
.tableInput(TableInputProperty.builder()
.description("description")
.name("name")
.owner("owner")
.parameters(parameters)
.partitionKeys(List.of(ColumnProperty.builder()
.comment("comment")
.name("name")
.type("type")
.build()))
.retention(123)
.storageDescriptor(StorageDescriptorProperty.builder()
.bucketColumns(List.of("bucketColumns"))
.columns(List.of(ColumnProperty.builder()
.comment("comment")
.name("name")
.type("type")
.build()))
.compressed(false)
.inputFormat("inputFormat")
.location("location")
.numberOfBuckets(123)
.outputFormat("outputFormat")
.parameters(parameters)
.schemaReference(SchemaReferenceProperty.builder()
.schemaId(SchemaIdProperty.builder()
.registryName("registryName")
.schemaArn("schemaArn")
.schemaName("schemaName")
.build())
.schemaVersionId("schemaVersionId")
.schemaVersionNumber(123)
.build())
.serdeInfo(SerdeInfoProperty.builder()
.name("name")
.parameters(parameters)
.serializationLibrary("serializationLibrary")
.build())
.skewedInfo(SkewedInfoProperty.builder()
.skewedColumnNames(List.of("skewedColumnNames"))
.skewedColumnValueLocationMaps(skewedColumnValueLocationMaps)
.skewedColumnValues(List.of("skewedColumnValues"))
.build())
.sortColumns(List.of(OrderProperty.builder()
.column("column")
.sortOrder(123)
.build()))
.storedAsSubDirectories(false)
.build())
.tableType("tableType")
.targetTable(TableIdentifierProperty.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.name("name")
.region("region")
.build())
.viewExpandedText("viewExpandedText")
.viewOriginalText("viewOriginalText")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTableMixinPropsstatic final classAn implementation forCfnTableMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnTableMixinProps.Builderbuilder()default StringThe ID of the Data Catalog in which to create theTable.default StringThe name of the database where the table metadata resides.default ObjectSpecifies anOpenTableFormatInputstructure when creating an open format table.default ObjectA structure used to define a table.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The ID of the Data Catalog in which to create theTable.- See Also:
-
getDatabaseName
The name of the database where the table metadata resides.For Hive compatibility, this must be all lowercase.
- See Also:
-
getOpenTableFormatInput
Specifies anOpenTableFormatInputstructure when creating an open format table.Returns union: either
IResolvableorCfnTablePropsMixin.OpenTableFormatInputProperty- See Also:
-
getTableInput
A structure used to define a table.Returns union: either
IResolvableorCfnTablePropsMixin.TableInputProperty- See Also:
-
builder
- Returns:
- a
CfnTableMixinProps.BuilderofCfnTableMixinProps
-