Class: Aws::ECS::Types::NetworkInterfaceCountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::NetworkInterfaceCountRequest
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The minimum and maximum number of network interfaces for instance type selection. This is useful for workloads that require multiple network interfaces.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum number of network interfaces.
-
#min ⇒ Integer
The minimum number of network interfaces.
Instance Attribute Details
#max ⇒ Integer
The maximum number of network interfaces. Instance types that support more network interfaces are excluded from selection.
8511 8512 8513 8514 8515 8516 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8511 class NetworkInterfaceCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of network interfaces. Instance types that support fewer network interfaces are excluded from selection.
8511 8512 8513 8514 8515 8516 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8511 class NetworkInterfaceCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |