Class: Aws::EMR::Types::PortRange

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

Overview

A list of port ranges that are permitted to allow inbound traffic from all public IP addresses. To specify a single port, use the same value for ‘MinRange` and `MaxRange`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_rangeInteger

The smallest port number in a specified range of port numbers.

Returns:

  • (Integer)


5029
5030
5031
5032
5033
5034
# File 'lib/aws-sdk-emr/types.rb', line 5029

class PortRange < Struct.new(
  :min_range,
  :max_range)
  SENSITIVE = []
  include Aws::Structure
end

#min_rangeInteger

The smallest port number in a specified range of port numbers.

Returns:

  • (Integer)


5029
5030
5031
5032
5033
5034
# File 'lib/aws-sdk-emr/types.rb', line 5029

class PortRange < Struct.new(
  :min_range,
  :max_range)
  SENSITIVE = []
  include Aws::Structure
end