Class: Aws::EC2::Types::PortRange

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

Overview

Describes a range of ports.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fromInteger

The first port in the range.

Returns:

  • (Integer)


53649
53650
53651
53652
53653
53654
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53649

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

#toInteger

The last port in the range.

Returns:

  • (Integer)


53649
53650
53651
53652
53653
53654
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53649

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