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

Job

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

Represents information about a job.

interface Job {
accountId?: string | null;
data?: JobData | null;
id?: string | null;
nonce?: string | null;
}

§Properties

§
accountId?: string | null
[src]

The ID of the AWS account to use when performing the job.

§
data?: JobData | null
[src]

Other data about a job.

§
id?: string | null
[src]

The unique system-generated ID of the job.

§
nonce?: string | null
[src]

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. Use this number in an "AcknowledgeJob" request.