@Stability(value=Stable)
public static interface CfnPartition.StorageDescriptorProperty
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;
StorageDescriptorProperty storageDescriptorProperty = 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPartition.StorageDescriptorProperty.Builder
A builder for
CfnPartition.StorageDescriptorProperty |
static class |
CfnPartition.StorageDescriptorProperty.Jsii$Proxy
An implementation for
CfnPartition.StorageDescriptorProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPartition.StorageDescriptorProperty.Builder |
builder() |
default List<String> |
getBucketColumns()
`CfnPartition.StorageDescriptorProperty.BucketColumns`.
|
default Object |
getColumns()
`CfnPartition.StorageDescriptorProperty.Columns`.
|
default Object |
getCompressed()
`CfnPartition.StorageDescriptorProperty.Compressed`.
|
default String |
getInputFormat()
`CfnPartition.StorageDescriptorProperty.InputFormat`.
|
default String |
getLocation()
`CfnPartition.StorageDescriptorProperty.Location`.
|
default Number |
getNumberOfBuckets()
`CfnPartition.StorageDescriptorProperty.NumberOfBuckets`.
|
default String |
getOutputFormat()
`CfnPartition.StorageDescriptorProperty.OutputFormat`.
|
default Object |
getParameters()
`CfnPartition.StorageDescriptorProperty.Parameters`.
|
default Object |
getSchemaReference()
`CfnPartition.StorageDescriptorProperty.SchemaReference`.
|
default Object |
getSerdeInfo()
`CfnPartition.StorageDescriptorProperty.SerdeInfo`.
|
default Object |
getSkewedInfo()
`CfnPartition.StorageDescriptorProperty.SkewedInfo`.
|
default Object |
getSortColumns()
`CfnPartition.StorageDescriptorProperty.SortColumns`.
|
default Object |
getStoredAsSubDirectories()
`CfnPartition.StorageDescriptorProperty.StoredAsSubDirectories`.
|
@Stability(value=Stable) @Nullable default List<String> getBucketColumns()
@Stability(value=Stable) @Nullable default Object getColumns()
@Stability(value=Stable) @Nullable default Object getCompressed()
@Stability(value=Stable) @Nullable default String getInputFormat()
@Stability(value=Stable) @Nullable default String getLocation()
@Stability(value=Stable) @Nullable default Number getNumberOfBuckets()
@Stability(value=Stable) @Nullable default String getOutputFormat()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default Object getSchemaReference()
@Stability(value=Stable) @Nullable default Object getSerdeInfo()
@Stability(value=Stable) @Nullable default Object getSkewedInfo()
@Stability(value=Stable) @Nullable default Object getSortColumns()
@Stability(value=Stable) @Nullable default Object getStoredAsSubDirectories()
@Stability(value=Stable) static CfnPartition.StorageDescriptorProperty.Builder builder()
Copyright © 2021. All rights reserved.