public static interface CfnTable.S3BucketSourceProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnTable.S3BucketSourceProperty.Builder
A builder for
CfnTable.S3BucketSourceProperty |
static class |
CfnTable.S3BucketSourceProperty.Jsii$Proxy
An implementation for
CfnTable.S3BucketSourceProperty |
Modifier and Type | Method and Description |
---|---|
static CfnTable.S3BucketSourceProperty.Builder |
builder() |
java.lang.String |
getS3Bucket()
The S3 bucket that is being imported from.
|
default java.lang.String |
getS3BucketOwner()
The account number of the S3 bucket that is being imported from.
|
default java.lang.String |
getS3KeyPrefix()
The key prefix shared by all S3 Objects that are being imported.
|
java.lang.String getS3Bucket()
default java.lang.String getS3BucketOwner()
If the bucket is owned by the requester this is optional.
default java.lang.String getS3KeyPrefix()
static CfnTable.S3BucketSourceProperty.Builder builder()