interface CfnBackupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnBackupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnBackupProps |
Java | software.amazon.awscdk.services.dynamodb.CfnBackupProps |
Python | aws_cdk.aws_dynamodb.CfnBackupProps |
TypeScript | aws-cdk-lib » aws_dynamodb » CfnBackupProps |
Properties for defining a CfnBackup.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-backup.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 cfnBackupProps: dynamodb.CfnBackupProps = {
backupName: 'backupName',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| backup | string | The name for the backup. |
| table | string | The name of the table to back up. |
backupName
Type:
string
The name for the backup.
tableName
Type:
string
The name of the table to back up.

.NET
Go
Java
Python
TypeScript