Interface Warning.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Warning.Builder,Warning>,SdkBuilder<Warning.Builder,Warning>,SdkPojo
- Enclosing class:
- Warning
public static interface Warning.Builder extends SdkPojo, CopyableBuilder<Warning.Builder,Warning>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Warning.Buildercode(String code)The code used to show the type of warning for the query.Warning.Buildercode(WarningCode code)The code used to show the type of warning for the query.Warning.Buildermessage(String message)The message that explains the problem with the query.-
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
Warning.Builder message(String message)
The message that explains the problem with the query.
- Parameters:
message- The message that explains the problem with the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
Warning.Builder code(String code)
The code used to show the type of warning for the query.
- Parameters:
code- The code used to show the type of warning for the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WarningCode,WarningCode
-
code
Warning.Builder code(WarningCode code)
The code used to show the type of warning for the query.
- Parameters:
code- The code used to show the type of warning for the query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WarningCode,WarningCode
-
-