Interface CfnPartitionPropsMixin.StorageDescriptorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPartitionPropsMixin.StorageDescriptorProperty.Jsii$Proxy
Enclosing class:
CfnPartitionPropsMixin

@Stability(Stable) public static interface CfnPartitionPropsMixin.StorageDescriptorProperty extends software.amazon.jsii.JsiiSerializable
Describes the physical storage of table data.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.glue.*;
 Object parameters;
 Object skewedColumnValueLocationMaps;
 StorageDescriptorProperty storageDescriptorProperty = 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();
 

See Also: