Class: Aws::DynamoDB::Types::UpdateContinuousBackupsInput

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 UpdateContinuousBackupsInput data as a hash:

{
  table_name: "TableName", # required
  point_in_time_recovery_specification: { # required
    point_in_time_recovery_enabled: false, # required
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#point_in_time_recovery_specificationTypes::PointInTimeRecoverySpecification

Represents the settings used to enable point in time recovery.



7345
7346
7347
7348
7349
# File 'lib/aws-sdk-dynamodb/types.rb', line 7345

class UpdateContinuousBackupsInput < Struct.new(
  :table_name,
  :point_in_time_recovery_specification)
  include Aws::Structure
end

#table_nameString

The name of the table.

Returns:

  • (String)


7345
7346
7347
7348
7349
# File 'lib/aws-sdk-dynamodb/types.rb', line 7345

class UpdateContinuousBackupsInput < Struct.new(
  :table_name,
  :point_in_time_recovery_specification)
  include Aws::Structure
end