Class: Aws::ECS::Types::AcceleratorTotalMemoryMiBRequest

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

Overview

The minimum and maximum total accelerator memory in mebibytes (MiB) for instance type selection. This is important for GPU workloads that require specific amounts of video memory.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum total accelerator memory in MiB. Instance types with more accelerator memory are excluded from selection.

Returns:

  • (Integer)


52
53
54
55
56
57
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 52

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

#minInteger

The minimum total accelerator memory in MiB. Instance types with less accelerator memory are excluded from selection.

Returns:

  • (Integer)


52
53
54
55
56
57
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 52

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