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.
      9472 9473 9474 9475 9476 9477  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9472 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.
      9472 9473 9474 9475 9476 9477  | 
    
      # File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 9472 class TimeToLiveSpecification < Struct.new( :enabled, :attribute_name) SENSITIVE = [] include Aws::Structure end  |