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.Builder
errorCode(String errorCode)
A number describing the error programmatically.ErrorInfo.Builder
errorString(String errorString)
An optional field to provide more details about the 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
-
errorCode
ErrorInfo.Builder errorCode(String errorCode)
A number describing the error programmatically.
- Parameters:
errorCode
-A number describing the error programmatically.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorString
ErrorInfo.Builder errorString(String errorString)
An optional field to provide more details about the error.
- Parameters:
errorString
-An optional field to provide more details about the error.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-