Class: Aws::EC2::Types::InstanceTypeSpecification

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#supported_instance_typesArray<Types::InstanceTypeItem>

The instance types that the AMI supports.

Returns:



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_typesArray<Types::InstanceTypeItem>

The instance types that the AMI does not support.

Returns:



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