Class: Aws::ECS::Types::TotalLocalStorageGBRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::TotalLocalStorageGBRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum total local storage in gigabytes (GB) for instance types with local storage. This is useful for workloads that require local storage for temporary data or caching.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Float
The maximum total local storage in GB.
-
#min ⇒ Float
The minimum total local storage in GB.
Instance Attribute Details
#max ⇒ Float
The maximum total local storage in GB. Instance types with more local storage are excluded from selection.
14276 14277 14278 14279 14280 14281 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 14276 class TotalLocalStorageGBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Float
The minimum total local storage in GB. Instance types with less local storage are excluded from selection.
14276 14277 14278 14279 14280 14281 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 14276 class TotalLocalStorageGBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |