Class: Aws::EC2::Types::NetworkInterfaceCount

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb

Overview

The minimum and maximum number of network interfaces.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of network interfaces. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Integer)


52374
52375
52376
52377
52378
52379
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 52374

class NetworkInterfaceCount < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#minInteger

The minimum number of network interfaces. If this parameter is not specified, there is no minimum limit.

Returns:

  • (Integer)


52374
52375
52376
52377
52378
52379
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 52374

class NetworkInterfaceCount < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end