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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.S3BucketSourcePropertystatic final classAn implementation forCfnTable.S3BucketSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Bucket
The S3 bucket that is being imported from. -
getS3BucketOwner
The account number of the S3 bucket that is being imported from.If the bucket is owned by the requester this is optional.
-
getS3KeyPrefix
The key prefix shared by all S3 Objects that are being imported. -
builder
-