Interface CfnPartitionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPartitionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:59.729Z")
@Stability(Stable)
public interface CfnPartitionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPartitionPropsMixin.
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;
CfnPartitionMixinProps cfnPartitionMixinProps = CfnPartitionMixinProps.builder()
.catalogId("catalogId")
.databaseName("databaseName")
.partitionInput(PartitionInputProperty.builder()
.parameters(parameters)
.storageDescriptor(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())
.values(List.of("values"))
.build())
.tableName("tableName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnPartitionMixinPropsstatic final classAn implementation forCfnPartitionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe AWS account ID of the catalog in which the partion is to be created.default StringThe name of the catalog database in which to create the partition.default ObjectThe structure used to create and update a partition.default StringThe name of the metadata table in which the partition is to be created.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCatalogId
The AWS account ID of the catalog in which the partion is to be created.To specify the account ID, you can use the
Refintrinsic function with theAWS::AccountIdpseudo parameter. For example:!Ref AWS::AccountId- See Also:
-
getDatabaseName
The name of the catalog database in which to create the partition.- See Also:
-
getPartitionInput
The structure used to create and update a partition.Returns union: either
IResolvableorCfnPartitionPropsMixin.PartitionInputProperty- See Also:
-
getTableName
The name of the metadata table in which the partition is to be created.- See Also:
-
builder
- Returns:
- a
CfnPartitionMixinProps.BuilderofCfnPartitionMixinProps
-