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

BatchResultErrorEntry

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

Gives a detailed description of the result of an action on each entry in the request.

interface BatchResultErrorEntry {
Code: string;
Id: string;
Message?: string | null;
SenderFault: boolean;
}

§Properties

§
Code: string
[src]

An error code representing why the action failed on this entry.

§
Id: string
[src]

The Id of an entry in a batch request.

§
Message?: string | null
[src]

A message explaining why the action failed on this entry.

§
SenderFault: boolean
[src]

Specifies whether the error happened due to the caller of the batch API action.