interface MetadataDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.MetadataDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_MetadataDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.MetadataDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.MetadataDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » 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 { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const metadataDestinationProperty: s3.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