interface S3BucketSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnTablePropsMixin.S3BucketSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnTablePropsMixin_S3BucketSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnTablePropsMixin.S3BucketSourceProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnTablePropsMixin.S3BucketSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnTablePropsMixin » S3BucketSourceProperty |
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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const s3BucketSourceProperty: dynamodb_mixins.CfnTablePropsMixin.S3BucketSourceProperty = {
s3Bucket: 's3Bucket',
s3BucketOwner: 's3BucketOwner',
s3KeyPrefix: 's3KeyPrefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The S3 bucket that is being imported from. |
| s3 | string | The account number of the S3 bucket that is being imported from. |
| s3 | string | The key prefix shared by all S3 Objects that are being imported. |
s3Bucket?
Type:
string
(optional)
The S3 bucket that is being imported from.
s3BucketOwner?
Type:
string
(optional)
The account number of the S3 bucket that is being imported from.
If the bucket is owned by the requester this is optional.
s3KeyPrefix?
Type:
string
(optional)
The key prefix shared by all S3 Objects that are being imported.

.NET
Go
Java
Python
TypeScript