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

ThirdPartyJobDetails

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

The details of a job sent in response to a GetThirdPartyJobDetails request.

interface ThirdPartyJobDetails {
data?: ThirdPartyJobData | null;
id?: string | null;
nonce?: string | null;
}

§Properties

§

The data to be returned by the third party job worker.

§
id?: string | null
[src]

The identifier used to identify the job details in AWS CodePipeline.

§
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 "AcknowledgeThirdPartyJob" request.