Skip to main content
Module

x/sqs/mod.ts>Message

Amazon SQS for Deno
Latest
interface Message
import { type Message } from "https://deno.land/x/sqs@0.3.7/mod.ts";

Properties

messageID: string

A unique identifier for the message. A MessageIdis considered unique across all AWS accounts for an extended period of time.

md5OfBody: string

An MD5 digest of the non-URL-encoded message body string.

receiptHandle: string

An identifier associated with the act of receiving the message. A new receipt handle is returned every time you receive a message. When deleting a message, you provide the last received receipt handle to delete the message.

body: string

The message's contents (not URL-encoded).