Class: Aws::DynamoDB::Types::PointInTimeRecoverySpecification

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#point_in_time_recovery_enabledBoolean

Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

Returns:

  • (Boolean)


4286
4287
4288
4289
# File 'lib/aws-sdk-dynamodb/types.rb', line 4286

class PointInTimeRecoverySpecification < Struct.new(
  :point_in_time_recovery_enabled)
  include Aws::Structure
end