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)


1635
1636
1637
1638
1639
1640
# File 'lib/aws-sdk-lambdamicrovms/types.rb', line 1635

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

#start_portInteger

The starting port number of the range.

Returns:

  • (Integer)


1635
1636
1637
1638
1639
1640
# File 'lib/aws-sdk-lambdamicrovms/types.rb', line 1635

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