Interface CfnBucket.IMetadataTableConfigurationProperty
We recommend that you create your S3 Metadata configurations by using the V2 MetadataConfiguration resource type. We no longer recommend using the V1
MetadataTableConfigurationresource type. > > If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using the MetadataConfiguration resource type so that you can expire journal table records and create a live inventory table.
Namespace: Amazon.CDK.AWS.S3
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnBucket.IMetadataTableConfigurationProperty
Syntax (vb)
Public Interface CfnBucket.IMetadataTableConfigurationProperty
Remarks
Creates a V1 S3 Metadata configuration for a general purpose bucket. For more information, see Accelerating data discovery with S3 Metadata in the Amazon S3 User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.S3;
var metadataTableConfigurationProperty = new MetadataTableConfigurationProperty {
S3TablesDestination = new S3TablesDestinationProperty {
TableBucketArn = "tableBucketArn",
TableName = "tableName",
// the properties below are optional
TableArn = "tableArn",
TableNamespace = "tableNamespace"
}
};
Synopsis
Properties
| S3TablesDestination | The destination information for the metadata table configuration. |
Properties
S3TablesDestination
The destination information for the metadata table configuration.
object S3TablesDestination { get; }
Property Value
Remarks
The destination table bucket must be in the same Region and AWS account as the general purpose bucket. The specified metadata table name must be unique within the aws_s3_metadata namespace in the destination table bucket.
Type union: either IResolvable or CfnBucket.IS3TablesDestinationProperty