Interface ErrorsListItem.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ErrorsListItem.Builder,ErrorsListItem>,SdkBuilder<ErrorsListItem.Builder,ErrorsListItem>,SdkPojo
- Enclosing class:
- ErrorsListItem
public static interface ErrorsListItem.Builder extends SdkPojo, CopyableBuilder<ErrorsListItem.Builder,ErrorsListItem>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ErrorsListItem.BuildererrorCode(String errorCode)Error code for the cause of the error.ErrorsListItem.BuildererrorCode(PageBasedErrorCode errorCode)Error code for the cause of the error.ErrorsListItem.BuildererrorMessage(String errorMessage)Text message explaining the reason for the error.ErrorsListItem.Builderpage(Integer page)Page number where the error occurred.-
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
-
page
ErrorsListItem.Builder page(Integer page)
Page number where the error occurred.
- Parameters:
page- Page number where the error occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
ErrorsListItem.Builder errorCode(String errorCode)
Error code for the cause of the error.
- Parameters:
errorCode- Error code for the cause of the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PageBasedErrorCode,PageBasedErrorCode
-
errorCode
ErrorsListItem.Builder errorCode(PageBasedErrorCode errorCode)
Error code for the cause of the error.
- Parameters:
errorCode- Error code for the cause of the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
PageBasedErrorCode,PageBasedErrorCode
-
errorMessage
ErrorsListItem.Builder errorMessage(String errorMessage)
Text message explaining the reason for the error.
- Parameters:
errorMessage- Text message explaining the reason for the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-