Interface StatusDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatusDetails.Builder,StatusDetails>,SdkBuilder<StatusDetails.Builder,StatusDetails>,SdkPojo
- Enclosing class:
- StatusDetails
public static interface StatusDetails.Builder extends SdkPojo, CopyableBuilder<StatusDetails.Builder,StatusDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusDetails.Buildermessage(String message)The error message that was returned.StatusDetails.BuilderstatusCode(String statusCodeValue)The status code that was returned.-
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
-
statusCode
StatusDetails.Builder statusCode(String statusCodeValue)
The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.
- Parameters:
statusCodeValue- The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
StatusDetails.Builder message(String message)
The error message that was returned. The message is intended for human consumption and can change at any time. Use the
statusCodefor programmatic error handling.- Parameters:
message- The error message that was returned. The message is intended for human consumption and can change at any time. Use thestatusCodefor programmatic error handling.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-