import { _UnmarshalledDocumentServiceWarning } from "./_DocumentServiceWarning"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

Contains the response to an UploadDocuments request.

*/ export interface UploadDocumentsOutput extends __aws_sdk_types.MetadataBearer { /** *

The status of an UploadDocumentsRequest.

*/ status?: string; /** *

The number of documents that were added to the search domain.

*/ adds?: number; /** *

The number of documents that were deleted from the search domain.

*/ deletes?: number; /** *

Any warnings returned by the document service about the documents being uploaded.

*/ warnings?: Array<_UnmarshalledDocumentServiceWarning>; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }