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

NotifyWorkersFailureStatus

import type { NotifyWorkersFailureStatus } from "https://aws-api.deno.dev/v0.4/services/mturk.ts?docs=full";

When MTurk encounters an issue with notifying the Workers you specified, it returns back this object with failure details.

interface NotifyWorkersFailureStatus {
NotifyWorkersFailureCode?: NotifyWorkersFailureCode | null;
NotifyWorkersFailureMessage?: string | null;
WorkerId?: string | null;
}

§Properties

§
NotifyWorkersFailureCode?: NotifyWorkersFailureCode | null
[src]

Encoded value for the failure type.

§
NotifyWorkersFailureMessage?: string | null
[src]

A message detailing the reason the Worker could not be notified.

§
WorkerId?: string | null
[src]

The ID of the Worker.