Class: Aws::SimSpaceWeaver::Types::SimulationAppPortMapping
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimSpaceWeaver::Types::SimulationAppPortMapping
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simspaceweaver/types.rb
Overview
A collection of TCP/UDP ports for a custom or service app.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actual ⇒ Integer
The TCP/UDP port number of the running app.
-
#declared ⇒ Integer
The TCP/UDP port number of the app, declared in the simulation schema.
Instance Attribute Details
#actual ⇒ Integer
The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port number when the app starts. SimSpace Weaver maps the ‘Declared` port to the `Actual` port. Clients connect to the app using the app’s IP address and the ‘Actual` port number.
782 783 784 785 786 787 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 782 class SimulationAppPortMapping < Struct.new( :actual, :declared) SENSITIVE = [] include Aws::Structure end |
#declared ⇒ Integer
The TCP/UDP port number of the app, declared in the simulation schema. SimSpace Weaver maps the ‘Declared` port to the `Actual` port. The source code for the app should bind to the `Declared` port.
782 783 784 785 786 787 |
# File 'lib/aws-sdk-simspaceweaver/types.rb', line 782 class SimulationAppPortMapping < Struct.new( :actual, :declared) SENSITIVE = [] include Aws::Structure end |