import { _UnmarshalledSendMessageBatchResultEntry } from "./_SendMessageBatchResultEntry"; import { _UnmarshalledBatchResultErrorEntry } from "./_BatchResultErrorEntry"; import * as __aws_sdk_types from "@aws-sdk/types"; /** *

For each message in the batch, the response contains a SendMessageBatchResultEntry tag if the message succeeds or a BatchResultErrorEntry tag if the message fails.

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

A list of SendMessageBatchResultEntry items.

*/ Successful: Array<_UnmarshalledSendMessageBatchResultEntry>; /** *

A list of BatchResultErrorEntry items with error details about each message that can't be enqueued.

*/ Failed: Array<_UnmarshalledBatchResultErrorEntry>; /** * 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; }