CfnBackupProps

class aws_cdk.aws_dynamodb.CfnBackupProps(*, backup_name, table_name)

Bases: object

Properties for defining a CfnBackup.

Parameters:
  • backup_name (str) – The name for the backup.

  • table_name (str) – The name of the table to back up.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-backup.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_dynamodb as dynamodb

cfn_backup_props = dynamodb.CfnBackupProps(
    backup_name="backupName",
    table_name="tableName"
)

Attributes

backup_name

The name for the backup.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-backup.html#cfn-dynamodb-backup-backupname

table_name

The name of the table to back up.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-backup.html#cfn-dynamodb-backup-tablename