Class: Aws::EC2::Types::FilterPortRange

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

Overview

Describes a port range.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#from_portInteger

The first port in the range.

Returns:

  • (Integer)


32663
32664
32665
32666
32667
32668
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 32663

class FilterPortRange < Struct.new(
  :from_port,
  :to_port)
  SENSITIVE = []
  include Aws::Structure
end

#to_portInteger

The last port in the range.

Returns:

  • (Integer)


32663
32664
32665
32666
32667
32668
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 32663

class FilterPortRange < Struct.new(
  :from_port,
  :to_port)
  SENSITIVE = []
  include Aws::Structure
end