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)


8248
8249
8250
8251
8252
8253
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8248

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)


8248
8249
8250
8251
8252
8253
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8248

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