Class: Aws::NetworkFirewall::Types::PortRange

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

Overview

A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, SourcePorts, and DestinationPorts settings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#from_port ⇒ Integer

The lower limit of the port range. This must be less than or equal to the ToPort specification.

Returns:

  • (Integer)


6239
6240
6241
6242
6243
6244
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 6239

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

#to_port ⇒ Integer

The upper limit of the port range. This must be greater than or equal to the FromPort specification.

Returns:

  • (Integer)


6239
6240
6241
6242
6243
6244
# File 'gems/aws-sdk-networkfirewall/lib/aws-sdk-networkfirewall/types.rb', line 6239

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