Class: Aws::ECS::Types::MemoryMiBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::MemoryMiBRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum amount of memory in mebibytes (MiB) for instance type selection. This ensures that selected instance types have adequate memory for your workloads.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum amount of memory in MiB.
-
#min ⇒ Integer
The minimum amount of memory in MiB.
Instance Attribute Details
#max ⇒ Integer
The maximum amount of memory in MiB. Instance types with more memory than this value are excluded from selection.
8271 8272 8273 8274 8275 8276 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8271 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum amount of memory in MiB. Instance types with less memory than this value are excluded from selection.
8271 8272 8273 8274 8275 8276 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8271 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |