@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:06.666Z") @Stability(value=Stable) public interface CfnPartitionProps 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.*;
Object parameters;
Object skewedColumnValueLocationMaps;
CfnPartitionProps cfnPartitionProps = CfnPartitionProps.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.partitionInput(PartitionInputProperty.builder()
.values(List.of("values"))
// the properties below are optional
.parameters(parameters)
.storageDescriptor(StorageDescriptorProperty.builder()
.bucketColumns(List.of("bucketColumns"))
.columns(List.of(ColumnProperty.builder()
.name("name")
// the properties below are optional
.comment("comment")
.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")
// the properties below are optional
.sortOrder(123)
.build()))
.storedAsSubDirectories(false)
.build())
.build())
.tableName("tableName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPartitionProps.Builder
A builder for
CfnPartitionProps |
static class |
CfnPartitionProps.Jsii$Proxy
An implementation for
CfnPartitionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPartitionProps.Builder |
builder() |
String |
getCatalogId()
`AWS::Glue::Partition.CatalogId`.
|
String |
getDatabaseName()
`AWS::Glue::Partition.DatabaseName`.
|
Object |
getPartitionInput()
`AWS::Glue::Partition.PartitionInput`.
|
String |
getTableName()
`AWS::Glue::Partition.TableName`.
|
@Stability(value=Stable) @NotNull String getCatalogId()
@Stability(value=Stable) @NotNull String getDatabaseName()
@Stability(value=Stable) @NotNull Object getPartitionInput()
@Stability(value=Stable) @NotNull String getTableName()
@Stability(value=Stable) static CfnPartitionProps.Builder builder()
CfnPartitionProps.Builder of CfnPartitionPropsCopyright © 2021. All rights reserved.