Class: Aws::DynamoDB::Types::ContinuousBackupsDescription
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::ContinuousBackupsDescription
- 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
-
#continuous_backups_status ⇒ String
ContinuousBackupsStatus
can be one of the following states: ENABLED, DISABLED. -
#point_in_time_recovery_description ⇒ Types::PointInTimeRecoveryDescription
The description of the point in time recovery settings applied to the table.
Instance Attribute Details
#continuous_backups_status ⇒ String
ContinuousBackupsStatus
can be one of the following states:
ENABLED, DISABLED
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_description ⇒ Types::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 |