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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-emr/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)


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

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)


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

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