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

JobError

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

An error that occurred with the job request.

interface JobError {
Code: Code;
Details?: Details | null;
LimitName?: JobErrorLimitName | null;
LimitValue?: number | null;
Message: string;
ResourceId?: string | null;
ResourceType?: JobErrorResourceTypes | null;
}

§Properties

§
Code: Code
[src]

The code for the job error.

§
Details?: Details | null
[src]

The details about the job error.

§
LimitName?: JobErrorLimitName | null
[src]

The name of the limit that was reached.

§
LimitValue?: number | null
[src]

The value of the exceeded limit.

§
Message: string
[src]

The message related to the job error.

§
ResourceId?: string | null
[src]

The unique identifier for the resource related to the error.

§
ResourceType?: JobErrorResourceTypes | null
[src]

The type of resource related to the error.