[ aws . codepipeline ]

get-pipeline-state

Description

Returns information about the state of a pipeline, including the stages and actions.

Note

Values returned in the revisionId and revisionUrl fields indicate the source revision information, such as the commit ID, for the current state.

See also: AWS API Documentation

See ‘aws help’ for descriptions of global parameters.

Synopsis

  get-pipeline-state
--name <value>
[--cli-input-json | --cli-input-yaml]
[--generate-cli-skeleton <value>]
[--cli-auto-prompt <value>]

Options

--name (string)

The name of the pipeline about which you want to get information.

--cli-input-json | --cli-input-yaml (string) Reads arguments from the JSON string provided. The JSON string follows the format provided by --generate-cli-skeleton. If other arguments are provided on the command line, those values will override the JSON-provided values. It is not possible to pass arbitrary binary values using a JSON-provided value as the string will be taken literally. This may not be specified along with --cli-input-yaml.

--generate-cli-skeleton (string) Prints a JSON skeleton to standard output without sending an API request. If provided with no value or the value input, prints a sample input JSON that can be used as an argument for --cli-input-json. Similarly, if provided yaml-input it will print a sample input YAML that can be used with --cli-input-yaml. If provided with the value output, it validates the command inputs and returns a sample output JSON for that command.

--cli-auto-prompt (boolean) Automatically prompt for CLI input parameters.

See ‘aws help’ for descriptions of global parameters.

Examples

To get information about the state of a pipeline

This example returns the most recent state of a pipeline named MyFirstPipeline.

Command:

aws codepipeline get-pipeline-state --name MyFirstPipeline

Output:

{
 "created": 1446137312.204,
 "pipelineName": "MyFirstPipeline",
 "pipelineVersion": 1,
 "stageStates": [
  {
    "actionStates": [
      {
        "actionName": "Source",
        "entityUrl": "https://console.aws.amazon.com/s3/home?#",
        "latestExecution": {
          "lastStatusChange": 1446137358.328,
          "status": "Succeeded"
        }
      }
    ],
    "stageName": "Source"
  },
  {
    "actionStates": [
      {
        "actionName": "CodePipelineDemoFleet",
        "entityUrl": "https://console.aws.amazon.com/codedeploy/home?#/applications/CodePipelineDemoApplication/deployment-groups/CodePipelineDemoFleet",
        "latestExecution": {
          "externalExecutionId": "d-EXAMPLE",
          "externalExecutionUrl": "https://console.aws.amazon.com/codedeploy/home?#/deployments/d-EXAMPLE",
          "lastStatusChange": 1446137493.131,
          "status": "Succeeded",
          "summary": "Deployment Succeeded"
        }
      }
    ],
    "inboundTransitionState": {
      "enabled": true
    },
    "stageName": "Beta"
  }
 ],
 "updated": 1446137312.204
}

Output

pipelineName -> (string)

The name of the pipeline for which you want to get the state.

pipelineVersion -> (integer)

The version number of the pipeline.

Note

A newly created pipeline is always assigned a version number of 1 .

stageStates -> (list)

A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.

(structure)

Represents information about the state of the stage.

stageName -> (string)

The name of the stage.

inboundTransitionState -> (structure)

The state of the inbound transition, which is either enabled or disabled.

enabled -> (boolean)

Whether the transition between stages is enabled (true) or disabled (false).

lastChangedBy -> (string)

The ID of the user who last changed the transition state.

lastChangedAt -> (timestamp)

The timestamp when the transition state was last changed.

disabledReason -> (string)

The user-specified reason why the transition between two stages of a pipeline was disabled.

actionStates -> (list)

The state of the stage.

(structure)

Represents information about the state of an action.

actionName -> (string)

The name of the action.

currentRevision -> (structure)

Represents information about the version (or revision) of an action.

revisionId -> (string)

The system-generated unique ID that identifies the revision number of the action.

revisionChangeId -> (string)

The unique identifier of the change that set the state to this revision (for example, a deployment ID or timestamp).

created -> (timestamp)

The date and time when the most recent version of the action was created, in timestamp format.

latestExecution -> (structure)

Represents information about the run of an action.

status -> (string)

The status of the action, or for a completed action, the last status of the action.

summary -> (string)

A summary of the run of the action.

lastStatusChange -> (timestamp)

The last status change of the action.

token -> (string)

The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the GetPipelineState command. It is used to validate that the approval request corresponding to this token is still valid.

lastUpdatedBy -> (string)

The ARN of the user who last changed the pipeline.

externalExecutionId -> (string)

The external ID of the run of the action.

externalExecutionUrl -> (string)

The URL of a resource external to AWS that is used when running the action (for example, an external repository URL).

percentComplete -> (integer)

A percentage of completeness of the action as it runs.

errorDetails -> (structure)

The details of an error returned by a URL external to AWS.

code -> (string)

The system ID or number code of the error.

message -> (string)

The text of the error message.

entityUrl -> (string)

A URL link for more information about the state of the action, such as a deployment group details page.

revisionUrl -> (string)

A URL link for more information about the revision, such as a commit details page.

latestExecution -> (structure)

Information about the latest execution in the stage, including its ID and status.

pipelineExecutionId -> (string)

The ID of the pipeline execution associated with the stage.

status -> (string)

The status of the stage, or for a completed stage, the last status of the stage.

created -> (timestamp)

The date and time the pipeline was created, in timestamp format.

updated -> (timestamp)

The date and time the pipeline was last updated, in timestamp format.