Class: Aws::DynamoDB::Types::TimeToLiveSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TimeToLiveSpecification
- 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
-
#attribute_name ⇒ String
The name of the TTL attribute used to store the expiration time for items in the table.
-
#enabled ⇒ Boolean
Indicates whether TTL is to be enabled (true) or disabled (false) on the table.
Instance Attribute Details
#attribute_name ⇒ String
The name of the TTL attribute used to store the expiration time for items in the table.
9196 9197 9198 9199 9200 9201 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9196 class TimeToLiveSpecification < Struct.new( :enabled, :attribute_name) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Indicates whether TTL is to be enabled (true) or disabled (false) on the table.
9196 9197 9198 9199 9200 9201 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9196 class TimeToLiveSpecification < Struct.new( :enabled, :attribute_name) SENSITIVE = [] include Aws::Structure end |