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