You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::DynamoDB::Types::RestoreTableToPointInTimeInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RestoreTableToPointInTimeInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  source_table_arn: "TableArn",
  source_table_name: "TableName",
  target_table_name: "TableName", # required
  use_latest_restorable_time: false,
  restore_date_time: Time.now,
  billing_mode_override: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
  global_secondary_index_override: [
    {
      index_name: "IndexName", # required
      key_schema: [ # required
        {
          attribute_name: "KeySchemaAttributeName", # required
          key_type: "HASH", # required, accepts HASH, RANGE
        },
      ],
      projection: { # required
        projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
        non_key_attributes: ["NonKeyAttributeName"],
      },
      provisioned_throughput: {
        read_capacity_units: 1, # required
        write_capacity_units: 1, # required
      },
    },
  ],
  local_secondary_index_override: [
    {
      index_name: "IndexName", # required
      key_schema: [ # required
        {
          attribute_name: "KeySchemaAttributeName", # required
          key_type: "HASH", # required, accepts HASH, RANGE
        },
      ],
      projection: { # required
        projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
        non_key_attributes: ["NonKeyAttributeName"],
      },
    },
  ],
  provisioned_throughput_override: {
    read_capacity_units: 1, # required
    write_capacity_units: 1, # required
  },
  sse_specification_override: {
    enabled: false,
    sse_type: "AES256", # accepts AES256, KMS
    kms_master_key_id: "KMSMasterKeyId",
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#billing_mode_overrideString

The billing mode of the restored table.

Possible values:

  • PROVISIONED
  • PAY_PER_REQUEST

Returns:

  • (String)

    The billing mode of the restored table.

#global_secondary_index_overrideArray<Types::GlobalSecondaryIndex>

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.

Returns:

#local_secondary_index_overrideArray<Types::LocalSecondaryIndex>

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.

Returns:

#provisioned_throughput_overrideTypes::ProvisionedThroughput

Provisioned throughput settings for the restored table.

Returns:

#restore_date_timeTime

Time in the past to restore the table to.

Returns:

  • (Time)

    Time in the past to restore the table to.

#source_table_arnString

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

Returns:

  • (String)

    The DynamoDB table that will be restored.

#source_table_nameString

Name of the source table that is being restored.

Returns:

  • (String)

    Name of the source table that is being restored.

#sse_specification_overrideTypes::SSESpecification

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

Returns:

#target_table_nameString

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

Returns:

  • (String)

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

#use_latest_restorable_timeBoolean

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

Returns:

  • (Boolean)

    Restore the table to the latest possible time.