Class: Aws::ECS::Types::NetworkInterfaceCountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::NetworkInterfaceCountRequest
- Includes:
- Structure
- Defined in:
- 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.
9743 9744 9745 9746 9747 9748 |
# File 'lib/aws-sdk-ecs/types.rb', line 9743 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.
9743 9744 9745 9746 9747 9748 |
# File 'lib/aws-sdk-ecs/types.rb', line 9743 class NetworkInterfaceCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |