Interface CfnBucketPropsMixin.S3TablesDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBucketPropsMixin.S3TablesDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnBucketPropsMixin
@Stability(Stable)
public static interface CfnBucketPropsMixin.S3TablesDestinationProperty
extends software.amazon.jsii.JsiiSerializable
The destination information for a V1 S3 Metadata configuration.
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.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.s3.*;
S3TablesDestinationProperty s3TablesDestinationProperty = S3TablesDestinationProperty.builder()
.tableArn("tableArn")
.tableBucketArn("tableBucketArn")
.tableName("tableName")
.tableNamespace("tableNamespace")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBucketPropsMixin.S3TablesDestinationPropertystatic final classAn implementation forCfnBucketPropsMixin.S3TablesDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) for the metadata table in the metadata table configuration.default StringThe Amazon Resource Name (ARN) for the table bucket that's specified as the destination in the metadata table configuration.default StringThe name for the metadata table in your metadata table configuration.default StringThe table bucket namespace for the metadata table in your metadata table configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTableArn
The Amazon Resource Name (ARN) for the metadata table in the metadata table configuration.The specified metadata table name must be unique within the
aws_s3_metadatanamespace in the destination table bucket.- See Also:
-
getTableBucketArn
The Amazon Resource Name (ARN) for the table bucket that's specified as the destination in the metadata table configuration.The destination table bucket must be in the same Region and AWS account as the general purpose bucket.
- See Also:
-
getTableName
The name for the metadata table in your metadata table configuration.The specified metadata table name must be unique within the
aws_s3_metadatanamespace in the destination table bucket.- See Also:
-
getTableNamespace
The table bucket namespace for the metadata table in your metadata table configuration.This value is always
aws_s3_metadata.- See Also:
-
builder
-