Interface ThemeError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ThemeError.Builder,ThemeError>,SdkBuilder<ThemeError.Builder,ThemeError>,SdkPojo
- Enclosing class:
- ThemeError
@Mutable @NotThreadSafe public static interface ThemeError.Builder extends SdkPojo, CopyableBuilder<ThemeError.Builder,ThemeError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThemeError.Buildermessage(String message)The error message.ThemeError.Buildertype(String type)The type of error.ThemeError.Buildertype(ThemeErrorType type)The type of 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
type
ThemeError.Builder type(String type)
The type of error.
- Parameters:
type- The type of error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThemeErrorType,ThemeErrorType
-
type
ThemeError.Builder type(ThemeErrorType type)
The type of error.
- Parameters:
type- The type of error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ThemeErrorType,ThemeErrorType
-
message
ThemeError.Builder message(String message)
The error message.
- Parameters:
message- The error message.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-