Class: Aws::ECS::Types::NetworkInterfaceCountRequest

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

Overview

The minimum and maximum number of network interfaces for instance type selection. This is useful for workloads that require multiple network interfaces.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum number of network interfaces. Instance types that support more network interfaces are excluded from selection.

Returns:

  • (Integer)


8511
8512
8513
8514
8515
8516
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8511

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

#minInteger

The minimum number of network interfaces. Instance types that support fewer network interfaces are excluded from selection.

Returns:

  • (Integer)


8511
8512
8513
8514
8515
8516
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8511

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