Interface EndpointMetadata.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EndpointMetadata.Builder,EndpointMetadata>
,SdkBuilder<EndpointMetadata.Builder,EndpointMetadata>
,SdkPojo
- Enclosing class:
- EndpointMetadata
public static interface EndpointMetadata.Builder extends SdkPojo, CopyableBuilder<EndpointMetadata.Builder,EndpointMetadata>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EndpointMetadata.Builder
endpointConfigName(String endpointConfigName)
The name of the endpoint configuration.EndpointMetadata.Builder
endpointName(String endpointName)
The name of the endpoint.EndpointMetadata.Builder
endpointStatus(String endpointStatus)
The status of the endpoint.EndpointMetadata.Builder
endpointStatus(EndpointStatus endpointStatus)
The status of the endpoint.EndpointMetadata.Builder
failureReason(String failureReason)
If the status of the endpoint isFailed
, or the status isInService
but update operation fails, this provides the reason why it failed.-
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
-
endpointName
EndpointMetadata.Builder endpointName(String endpointName)
The name of the endpoint.
- Parameters:
endpointName
- The name of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointConfigName
EndpointMetadata.Builder endpointConfigName(String endpointConfigName)
The name of the endpoint configuration.
- Parameters:
endpointConfigName
- The name of the endpoint configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endpointStatus
EndpointMetadata.Builder endpointStatus(String endpointStatus)
The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary.
- Parameters:
endpointStatus
- The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointStatus
,EndpointStatus
-
endpointStatus
EndpointMetadata.Builder endpointStatus(EndpointStatus endpointStatus)
The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary.
- Parameters:
endpointStatus
- The status of the endpoint. For possible values of the status of an endpoint, see EndpointSummary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
EndpointStatus
,EndpointStatus
-
failureReason
EndpointMetadata.Builder failureReason(String failureReason)
If the status of the endpoint is
Failed
, or the status isInService
but update operation fails, this provides the reason why it failed.- Parameters:
failureReason
- If the status of the endpoint isFailed
, or the status isInService
but update operation fails, this provides the reason why it failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-