Class: Aws::ECS::Types::MemoryGiBPerVCpuRequest

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

Overview

The minimum and maximum amount of memory per vCPU in gibibytes (GiB). This helps ensure that instance types have the appropriate memory-to-CPU ratio for your workloads.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxFloat

The maximum amount of memory per vCPU in GiB. Instance types with a higher memory-to-vCPU ratio are excluded from selection.

Returns:

  • (Float)


9442
9443
9444
9445
9446
9447
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9442

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

#minFloat

The minimum amount of memory per vCPU in GiB. Instance types with a lower memory-to-vCPU ratio are excluded from selection.

Returns:

  • (Float)


9442
9443
9444
9445
9446
9447
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9442

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