CfnBackupMixinProps
- class aws_cdk.cfn_property_mixins.aws_dynamodb.CfnBackupMixinProps(*, backup_name=None, table_name=None)
Bases:
objectProperties for CfnBackupPropsMixin.
- Parameters:
backup_name (
Optional[str]) – The name for the backup.table_name (
Optional[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.cfn_property_mixins import aws_dynamodb as dynamodb cfn_backup_mixin_props = dynamodb.CfnBackupMixinProps( backup_name="backupName", table_name="tableName" )
Attributes
- backup_name
The name for the backup.
- table_name
The name of the table to back up.