dynamodb_restore_table_to_point_in_time: Restores the specified table to the specified point in time...

View source: R/dynamodb_operations.R

dynamodb_restore_table_to_point_in_timeR Documentation

Restores the specified table to the specified point in time within EarliestRestorableDateTime and LatestRestorableDateTime

Description

Restores the specified table to the specified point in time within EarliestRestorableDateTime and LatestRestorableDateTime. You can restore your table to any point in time during the last 35 days. Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account.

See https://www.paws-r-sdk.com/docs/dynamodb_restore_table_to_point_in_time/ for full documentation.

Usage

dynamodb_restore_table_to_point_in_time(
  SourceTableArn = NULL,
  SourceTableName = NULL,
  TargetTableName,
  UseLatestRestorableTime = NULL,
  RestoreDateTime = NULL,
  BillingModeOverride = NULL,
  GlobalSecondaryIndexOverride = NULL,
  LocalSecondaryIndexOverride = NULL,
  ProvisionedThroughputOverride = NULL,
  SSESpecificationOverride = NULL
)

Arguments

SourceTableArn

The DynamoDB table that will be restored. This value is an Amazon Resource Name (ARN).

SourceTableName

Name of the source table that is being restored.

TargetTableName

[required] The name of the new table to which it must be restored to.

UseLatestRestorableTime

Restore the table to the latest possible time. LatestRestorableDateTime is typically 5 minutes before the current time.

RestoreDateTime

Time in the past to restore the table to.

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.

SSESpecificationOverride

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


paws.database documentation built on Sept. 12, 2023, 1:21 a.m.