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

For each message in the batch, the response contains a DeleteMessageBatchResultEntry tag if the message is deleted or a BatchResultErrorEntry tag if the message can't be deleted.

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

A list of DeleteMessageBatchResultEntry items.

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

A list of BatchResultErrorEntry items.

*/ 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; }