Class: Aws::ECS::Types::NetworkBandwidthGbpsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::NetworkBandwidthGbpsRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum network bandwidth in gigabits per second (Gbps) for instance type selection. This is important for network-intensive workloads.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Float
The maximum network bandwidth in Gbps.
-
#min ⇒ Float
The minimum network bandwidth in Gbps.
Instance Attribute Details
#max ⇒ Float
The maximum network bandwidth in Gbps. Instance types with higher network bandwidth are excluded from selection.
8338 8339 8340 8341 8342 8343 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8338 class NetworkBandwidthGbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Float
The minimum network bandwidth in Gbps. Instance types with lower network bandwidth are excluded from selection.
8338 8339 8340 8341 8342 8343 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8338 class NetworkBandwidthGbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |