Class: Aws::DynamoDB::Types::ContinuousBackupsDescription

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

Overview

Represents the continuous backups and point in time recovery settings on the table.

Instance Attribute Summary collapse

Instance Attribute Details

#continuous_backups_statusString

‘ContinuousBackupsStatus` can be one of the following states: ENABLED, DISABLED

Returns:

  • (String)


1497
1498
1499
1500
1501
# File 'lib/aws-sdk-dynamodb/types.rb', line 1497

class ContinuousBackupsDescription < Struct.new(
  :continuous_backups_status,
  :point_in_time_recovery_description)
  include Aws::Structure
end

#point_in_time_recovery_descriptionTypes::PointInTimeRecoveryDescription

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



1497
1498
1499
1500
1501
# File 'lib/aws-sdk-dynamodb/types.rb', line 1497

class ContinuousBackupsDescription < Struct.new(
  :continuous_backups_status,
  :point_in_time_recovery_description)
  include Aws::Structure
end