interface CfnExportMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnExportMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnExportMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnExportMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnExportMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » CfnExportMixinProps |
Properties for CfnExportPropsMixin.
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/cfn-property-mixins';
const cfnExportMixinProps: dynamodb.CfnExportMixinProps = {
exportFormat: 'exportFormat',
exportType: 'exportType',
s3Bucket: 's3Bucket',
s3BucketOwner: 's3BucketOwner',
s3Prefix: 's3Prefix',
s3SseAlgorithm: 's3SseAlgorithm',
tableArn: 'tableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| export | string | The format of the exported data. |
| export | string | The type of export that was performed. |
| s3 | string | The name of the Amazon S3 bucket containing the export. |
| 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. |
| table | 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.
s3Bucket?
Type:
string
(optional)
The name of the Amazon S3 bucket containing the export.
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.
tableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table that was exported.

.NET
Go
Java
Python
TypeScript