@Stability(value=Stable)
public static interface CfnPartition.PartitionInputProperty
extends software.amazon.jsii.JsiiSerializable
// 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;
PartitionInputProperty partitionInputProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPartition.PartitionInputProperty.Builder
A builder for
CfnPartition.PartitionInputProperty |
static class |
CfnPartition.PartitionInputProperty.Jsii$Proxy
An implementation for
CfnPartition.PartitionInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPartition.PartitionInputProperty.Builder |
builder() |
default Object |
getParameters()
`CfnPartition.PartitionInputProperty.Parameters`.
|
default Object |
getStorageDescriptor()
`CfnPartition.PartitionInputProperty.StorageDescriptor`.
|
List<String> |
getValues()
`CfnPartition.PartitionInputProperty.Values`.
|
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default Object getStorageDescriptor()
@Stability(value=Stable) @NotNull List<String> getValues()
@Stability(value=Stable) static CfnPartition.PartitionInputProperty.Builder builder()
Copyright © 2021. All rights reserved.