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

PipelineContext

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

Represents information about a pipeline to a job worker.

Note: PipelineContext contains pipelineArn and pipelineExecutionId for custom action jobs. The pipelineArn and pipelineExecutionId fields are not populated for ThirdParty action jobs.

interface PipelineContext {
action?: ActionContext | null;
pipelineArn?: string | null;
pipelineExecutionId?: string | null;
pipelineName?: string | null;
stage?: StageContext | null;
}

§Properties

§
action?: ActionContext | null
[src]

The context of an action to a job worker in the stage of a pipeline.

§
pipelineArn?: string | null
[src]

The Amazon Resource Name (ARN) of the pipeline.

§
pipelineExecutionId?: string | null
[src]

The execution ID of the pipeline.

§
pipelineName?: string | null
[src]

The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.

§
stage?: StageContext | null
[src]

The stage of the pipeline.