Class: Aws::DynamoDB::Types::UpdateTimeToLiveInput

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

Overview

Represents the input of an UpdateTimeToLive operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#table_nameString

The name of the table to be configured.

Returns:

  • (String)


9993
9994
9995
9996
9997
9998
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9993

class UpdateTimeToLiveInput < Struct.new(
  :table_name,
  :time_to_live_specification)
  SENSITIVE = []
  include Aws::Structure
end

#time_to_live_specificationTypes::TimeToLiveSpecification

Represents the settings used to enable or disable Time to Live for the specified table.



9993
9994
9995
9996
9997
9998
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9993

class UpdateTimeToLiveInput < Struct.new(
  :table_name,
  :time_to_live_specification)
  SENSITIVE = []
  include Aws::Structure
end