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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


16668
16669
16670
16671
16672
16673
# File 'lib/aws-sdk-ecs/types.rb', line 16668

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)


16668
16669
16670
16671
16672
16673
# File 'lib/aws-sdk-ecs/types.rb', line 16668

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