Class: Aws::EC2::Types::NetworkInterfaceCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::NetworkInterfaceCount
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass NetworkInterfaceCount data as a hash:
{
min: 1,
max: 1,
}
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. If this parameter is not specified, there is no maximum limit.
53253 53254 53255 53256 53257 53258 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53253 class NetworkInterfaceCount < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum number of network interfaces. If this parameter is not specified, there is no minimum limit.
53253 53254 53255 53256 53257 53258 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53253 class NetworkInterfaceCount < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |