Class CfnPartition
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.glue.CfnPartition
- All Implemented Interfaces:
IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
,software.constructs.IDependable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-17T21:37:31.915Z")
@Stability(Stable)
public class CfnPartition
extends CfnResource
implements IInspectable
The
AWS::Glue::Partition
resource creates an AWS Glue partition, which represents a slice of table data.
For more information, see CreatePartition Action and Partition Structure in the AWS Glue Developer Guide .
Example:
// 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; CfnPartition cfnPartition = CfnPartition.Builder.create(this, "MyCfnPartition") .catalogId("catalogId") .databaseName("databaseName") .partitionInput(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()) .tableName("tableName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
A fluent builder forCfnPartition
.static interface
A column in aTable
.static interface
Specifies the sort order of a sorted column.static interface
The structure used to create and update a partition.static interface
A structure that contains schema identity fields.static interface
An object that references a schema stored in the AWS Glue Schema Registry.static interface
Information about a serialization/deserialization program (SerDe) that serves as an extractor and loader.static interface
Specifies skewed values in a table.static interface
Describes the physical storage of table data.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionprotected
CfnPartition
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnPartition
(software.amazon.jsii.JsiiObjectRef objRef) CfnPartition
(software.constructs.Construct scope, String id, CfnPartitionProps props) -
Method Summary
Modifier and TypeMethodDescriptionThe AWS account ID of the catalog in which the partion is to be created.The name of the catalog database in which to create the partition.The structure used to create and update a partition.The name of the metadata table in which the partition is to be created.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
setCatalogId
(String value) The AWS account ID of the catalog in which the partion is to be created.void
setDatabaseName
(String value) The name of the catalog database in which to create the partition.void
setPartitionInput
(IResolvable value) The structure used to create and update a partition.void
The structure used to create and update a partition.void
setTableName
(String value) The name of the metadata table in which the partition is to be created.Methods inherited from class software.amazon.awscdk.CfnResource
addDeletionOverride, addDependency, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, obtainDependencies, obtainResourceDependencies, removeDependency, replaceDependency, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.constructs.Construct
getNode, isConstruct
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnPartition
protected CfnPartition(software.amazon.jsii.JsiiObjectRef objRef) -
CfnPartition
protected CfnPartition(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnPartition
@Stability(Stable) public CfnPartition(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnPartitionProps props) - Parameters:
scope
- Scope in which this resource is defined. This parameter is required.id
- Construct identifier for this resource (unique in its scope). This parameter is required.props
- Resource properties. This parameter is required.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
- tree inspector to collect and process attributes. This parameter is required.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrId
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getCatalogId
The AWS account ID of the catalog in which the partion is to be created. -
setCatalogId
The AWS account ID of the catalog in which the partion is to be created. -
getDatabaseName
The name of the catalog database in which to create the partition. -
setDatabaseName
The name of the catalog database in which to create the partition. -
getPartitionInput
The structure used to create and update a partition. -
setPartitionInput
The structure used to create and update a partition. -
setPartitionInput
@Stability(Stable) public void setPartitionInput(@NotNull CfnPartition.PartitionInputProperty value) The structure used to create and update a partition. -
getTableName
The name of the metadata table in which the partition is to be created. -
setTableName
The name of the metadata table in which the partition is to be created.
-