Class: Aws::DynamoDB::Types::PointInTimeRecoveryDescription

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

Overview

The description of the point in time settings applied to the table.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#earliest_restorable_date_timeTime

Specifies the earliest point in time you can restore your table to. You can restore your table to any point in time during the last 35 days.

Returns:

  • (Time)


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

class PointInTimeRecoveryDescription < Struct.new(
  :point_in_time_recovery_status,
  :earliest_restorable_date_time,
  :latest_restorable_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#latest_restorable_date_timeTime

‘LatestRestorableDateTime` is typically 5 minutes before the current time.

Returns:

  • (Time)


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

class PointInTimeRecoveryDescription < Struct.new(
  :point_in_time_recovery_status,
  :earliest_restorable_date_time,
  :latest_restorable_date_time)
  SENSITIVE = []
  include Aws::Structure
end

#point_in_time_recovery_statusString

The current state of point in time recovery:

  • ‘ENABLED` - Point in time recovery is enabled.

  • ‘DISABLED` - Point in time recovery is disabled.

Returns:

  • (String)


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

class PointInTimeRecoveryDescription < Struct.new(
  :point_in_time_recovery_status,
  :earliest_restorable_date_time,
  :latest_restorable_date_time)
  SENSITIVE = []
  include Aws::Structure
end