Class: Aws::DynamoDB::Types::RestoreTableFromBackupInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-dynamodb/types.rb

Overview

Note:

When making an API call, you may pass RestoreTableFromBackupInput data as a hash:

{
  target_table_name: "TableName", # required
  backup_arn: "BackupArn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#backup_arnString

The ARN associated with the backup.

Returns:

  • (String)


5729
5730
5731
5732
5733
# File 'lib/aws-sdk-dynamodb/types.rb', line 5729

class RestoreTableFromBackupInput < Struct.new(
  :target_table_name,
  :backup_arn)
  include Aws::Structure
end

#target_table_nameString

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

Returns:

  • (String)


5729
5730
5731
5732
5733
# File 'lib/aws-sdk-dynamodb/types.rb', line 5729

class RestoreTableFromBackupInput < Struct.new(
  :target_table_name,
  :backup_arn)
  include Aws::Structure
end