Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DeleteMessageBatchRequestEntry

import type { DeleteMessageBatchRequestEntry } from "https://aws-api.deno.dev/v0.3/services/sqs.ts?docs=full";

Encloses a receipt handle and an identifier for it.

interface DeleteMessageBatchRequestEntry {
Id: string;
ReceiptHandle: string;
}

§Properties

§
Id: string
[src]

An identifier for this particular receipt handle. This is used to communicate the result.

Note: The Ids of a batch request need to be unique within a request. This identifier can have up to 80 characters. The following characters are accepted: alphanumeric characters, hyphens(-), and underscores (_).

§
ReceiptHandle: string
[src]

A receipt handle.