ListPipelineExecutionsOutput

Represents the output of a ListPipelineExecutions action.

AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

Properties

Name Type Description
pipelineExecutionSummaries object
nextToken object
View JSON Schema on GitHub

JSON Schema

amazon-codepipeline-list-pipeline-executions-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-list-pipeline-executions-output-schema.json",
  "title": "ListPipelineExecutionsOutput",
  "description": "Represents the output of a <code>ListPipelineExecutions</code> action.",
  "type": "object",
  "properties": {
    "pipelineExecutionSummaries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PipelineExecutionSummaryList"
        },
        {
          "description": "A list of executions in the history of a pipeline."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "A token that can be used in the next <code>ListPipelineExecutions</code> call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned."
        }
      ]
    }
  }
}