Interface CfnBucket.MetadataDestinationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBucket.MetadataDestinationProperty.Jsii$Proxy
Enclosing class:
CfnBucket

@Stability(Stable) public static interface CfnBucket.MetadataDestinationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.s3.*;
 MetadataDestinationProperty metadataDestinationProperty = MetadataDestinationProperty.builder()
         .tableBucketType("tableBucketType")
         // the properties below are optional
         .tableBucketArn("tableBucketArn")
         .tableNamespace("tableNamespace")
         .build();
 

See Also: