interface CfnExportProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnExportProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnExportProps |
Java | software.amazon.awscdk.services.dynamodb.CfnExportProps |
Python | aws_cdk.aws_dynamodb.CfnExportProps |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnExportProps |
Properties for defining a CfnExport.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-export.html
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 cfnExportProps: dynamodb.CfnExportProps = {
s3Bucket: 's3Bucket',
tableArn: 'tableArn',
// the properties below are optional
exportFormat: 'exportFormat',
exportType: 'exportType',
s3BucketOwner: 's3BucketOwner',
s3Prefix: 's3Prefix',
s3SseAlgorithm: 's3SseAlgorithm',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The name of the Amazon S3 bucket containing the export. |
| table | string | The Amazon Resource Name (ARN) of the table that was exported. |
| export | string | The format of the exported data. |
| export | string | The type of export that was performed. |
| s3 | string | The ID of the Amazon Web Services account that owns the bucket containing the export. |
| s3 | string | The Amazon S3 bucket prefix used as the file name and path of the exported snapshot. |
| s3 | string | Type of encryption used on the bucket where export data is stored. |
s3Bucket
Type:
string
The name of the Amazon S3 bucket containing the export.
tableArn
Type:
string
The Amazon Resource Name (ARN) of the table that was exported.
exportFormat?
Type:
string
(optional)
The format of the exported data.
exportType?
Type:
string
(optional)
The type of export that was performed.
s3BucketOwner?
Type:
string
(optional)
The ID of the Amazon Web Services account that owns the bucket containing the export.
s3Prefix?
Type:
string
(optional)
The Amazon S3 bucket prefix used as the file name and path of the exported snapshot.
s3SseAlgorithm?
Type:
string
(optional)
Type of encryption used on the bucket where export data is stored.

.NET
Go
Java
Python
TypeScript