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.
40087 40088 40089 40090 40091 40092 40093 |
# File 'lib/aws-sdk-ec2/types.rb', line 40087 class IdFormat < Struct.new( :deadline, :resource, :use_long_ids) SENSITIVE = [] include Aws::Structure end |