aws-cdk-lib.aws_dynamodb.CfnTable.S3BucketSourceProperty

interface S3BucketSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.DynamoDB.CfnTable.S3BucketSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnTable_S3BucketSourceProperty
Javasoftware.amazon.awscdk.services.dynamodb.CfnTable.S3BucketSourceProperty
Pythonaws_cdk.aws_dynamodb.CfnTable.S3BucketSourceProperty
TypeScript aws-cdk-lib » aws_dynamodb » CfnTable » 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 { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const s3BucketSourceProperty: dynamodb.CfnTable.S3BucketSourceProperty = {
  s3Bucket: 's3Bucket',

  // the properties below are optional
  s3BucketOwner: 's3BucketOwner',
  s3KeyPrefix: 's3KeyPrefix',
};

Properties

NameTypeDescription
s3BucketstringThe S3 bucket that is being imported from.
s3BucketOwner?stringThe account number of the S3 bucket that is being imported from.
s3KeyPrefix?stringThe key prefix shared by all S3 Objects that are being imported.

s3Bucket

Type: string

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.