Interface SimulationAppPortMapping.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimulationAppPortMapping.Builder,SimulationAppPortMapping>,SdkBuilder<SimulationAppPortMapping.Builder,SimulationAppPortMapping>,SdkPojo
- Enclosing class:
- SimulationAppPortMapping
public static interface SimulationAppPortMapping.Builder extends SdkPojo, CopyableBuilder<SimulationAppPortMapping.Builder,SimulationAppPortMapping>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimulationAppPortMapping.Builderactual(Integer actual)The TCP/UDP port number of the running app.SimulationAppPortMapping.Builderdeclared(Integer declared)The TCP/UDP port number of the app, declared in the simulation schema.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
actual
SimulationAppPortMapping.Builder actual(Integer actual)
The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port number when the app starts. SimSpace Weaver maps the
Declaredport to theActualport. Clients connect to the app using the app's IP address and theActualport number.- Parameters:
actual- The TCP/UDP port number of the running app. SimSpace Weaver dynamically assigns this port number when the app starts. SimSpace Weaver maps theDeclaredport to theActualport. Clients connect to the app using the app's IP address and theActualport number.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
declared
SimulationAppPortMapping.Builder declared(Integer declared)
The TCP/UDP port number of the app, declared in the simulation schema. SimSpace Weaver maps the
Declaredport to theActualport. The source code for the app should bind to theDeclaredport.- Parameters:
declared- The TCP/UDP port number of the app, declared in the simulation schema. SimSpace Weaver maps theDeclaredport to theActualport. The source code for the app should bind to theDeclaredport.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-