Interface ProtectedQueryError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProtectedQueryError.Builder,ProtectedQueryError>,SdkBuilder<ProtectedQueryError.Builder,ProtectedQueryError>,SdkPojo
- Enclosing class:
- ProtectedQueryError
public static interface ProtectedQueryError.Builder extends SdkPojo, CopyableBuilder<ProtectedQueryError.Builder,ProtectedQueryError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProtectedQueryError.Buildercode(String code)An error code for the error.ProtectedQueryError.Buildermessage(String message)A description of why the query 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, sdkFields
-
-
-
-
Method Detail
-
message
ProtectedQueryError.Builder message(String message)
A description of why the query failed.
- Parameters:
message- A description of why the query failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
ProtectedQueryError.Builder code(String code)
An error code for the error.
- Parameters:
code- An error code for the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-