interface MetadataDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.MetadataDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_MetadataDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.MetadataDestinationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.MetadataDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » 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 { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const metadataDestinationProperty: s3_mixins.CfnBucketPropsMixin.MetadataDestinationProperty = {
tableBucketArn: 'tableBucketArn',
tableBucketType: 'tableBucketType',
tableNamespace: 'tableNamespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored. |
| table | string | The type 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. |
tableBucketArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
tableBucketType?
Type:
string
(optional)
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.
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