Interface PortMapping.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PortMapping.Builder,PortMapping>,SdkBuilder<PortMapping.Builder,PortMapping>,SdkPojo
- Enclosing class:
- PortMapping
public static interface PortMapping.Builder extends SdkPojo, CopyableBuilder<PortMapping.Builder,PortMapping>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortMapping.BuilderapplicationPort(Integer applicationPort)The port number on the application.PortMapping.BuilderenableOnPublicIp(Boolean enableOnPublicIp)A Boolean indicating whether to enable this port mapping on public IP.PortMapping.BuilderjobPort(Integer jobPort)The port number on the simulation job instance to use as a remote connection point.-
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, sdkFields
-
-
-
-
Method Detail
-
jobPort
PortMapping.Builder jobPort(Integer jobPort)
The port number on the simulation job instance to use as a remote connection point.
- Parameters:
jobPort- The port number on the simulation job instance to use as a remote connection point.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationPort
PortMapping.Builder applicationPort(Integer applicationPort)
The port number on the application.
- Parameters:
applicationPort- The port number on the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enableOnPublicIp
PortMapping.Builder enableOnPublicIp(Boolean enableOnPublicIp)
A Boolean indicating whether to enable this port mapping on public IP.
- Parameters:
enableOnPublicIp- A Boolean indicating whether to enable this port mapping on public IP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-