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

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 RestoreTableToPointInTimeInput data as a hash:

{
  source_table_name: "TableName", # required
  target_table_name: "TableName", # required
  use_latest_restorable_time: false,
  restore_date_time: Time.now,
}

Instance Attribute Summary collapse

Instance Attribute Details

#restore_date_timeTime

Time in the past to restore the table to.

Returns:

  • (Time)


5787
5788
5789
5790
5791
5792
5793
# File 'lib/aws-sdk-dynamodb/types.rb', line 5787

class RestoreTableToPointInTimeInput < Struct.new(
  :source_table_name,
  :target_table_name,
  :use_latest_restorable_time,
  :restore_date_time)
  include Aws::Structure
end

#source_table_nameString

Name of the source table that is being restored.

Returns:

  • (String)


5787
5788
5789
5790
5791
5792
5793
# File 'lib/aws-sdk-dynamodb/types.rb', line 5787

class RestoreTableToPointInTimeInput < Struct.new(
  :source_table_name,
  :target_table_name,
  :use_latest_restorable_time,
  :restore_date_time)
  include Aws::Structure
end

#target_table_nameString

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

Returns:

  • (String)


5787
5788
5789
5790
5791
5792
5793
# File 'lib/aws-sdk-dynamodb/types.rb', line 5787

class RestoreTableToPointInTimeInput < Struct.new(
  :source_table_name,
  :target_table_name,
  :use_latest_restorable_time,
  :restore_date_time)
  include Aws::Structure
end

#use_latest_restorable_timeBoolean

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

Returns:

  • (Boolean)


5787
5788
5789
5790
5791
5792
5793
# File 'lib/aws-sdk-dynamodb/types.rb', line 5787

class RestoreTableToPointInTimeInput < Struct.new(
  :source_table_name,
  :target_table_name,
  :use_latest_restorable_time,
  :restore_date_time)
  include Aws::Structure
end