Interface SimulationAppEndpointInfo.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SimulationAppEndpointInfo.Builder,
,SimulationAppEndpointInfo> SdkBuilder<SimulationAppEndpointInfo.Builder,
,SimulationAppEndpointInfo> SdkPojo
- Enclosing class:
SimulationAppEndpointInfo
@Mutable
@NotThreadSafe
public static interface SimulationAppEndpointInfo.Builder
extends SdkPojo, CopyableBuilder<SimulationAppEndpointInfo.Builder,SimulationAppEndpointInfo>
-
Method Summary
Modifier and TypeMethodDescriptionThe IP address of the app.ingressPortMappings
(Collection<SimulationAppPortMapping> ingressPortMappings) The inbound TCP/UDP port numbers of the app.ingressPortMappings
(Consumer<SimulationAppPortMapping.Builder>... ingressPortMappings) The inbound TCP/UDP port numbers of the app.ingressPortMappings
(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 Details
-
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.Builder
avoiding the need to create one manually viaSimulationAppPortMapping.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toingressPortMappings(List<SimulationAppPortMapping>)
.- 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:
-