Interface Endpoint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Endpoint.Builder,Endpoint>,SdkBuilder<Endpoint.Builder,Endpoint>,SdkPojo
- Enclosing class:
- Endpoint
public static interface Endpoint.Builder extends SdkPojo, CopyableBuilder<Endpoint.Builder,Endpoint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Endpoint.Builderport(String port)The endpoint's connection port number.Endpoint.BuilderprivateIpAddress(String privateIpAddress)The endpoint's private IP address.Endpoint.BuilderpublicIpAddress(String publicIpAddress)The endpoint's public IP address.Endpoint.Buildertype(String type)Indicates the type of endpoint running at the specific IP address.Endpoint.Buildertype(EndpointType type)Indicates the type of endpoint running at the specific IP address.-
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
-
type
Endpoint.Builder type(String type)
Indicates the type of endpoint running at the specific IP address.
- Parameters:
type- Indicates the type of endpoint running at the specific IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointType,EndpointType
-
type
Endpoint.Builder type(EndpointType type)
Indicates the type of endpoint running at the specific IP address.
- Parameters:
type- Indicates the type of endpoint running at the specific IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointType,EndpointType
-
privateIpAddress
Endpoint.Builder privateIpAddress(String privateIpAddress)
The endpoint's private IP address.
Example:
2.2.2.2- Parameters:
privateIpAddress- The endpoint's private IP address.Example:
2.2.2.2- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
publicIpAddress
Endpoint.Builder publicIpAddress(String publicIpAddress)
The endpoint's public IP address.
Example:
1.1.1.1- Parameters:
publicIpAddress- The endpoint's public IP address.Example:
1.1.1.1- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
Endpoint.Builder port(String port)
The endpoint's connection port number.
Example:
1234- Parameters:
port- The endpoint's connection port number.Example:
1234- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-