Interface AsyncErrorDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AsyncErrorDetails.Builder,AsyncErrorDetails>,SdkBuilder<AsyncErrorDetails.Builder,AsyncErrorDetails>,SdkPojo
- Enclosing class:
- AsyncErrorDetails
public static interface AsyncErrorDetails.Builder extends SdkPojo, CopyableBuilder<AsyncErrorDetails.Builder,AsyncErrorDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AsyncErrorDetails.Buildercode(String code)A string that uniquely identifies the error condition.AsyncErrorDetails.Buildermessage(String message)A generic description of the error condition in English.AsyncErrorDetails.BuilderrequestId(String requestId)The ID of the request associated with the error.AsyncErrorDetails.Builderresource(String resource)The identifier of the resource associated with the error.-
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
-
code
AsyncErrorDetails.Builder code(String code)
A string that uniquely identifies the error condition.
- Parameters:
code- A string that uniquely identifies the error condition.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
AsyncErrorDetails.Builder message(String message)
A generic description of the error condition in English.
- Parameters:
message- A generic description of the error condition in English.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resource
AsyncErrorDetails.Builder resource(String resource)
The identifier of the resource associated with the error.
- Parameters:
resource- The identifier of the resource associated with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestId
AsyncErrorDetails.Builder requestId(String requestId)
The ID of the request associated with the error.
- Parameters:
requestId- The ID of the request associated with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-