Class: Aws::SecurityHub::Types::PortRangeFromTo

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

Overview

A range of ports.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#fromInteger

The first port in the port range.

Returns:

  • (Integer)


27735
27736
27737
27738
27739
27740
# File 'lib/aws-sdk-securityhub/types.rb', line 27735

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

#toInteger

The last port in the port range.

Returns:

  • (Integer)


27735
27736
27737
27738
27739
27740
# File 'lib/aws-sdk-securityhub/types.rb', line 27735

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