Class: Aws::RoboMaker::Types::PortMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::PortMapping
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
An object representing a port mapping.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_port ⇒ Integer
The port number on the application.
-
#enable_on_public_ip ⇒ Boolean
A Boolean indicating whether to enable this port mapping on public IP.
-
#job_port ⇒ Integer
The port number on the simulation job instance to use as a remote connection point.
Instance Attribute Details
#application_port ⇒ Integer
The port number on the application.
3990 3991 3992 3993 3994 3995 3996 |
# File 'lib/aws-sdk-robomaker/types.rb', line 3990 class PortMapping < Struct.new( :job_port, :application_port, :enable_on_public_ip) SENSITIVE = [] include Aws::Structure end |
#enable_on_public_ip ⇒ Boolean
A Boolean indicating whether to enable this port mapping on public IP.
3990 3991 3992 3993 3994 3995 3996 |
# File 'lib/aws-sdk-robomaker/types.rb', line 3990 class PortMapping < Struct.new( :job_port, :application_port, :enable_on_public_ip) SENSITIVE = [] include Aws::Structure end |
#job_port ⇒ Integer
The port number on the simulation job instance to use as a remote connection point.
3990 3991 3992 3993 3994 3995 3996 |
# File 'lib/aws-sdk-robomaker/types.rb', line 3990 class PortMapping < Struct.new( :job_port, :application_port, :enable_on_public_ip) SENSITIVE = [] include Aws::Structure end |