Skip to content

Restore table from backup

async_boto.validation.dynamodb.restore_table_from_backup

RestoreTableFromBackupRequest

Bases: BaseModel

Request model for the RestoreTableFromBackup operation.

ATTRIBUTE DESCRIPTION
BackupArn

The Amazon Resource Name (ARN) associated with the backup.

TYPE: str

TargetTableName

The name of the new table to which the backup must be restored.

TYPE: str

BillingModeOverride

The billing mode of the restored table.

TYPE: Optional[str]

GlobalSecondaryIndexOverride

List of global secondary indexes for the restored table.

TYPE: Optional[List[GlobalSecondaryIndex]]

LocalSecondaryIndexOverride

List of local secondary indexes for the restored table.

TYPE: Optional[List[LocalSecondaryIndex]]

OnDemandThroughputOverride

Sets the maximum number of read and write units for the specified on-demand table.

TYPE: Optional[OnDemandThroughput]

ProvisionedThroughputOverride

Provisioned throughput settings for the restored table.

TYPE: Optional[ProvisionedThroughput]

SSESpecificationOverride

The new server-side encryption settings for the restored table.

TYPE: Optional[SSESpecification]

BackupArn instance-attribute

BackupArn

TargetTableName instance-attribute

TargetTableName

BillingModeOverride class-attribute instance-attribute

BillingModeOverride = None

GlobalSecondaryIndexOverride class-attribute instance-attribute

GlobalSecondaryIndexOverride = None

LocalSecondaryIndexOverride class-attribute instance-attribute

LocalSecondaryIndexOverride = None

OnDemandThroughputOverride class-attribute instance-attribute

OnDemandThroughputOverride = None

ProvisionedThroughputOverride class-attribute instance-attribute

ProvisionedThroughputOverride = None

SSESpecificationOverride class-attribute instance-attribute

SSESpecificationOverride = None

RestoreTableFromBackupResponse

Bases: BaseModel

Response model for the RestoreTableFromBackup operation.

ATTRIBUTE DESCRIPTION
TableDescription

The description of the table created from an existing backup.

TYPE: TableDescription

TableDescription instance-attribute

TableDescription