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

JobSummary

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

Describes the summary for an execution job for an Amplify app.

interface JobSummary {
commitId: string;
commitMessage: string;
commitTime: Date | number;
endTime?: Date | number | null;
jobArn: string;
jobId: string;
jobType: JobType;
startTime: Date | number;
status: JobStatus;
}

§Properties

§
commitId: string
[src]

The commit ID from a third-party repository provider for the job.

§
commitMessage: string
[src]

The commit message from a third-party repository provider for the job.

§
commitTime: Date | number
[src]

The commit date and time for the job.

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

The end date and time for the job.

§
jobArn: string
[src]

The Amazon Resource Name (ARN) for the job.

§
jobId: string
[src]

The unique ID for the job.

§
jobType: JobType
[src]

The type for the job. If the value is RELEASE, the job was manually released from its source by using the StartJob API. If the value is RETRY, the job was manually retried using the StartJob API. If the value is WEB_HOOK, the job was automatically triggered by webhooks.

§
startTime: Date | number
[src]

The start date and time for the job.

§

The current status for the job.