Interface CfnTable.S3BucketSourceProperty

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

@Stability(Stable) public static interface CfnTable.S3BucketSourceProperty extends software.amazon.jsii.JsiiSerializable
The S3 bucket that is being imported from.

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.dynamodb.*;
 S3BucketSourceProperty s3BucketSourceProperty = S3BucketSourceProperty.builder()
         .s3Bucket("s3Bucket")
         // the properties below are optional
         .s3BucketOwner("s3BucketOwner")
         .s3KeyPrefix("s3KeyPrefix")
         .build();
 

See Also: