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

StopPipelineExecutionInput

import type { StopPipelineExecutionInput } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";
interface StopPipelineExecutionInput {
abandon?: boolean | null;
pipelineExecutionId: string;
pipelineName: string;
reason?: string | null;
}

§Properties

§
abandon?: boolean | null
[src]

Use this option to stop the pipeline execution by abandoning, rather than finishing, in-progress actions.

Note: This option can lead to failed or out-of-sequence tasks.

§
pipelineExecutionId: string
[src]

The ID of the pipeline execution to be stopped in the current stage. Use the GetPipelineState action to retrieve the current pipelineExecutionId.

§
pipelineName: string
[src]

The name of the pipeline to stop.

§
reason?: string | null
[src]

Use this option to enter comments, such as the reason the pipeline was stopped.