Class: Aws::EC2::Types::NetworkInterfaceCountRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::NetworkInterfaceCountRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
The minimum and maximum number of 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. To specify no maximum limit, omit this parameter.
56402 56403 56404 56405 56406 56407 |
# File 'lib/aws-sdk-ec2/types.rb', line 56402 class NetworkInterfaceCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of network interfaces. To specify no minimum limit, omit this parameter.
56402 56403 56404 56405 56406 56407 |
# File 'lib/aws-sdk-ec2/types.rb', line 56402 class NetworkInterfaceCountRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |