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

JobData

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

Represents other information about a job required for a job worker to complete the job.

interface JobData {
actionConfiguration?: ActionConfiguration | null;
actionTypeId?: ActionTypeId | null;
artifactCredentials?: AWSSessionCredentials | null;
continuationToken?: string | null;
encryptionKey?: EncryptionKey | null;
inputArtifacts?: Artifact[] | null;
outputArtifacts?: Artifact[] | null;
pipelineContext?: PipelineContext | null;
}

§Properties

§
actionConfiguration?: ActionConfiguration | null
[src]

Represents information about an action configuration.

§
actionTypeId?: ActionTypeId | null
[src]

Represents information about an action type.

§
artifactCredentials?: AWSSessionCredentials | null
[src]

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifacts for the pipeline in AWS CodePipeline.

§
continuationToken?: string | null
[src]

A system-generated token, such as a AWS CodeDeploy deployment ID, required by a job to continue the job asynchronously.

§
encryptionKey?: EncryptionKey | null
[src]

Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.

§
inputArtifacts?: Artifact[] | null
[src]

The artifact supplied to the job.

§
outputArtifacts?: Artifact[] | null
[src]

The output of the job.

§
pipelineContext?: PipelineContext | null
[src]

Represents information about a pipeline to a job worker.

Note: Includes pipelineArn and pipelineExecutionId for custom jobs.