Interface BatchGetDocumentStatusResponseError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchGetDocumentStatusResponseError.Builder,BatchGetDocumentStatusResponseError>,SdkBuilder<BatchGetDocumentStatusResponseError.Builder,BatchGetDocumentStatusResponseError>,SdkPojo
- Enclosing class:
- BatchGetDocumentStatusResponseError
public static interface BatchGetDocumentStatusResponseError.Builder extends SdkPojo, CopyableBuilder<BatchGetDocumentStatusResponseError.Builder,BatchGetDocumentStatusResponseError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetDocumentStatusResponseError.BuilderdocumentId(String documentId)The identifier of the document whose status could not be retrieved.BatchGetDocumentStatusResponseError.BuildererrorCode(String errorCode)Indicates the source of the error.BatchGetDocumentStatusResponseError.BuildererrorCode(ErrorCode errorCode)Indicates the source of the error.BatchGetDocumentStatusResponseError.BuildererrorMessage(String errorMessage)States that the API could not get the status of a document.-
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
-
documentId
BatchGetDocumentStatusResponseError.Builder documentId(String documentId)
The identifier of the document whose status could not be retrieved.
- Parameters:
documentId- The identifier of the document whose status could not be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchGetDocumentStatusResponseError.Builder errorCode(String errorCode)
Indicates the source of the error.
-
errorCode
BatchGetDocumentStatusResponseError.Builder errorCode(ErrorCode errorCode)
Indicates the source of the error.
-
errorMessage
BatchGetDocumentStatusResponseError.Builder errorMessage(String errorMessage)
States that the API could not get the status of a document. This could be because the request is not valid or there is a system error.
- Parameters:
errorMessage- States that the API could not get the status of a document. This could be because the request is not valid or there is a system error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-