Class: Aws::EC2::Types::IdFormat
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::IdFormat
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the ID format for a resource.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #deadline  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date in UTC at which you are permanently switched over to using longer IDs.
 - 
  
    
      #resource  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of resource.
 - 
  
    
      #use_long_ids  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether longer IDs (17-character IDs) are enabled for the resource.
 
Instance Attribute Details
#deadline ⇒ Time
The date in UTC at which you are permanently switched over to using longer IDs. If a deadline is not yet available for this resource type, this field is not returned.
      40137 40138 40139 40140 40141 40142 40143  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 40137 class IdFormat < Struct.new( :deadline, :resource, :use_long_ids) SENSITIVE = [] include Aws::Structure end  |