Interface VpcEndpointError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<VpcEndpointError.Builder,VpcEndpointError>,SdkBuilder<VpcEndpointError.Builder,VpcEndpointError>,SdkPojo
- Enclosing class:
- VpcEndpointError
public static interface VpcEndpointError.Builder extends SdkPojo, CopyableBuilder<VpcEndpointError.Builder,VpcEndpointError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VpcEndpointError.BuildererrorCode(String errorCode)The code associated with the error.VpcEndpointError.BuildererrorCode(VpcEndpointErrorCode errorCode)The code associated with the error.VpcEndpointError.BuildererrorMessage(String errorMessage)A message describing the error.VpcEndpointError.BuildervpcEndpointId(String vpcEndpointId)The unique identifier 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
vpcEndpointId
VpcEndpointError.Builder vpcEndpointId(String vpcEndpointId)
The unique identifier of the endpoint.
- Parameters:
vpcEndpointId- The unique identifier of the endpoint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
VpcEndpointError.Builder errorCode(String errorCode)
The code associated with the error.
- Parameters:
errorCode- The code associated with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointErrorCode,VpcEndpointErrorCode
-
errorCode
VpcEndpointError.Builder errorCode(VpcEndpointErrorCode errorCode)
The code associated with the error.
- Parameters:
errorCode- The code associated with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
VpcEndpointErrorCode,VpcEndpointErrorCode
-
errorMessage
VpcEndpointError.Builder errorMessage(String errorMessage)
A message describing the error.
- Parameters:
errorMessage- A message describing the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-