Class: Aws::EC2::Types::NetworkInterfaceCountRequest

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. To specify no maximum limit, omit this parameter.

Returns:

  • (Integer)


52395
52396
52397
52398
52399
52400
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 52395

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

#minInteger

The minimum number of network interfaces. To specify no minimum limit, omit this parameter.

Returns:

  • (Integer)


52395
52396
52397
52398
52399
52400
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 52395

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