Class: Aws::LambdaMicrovms::Types::PortRange

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

Overview

Specifies a range of ports.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#end_portInteger

The ending port number of the range.

Returns:

  • (Integer)


1655
1656
1657
1658
1659
1660
# File 'lib/aws-sdk-lambdamicrovms/types.rb', line 1655

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

#start_portInteger

The starting port number of the range.

Returns:

  • (Integer)


1655
1656
1657
1658
1659
1660
# File 'lib/aws-sdk-lambdamicrovms/types.rb', line 1655

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