AWS::Glue::PartitionThe `AWS::Glue::Partition` resource creates an AWS Glue partition, which represents a slice of table data. For more information, see [CreatePartition Action](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-catalog-partitions.html#aws-glue-api-catalog-partitions-CreatePartition) and [Partition Structure](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api-catalog-partitions.html#aws-glue-api-catalog-partitions-Partition) in the *AWS Glue Developer Guide* .
import { CfnPartition } from 'aws-cdk-lib/aws-glue';Or use the module namespace:
import * as glue from 'aws-cdk-lib/aws-glue';
// glue.CfnPartitionConfiguration passed to the constructor as CfnPartitionProps.
catalogIdRequiredstringThe AWS account ID of the catalog in which the partion is to be created. > To specify the account ID, you can use the `Ref` intrinsic function with the `AWS::AccountId` pseudo parameter. For example: `!Ref AWS::AccountId`
databaseNameRequiredstringThe name of the catalog database in which to create the partition.
partitionInputRequiredIResolvable | PartitionInputPropertyThe structure used to create and update a partition.
tableNameRequiredstringThe name of the metadata table in which the partition is to be created.
This L1 construct maps directly to the following CloudFormation resource type.
Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to Newsletteraws-glueAWS::Glue::Partition