Interface SimulationAppEndpointInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SimulationAppEndpointInfo.Builder,SimulationAppEndpointInfo>,SdkBuilder<SimulationAppEndpointInfo.Builder,SimulationAppEndpointInfo>,SdkPojo
- Enclosing class:
- SimulationAppEndpointInfo
public static interface SimulationAppEndpointInfo.Builder extends SdkPojo, CopyableBuilder<SimulationAppEndpointInfo.Builder,SimulationAppEndpointInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SimulationAppEndpointInfo.Builderaddress(String address)The IP address of the app.SimulationAppEndpointInfo.BuilderingressPortMappings(Collection<SimulationAppPortMapping> ingressPortMappings)The inbound TCP/UDP port numbers of the app.SimulationAppEndpointInfo.BuilderingressPortMappings(Consumer<SimulationAppPortMapping.Builder>... ingressPortMappings)The inbound TCP/UDP port numbers of the app.SimulationAppEndpointInfo.BuilderingressPortMappings(SimulationAppPortMapping... ingressPortMappings)The inbound TCP/UDP port numbers of the app.-
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
-
address
SimulationAppEndpointInfo.Builder address(String address)
The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.
- Parameters:
address- The IP address of the app. SimSpace Weaver dynamically assigns this IP address when the app starts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingressPortMappings
SimulationAppEndpointInfo.Builder ingressPortMappings(Collection<SimulationAppPortMapping> ingressPortMappings)
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
- Parameters:
ingressPortMappings- The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingressPortMappings
SimulationAppEndpointInfo.Builder ingressPortMappings(SimulationAppPortMapping... ingressPortMappings)
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
- Parameters:
ingressPortMappings- The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
ingressPortMappings
SimulationAppEndpointInfo.Builder ingressPortMappings(Consumer<SimulationAppPortMapping.Builder>... ingressPortMappings)
The inbound TCP/UDP port numbers of the app. The combination of an IP address and a port number form a network endpoint.
This is a convenience method that creates an instance of theSimulationAppPortMapping.Builderavoiding the need to create one manually viaSimulationAppPortMapping.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#ingressPortMappings(List.) - Parameters:
ingressPortMappings- a consumer that will call methods onSimulationAppPortMapping.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#ingressPortMappings(java.util.Collection)
-
-