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

DescribeJobExecutionRequest

import type { DescribeJobExecutionRequest } from "https://aws-api.deno.dev/v0.4/services/iotjobsdataplane.ts?docs=full";
interface DescribeJobExecutionRequest {
executionNumber?: number | null;
includeJobDocument?: boolean | null;
jobId: string;
thingName: string;
}

§Properties

§
executionNumber?: number | null
[src]

Optional. A number that identifies a particular job execution on a particular device. If not specified, the latest job execution is returned.

§
includeJobDocument?: boolean | null
[src]

Optional. When set to true, the response contains the job document. The default is false.

§
jobId: string
[src]

The unique identifier assigned to this job when it was created.

§
thingName: string
[src]

The thing name associated with the device the job execution is running on.