Class: Aws::DynamoDB::Types::TimeToLiveSpecification

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#attribute_nameString

The name of the TTL attribute used to store the expiration time for items in the table.

Returns:

  • (String)


8909
8910
8911
8912
8913
8914
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8909

class TimeToLiveSpecification < Struct.new(
  :enabled,
  :attribute_name)
  SENSITIVE = []
  include Aws::Structure
end

#enabledBoolean

Indicates whether TTL is to be enabled (true) or disabled (false) on the table.

Returns:

  • (Boolean)


8909
8910
8911
8912
8913
8914
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 8909

class TimeToLiveSpecification < Struct.new(
  :enabled,
  :attribute_name)
  SENSITIVE = []
  include Aws::Structure
end