interface PartitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.PartitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#PartitionReference |
Java | software.amazon.awscdk.interfaces.glue.PartitionReference |
Python | aws_cdk.interfaces.aws_glue.PartitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » PartitionReference |
A reference to a Partition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_aws_glue } from 'aws-cdk-lib/interfaces';
const partitionReference: interfaces_aws_glue.PartitionReference = {
partitionId: 'partitionId',
};
Properties
| Name | Type | Description |
|---|---|---|
| partition | string | The Id of the Partition resource. |
partitionId
Type:
string
The Id of the Partition resource.

.NET
Go
Java
Python
TypeScript