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