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

SendMessageBatchResultEntry

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

Encloses a MessageId for a successfully-enqueued message in a "SendMessageBatch".

interface SendMessageBatchResultEntry {
Id: string;
MD5OfMessageAttributes?: string | null;
MD5OfMessageBody: string;
MD5OfMessageSystemAttributes?: string | null;
MessageId: string;
SequenceNumber?: string | null;
}

§Properties

§
Id: string
[src]

An identifier for the message in this batch.

§
MD5OfMessageAttributes?: string | null
[src]

An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.

§
MD5OfMessageBody: string
[src]

An MD5 digest of the non-URL-encoded message body string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.

§
MD5OfMessageSystemAttributes?: string | null
[src]

An MD5 digest of the non-URL-encoded message system attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see RFC1321.

§
MessageId: string
[src]

An identifier for the message.

§
SequenceNumber?: string | null
[src]

This parameter applies only to FIFO (first-in-first-out) queues.

The large, non-consecutive number that Amazon SQS assigns to each message.

The length of SequenceNumber is 128 bits. As SequenceNumber continues to increase for a particular MessageGroupId.