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

JobExecutionSummary

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

The job execution summary.

interface JobExecutionSummary {
executionNumber?: number | null;
lastUpdatedAt?: Date | number | null;
queuedAt?: Date | number | null;
retryAttempt?: number | null;
startedAt?: Date | number | null;
status?: JobExecutionStatus | null;
}

§Properties

§
executionNumber?: number | null
[src]

A string (consisting of the digits "0" through "9") which identifies this particular job execution on this particular device. It can be used later in commands which return or update job execution information.

§
lastUpdatedAt?: Date | number | null
[src]

The time, in seconds since the epoch, when the job execution was last updated.

§
queuedAt?: Date | number | null
[src]

The time, in seconds since the epoch, when the job execution was queued.

§
retryAttempt?: number | null
[src]

The number that indicates how many retry attempts have been completed for this job on this device.

§
startedAt?: Date | number | null
[src]

The time, in seconds since the epoch, when the job execution started.

§
status?: JobExecutionStatus | null
[src]

The status of the job execution.