Interface EndpointInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EndpointInfo.Builder,EndpointInfo>,SdkBuilder<EndpointInfo.Builder,EndpointInfo>,SdkPojo
- Enclosing class:
- EndpointInfo
public static interface EndpointInfo.Builder extends SdkPojo, CopyableBuilder<EndpointInfo.Builder,EndpointInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointInfo.Builderaddress(String address)Address of the endpoint.EndpointInfo.BuilderdisplayName(String displayName)Display name of the endpoint.EndpointInfo.Buildertype(String type)Type of endpoint.EndpointInfo.Buildertype(EndpointType type)Type of 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
EndpointInfo.Builder type(String type)
Type of endpoint.
- Parameters:
type- Type of endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointType,EndpointType
-
type
EndpointInfo.Builder type(EndpointType type)
Type of endpoint.
- Parameters:
type- Type of endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointType,EndpointType
-
address
EndpointInfo.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.
-
displayName
EndpointInfo.Builder displayName(String displayName)
Display name of the endpoint.
- Parameters:
displayName- Display name of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-