Class: Aws::DynamoDB::Types::TimeToLiveSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::TimeToLiveSpecification
- Includes:
- Structure
- Defined in:
- 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.
9157 9158 9159 9160 9161 9162 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9157 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.
9157 9158 9159 9160 9161 9162 |
# File 'lib/aws-sdk-dynamodb/types.rb', line 9157 class TimeToLiveSpecification < Struct.new( :enabled, :attribute_name) SENSITIVE = [] include Aws::Structure end |