interface MetadataDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.CfnBucket.MetadataDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnBucket_MetadataDestinationProperty |
Java | software.amazon.awscdk.services.s3.CfnBucket.MetadataDestinationProperty |
Python | aws_cdk.aws_s3.CfnBucket.MetadataDestinationProperty |
TypeScript | aws-cdk-lib » aws_s3 » CfnBucket » MetadataDestinationProperty |
The destination information for the S3 Metadata configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from 'aws-cdk-lib';
const metadataDestinationProperty: s3.CfnBucket.MetadataDestinationProperty = {
tableBucketType: 'tableBucketType',
// the properties below are optional
tableBucketArn: 'tableBucketArn',
tableNamespace: 'tableNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The type of the table bucket where the metadata configuration is stored. |
| table | string | The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored. |
| table | string | The namespace in the table bucket where the metadata tables for a metadata configuration are stored. |
tableBucketType
Type:
string
The type of the table bucket where the metadata configuration is stored.
The aws value indicates an AWS managed table bucket, and the customer value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
tableBucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
tableNamespace?
Type:
string
(optional)
The namespace in the table bucket where the metadata tables for a metadata configuration are stored.

.NET
Go
Java
Python
TypeScript