Class: Aws::EC2::Types::AcceleratorCount

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb

Overview

The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of accelerators. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Integer)


28
29
30
31
32
33
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 28

class AcceleratorCount < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minInteger

The minimum number of accelerators. If this parameter is not specified, there is no minimum limit.

Returns:

  • (Integer)


28
29
30
31
32
33
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 28

class AcceleratorCount < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end