Class: Aws::EKS::Types::ServiceNodePortRange

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

Overview

The port range for Kubernetes NodePort services.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_portInteger

The maximum port number in the range.

Returns:

  • (Integer)


8084
8085
8086
8087
8088
8089
# File 'lib/aws-sdk-eks/types.rb', line 8084

class ServiceNodePortRange < Struct.new(
  :min_port,
  :max_port)
  SENSITIVE = []
  include Aws::Structure
end

#min_portInteger

The minimum port number in the range.

Returns:

  • (Integer)


8084
8085
8086
8087
8088
8089
# File 'lib/aws-sdk-eks/types.rb', line 8084

class ServiceNodePortRange < Struct.new(
  :min_port,
  :max_port)
  SENSITIVE = []
  include Aws::Structure
end