Class: Aws::ECS::Types::VCpuCountRangeRequest

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

Overview

The minimum and maximum number of vCPUs for instance type selection. This allows you to specify a range of vCPU counts that meet your workload requirements.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of vCPUs. Instance types with more vCPUs than this value are excluded from selection.

Returns:

  • (Integer)


15173
15174
15175
15176
15177
15178
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15173

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

#minInteger

The minimum number of vCPUs. Instance types with fewer vCPUs than this value are excluded from selection.

Returns:

  • (Integer)


15173
15174
15175
15176
15177
15178
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15173

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