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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#continuous_backups_statusString

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

Returns:

  • (String)


1624
1625
1626
1627
1628
1629
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1624

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

#point_in_time_recovery_descriptionTypes::PointInTimeRecoveryDescription

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



1624
1625
1626
1627
1628
1629
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 1624

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