/** *
Encloses a receipt handle and an identifier for it.
*/ export interface _DeleteMessageBatchRequestEntry { /** *An identifier for this particular receipt handle. This is used to communicate the result.
The Ids of a batch request need to be unique within a request
A receipt handle.
*/ ReceiptHandle: string; } export declare type _UnmarshalledDeleteMessageBatchRequestEntry = _DeleteMessageBatchRequestEntry;