Class: Aws::ECS::Types::BaselineEbsBandwidthMbpsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::BaselineEbsBandwidthMbpsRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum baseline Amazon EBS bandwidth in megabits per second (Mbps) for instance type selection. This is important for workloads with high storage I/O requirements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum baseline Amazon EBS bandwidth in Mbps.
-
#min ⇒ Integer
The minimum baseline Amazon EBS bandwidth in Mbps.
Instance Attribute Details
#max ⇒ Integer
The maximum baseline Amazon EBS bandwidth in Mbps. Instance types with higher Amazon EBS bandwidth are excluded from selection.
398 399 400 401 402 403 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 398 class BaselineEbsBandwidthMbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum baseline Amazon EBS bandwidth in Mbps. Instance types with lower Amazon EBS bandwidth are excluded from selection.
398 399 400 401 402 403 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 398 class BaselineEbsBandwidthMbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |