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