Interface PortOverride.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PortOverride.Builder,PortOverride>,SdkBuilder<PortOverride.Builder,PortOverride>,SdkPojo
- Enclosing class:
- PortOverride
public static interface PortOverride.Builder extends SdkPojo, CopyableBuilder<PortOverride.Builder,PortOverride>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PortOverride.BuilderendpointPort(Integer endpointPort)The endpoint port that you want a listener port to be mapped to.PortOverride.BuilderlistenerPort(Integer listenerPort)The listener port that you want to map to a specific endpoint port.-
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
-
listenerPort
PortOverride.Builder listenerPort(Integer listenerPort)
The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.
- Parameters:
listenerPort- The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointPort
PortOverride.Builder endpointPort(Integer endpointPort)
The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.
- Parameters:
endpointPort- The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-