Interface BatchPutDocumentResponseFailedDocument.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BatchPutDocumentResponseFailedDocument.Builder,BatchPutDocumentResponseFailedDocument>,SdkBuilder<BatchPutDocumentResponseFailedDocument.Builder,BatchPutDocumentResponseFailedDocument>,SdkPojo
- Enclosing class:
- BatchPutDocumentResponseFailedDocument
public static interface BatchPutDocumentResponseFailedDocument.Builder extends SdkPojo, CopyableBuilder<BatchPutDocumentResponseFailedDocument.Builder,BatchPutDocumentResponseFailedDocument>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchPutDocumentResponseFailedDocument.BuildererrorCode(String errorCode)The type of error that caused the document to fail to be indexed.BatchPutDocumentResponseFailedDocument.BuildererrorCode(ErrorCode errorCode)The type of error that caused the document to fail to be indexed.BatchPutDocumentResponseFailedDocument.BuildererrorMessage(String errorMessage)A description of the reason why the document could not be indexed.BatchPutDocumentResponseFailedDocument.Builderid(String id)The identifier of the 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
-
id
BatchPutDocumentResponseFailedDocument.Builder id(String id)
The identifier of the document.
- Parameters:
id- The identifier of the document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorCode
BatchPutDocumentResponseFailedDocument.Builder errorCode(String errorCode)
The type of error that caused the document to fail to be indexed.
-
errorCode
BatchPutDocumentResponseFailedDocument.Builder errorCode(ErrorCode errorCode)
The type of error that caused the document to fail to be indexed.
-
errorMessage
BatchPutDocumentResponseFailedDocument.Builder errorMessage(String errorMessage)
A description of the reason why the document could not be indexed.
- Parameters:
errorMessage- A description of the reason why the document could not be indexed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-