Class: Aws::DynamoDB::Types::PointInTimeRecoverySpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::PointInTimeRecoverySpecification
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
Note:
When making an API call, you may pass PointInTimeRecoverySpecification data as a hash:
{
point_in_time_recovery_enabled: false, # required
}
Represents the settings used to enable point in time recovery.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#point_in_time_recovery_enabled ⇒ Boolean
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
Instance Attribute Details
#point_in_time_recovery_enabled ⇒ Boolean
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
5819 5820 5821 5822 5823 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 5819 class PointInTimeRecoverySpecification < Struct.new( :point_in_time_recovery_enabled) SENSITIVE = [] include Aws::Structure end |