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.Builderaddress(String address)Address of the endpoint.Endpoint.Buildertype(String type)Type of the endpoint.Endpoint.Buildertype(EndpointType type)Type of the endpoint.-
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)
Type of the endpoint.
- Parameters:
type- Type of the endpoint.- 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)
Type of the endpoint.
- Parameters:
type- Type of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointType,EndpointType
-
address
Endpoint.Builder address(String address)
Address of the endpoint.
- Parameters:
address- Address of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-