Class: Aws::AutoScaling::Types::NetworkInterfaceCountRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-autoscaling/types.rb

Overview

Specifies the minimum and maximum for the ‘NetworkInterfaceCount` object when you specify InstanceRequirements for an Auto Scaling group.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of network interfaces.

Returns:

  • (Integer)


5110
5111
5112
5113
5114
5115
# File 'lib/aws-sdk-autoscaling/types.rb', line 5110

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

#minInteger

The minimum number of network interfaces.

Returns:

  • (Integer)


5110
5111
5112
5113
5114
5115
# File 'lib/aws-sdk-autoscaling/types.rb', line 5110

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