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

PipelineExecutionSummary

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

Summary information about a pipeline execution.

interface PipelineExecutionSummary {
lastUpdateTime?: Date | number | null;
pipelineExecutionId?: string | null;
sourceRevisions?: SourceRevision[] | null;
startTime?: Date | number | null;
status?: PipelineExecutionStatus | null;
stopTrigger?: StopExecutionTrigger | null;
trigger?: ExecutionTrigger | null;
}

§Properties

§
lastUpdateTime?: Date | number | null
[src]

The date and time of the last change to the pipeline execution, in timestamp format.

§
pipelineExecutionId?: string | null
[src]

The ID of the pipeline execution.

§
sourceRevisions?: SourceRevision[] | null
[src]

A list of the source artifact revisions that initiated a pipeline execution.

§
startTime?: Date | number | null
[src]

The date and time when the pipeline execution began, in timestamp format.

§

The status of the pipeline execution.

  • InProgress: The pipeline execution is currently running.
  • Stopped: The pipeline execution was manually stopped. For more information, see Stopped Executions.
  • Stopping: The pipeline execution received a request to be manually stopped. Depending on the selected stop mode, the execution is either completing or abandoning in-progress actions. For more information, see Stopped Executions.
  • Succeeded: The pipeline execution was completed successfully.
  • Superseded: While this pipeline execution was waiting for the next stage to be completed, a newer pipeline execution advanced and continued through the pipeline instead. For more information, see Superseded Executions.
  • Failed: The pipeline execution was not completed successfully.
§
stopTrigger?: StopExecutionTrigger | null
[src]

The interaction that stopped a pipeline execution.

§
trigger?: ExecutionTrigger | null
[src]

The interaction or event that started a pipeline execution, such as automated change detection or a StartPipelineExecution API call.