Creates a new table from an existing backup
Source:R/dynamodb_operations.R
dynamodb_restore_table_from_backup.RdCreates a new table from an existing backup. Any number of users can execute up to 50 concurrent restores (any type of restore) in a given account.
See https://www.paws-r-sdk.com/docs/dynamodb_restore_table_from_backup/ for full documentation.
Usage
dynamodb_restore_table_from_backup(
TargetTableName,
BackupArn,
BillingModeOverride = NULL,
GlobalSecondaryIndexOverride = NULL,
LocalSecondaryIndexOverride = NULL,
ProvisionedThroughputOverride = NULL,
OnDemandThroughputOverride = NULL,
SSESpecificationOverride = NULL
)Arguments
- TargetTableName
[required] The name of the new table to which the backup must be restored.
- BackupArn
[required] The Amazon Resource Name (ARN) associated with the backup.
- BillingModeOverride
The billing mode of the restored table.
- GlobalSecondaryIndexOverride
List of global secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
- LocalSecondaryIndexOverride
List of local secondary indexes for the restored table. The indexes provided should match existing secondary indexes. You can choose to exclude some or all of the indexes at the time of restore.
- ProvisionedThroughputOverride
Provisioned throughput settings for the restored table.
- OnDemandThroughputOverride
Overrides the on-demand throughput settings for this replica table. If you don't specify a value for this parameter, it uses the source table's on-demand throughput settings.
- SSESpecificationOverride
The new server-side encryption settings for the restored table.