Class: Aws::EC2::Types::InstanceTypeSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::InstanceTypeSpecification
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Describes the instance type compatibility rules for an AMI, including lists of supported and unsupported instance type patterns.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#supported_instance_types ⇒ Array<Types::InstanceTypeItem>
The instance types that the AMI supports.
-
#unsupported_instance_types ⇒ Array<Types::InstanceTypeItem>
The instance types that the AMI does not support.
Instance Attribute Details
#supported_instance_types ⇒ Array<Types::InstanceTypeItem>
The instance types that the AMI supports.
57066 57067 57068 57069 57070 57071 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 57066 class InstanceTypeSpecification < Struct.new( :supported_instance_types, :unsupported_instance_types) SENSITIVE = [] include Aws::Structure end |
#unsupported_instance_types ⇒ Array<Types::InstanceTypeItem>
The instance types that the AMI does not support.
57066 57067 57068 57069 57070 57071 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 57066 class InstanceTypeSpecification < Struct.new( :supported_instance_types, :unsupported_instance_types) SENSITIVE = [] include Aws::Structure end |