clients/client-codepipeline/README.md
AWS SDK for JavaScript CodePipeline Client for Node.js, Browser and React Native.
<fullname>CodePipeline</fullname>
<p> <b>Overview</b> </p> <p>This is the CodePipeline API Reference. This guide provides descriptions of the actions and data types for CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html">CodePipeline User Guide</a>.</p> <p>You can use the CodePipeline API to work with pipelines, stages, actions, and transitions.</p> <p> <i>Pipelines</i> are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions. </p> <p>You can work with pipelines by calling:</p> <ul> <li> <p> <a>CreatePipeline</a>, which creates a uniquely named pipeline.</p> </li> <li> <p> <a>DeletePipeline</a>, which deletes the specified pipeline.</p> </li> <li> <p> <a>GetPipeline</a>, which returns information about the pipeline structure and pipeline metadata, including the pipeline Amazon Resource Name (ARN).</p> </li> <li> <p> <a>GetPipelineExecution</a>, which returns information about a specific execution of a pipeline.</p> </li> <li> <p> <a>GetPipelineState</a>, which returns information about the current state of the stages and actions of a pipeline.</p> </li> <li> <p> <a>ListActionExecutions</a>, which returns action-level details for past executions. The details include full stage and action-level details, including individual action duration, status, any errors that occurred during the execution, and input and output artifact location details.</p> </li> <li> <p> <a>ListPipelines</a>, which gets a summary of all of the pipelines associated with your account.</p> </li> <li> <p> <a>ListPipelineExecutions</a>, which gets a summary of the most recent executions for a pipeline.</p> </li> <li> <p> <a>StartPipelineExecution</a>, which runs the most recent revision of an artifact through the pipeline.</p> </li> <li> <p> <a>StopPipelineExecution</a>, which stops the specified pipeline execution from continuing through the pipeline.</p> </li> <li> <p> <a>UpdatePipeline</a>, which updates a pipeline with edits or changes to the structure of the pipeline.</p> </li> </ul> <p>Pipelines include <i>stages</i>. Each stage contains one or more actions that must complete before the next stage begins. A stage results in success or failure. If a stage fails, the pipeline stops at that stage and remains stopped until either a new version of an artifact appears in the source location, or a user takes action to rerun the most recent artifact through the pipeline. You can call <a>GetPipelineState</a>, which displays the status of a pipeline, including the status of stages in the pipeline, or <a>GetPipeline</a>, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, see <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-structure.html">CodePipeline Pipeline Structure Reference</a>.</p> <p>Pipeline stages include <i>actions</i> that are categorized into categories such as source or build actions performed in a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as <a>CreatePipeline</a> and <a>GetPipelineState</a>. Valid action categories are:</p> <ul> <li> <p>Source</p> </li> <li> <p>Build</p> </li> <li> <p>Test</p> </li> <li> <p>Deploy</p> </li> <li> <p>Approval</p> </li> <li> <p>Invoke</p> </li> <li> <p>Compute</p> </li> </ul> <p>Pipelines also include <i>transitions</i>, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.</p> <p>You can work with transitions by calling:</p> <ul> <li> <p> <a>DisableStageTransition</a>, which prevents artifacts from transitioning to the next stage in a pipeline.</p> </li> <li> <p> <a>EnableStageTransition</a>, which enables transition of artifacts between stages in a pipeline. </p> </li> </ul> <p> <b>Using the API to integrate with CodePipeline</b> </p> <p>For third-party integrators or developers who want to create their own integrations with CodePipeline, the expected sequence varies from the standard API user. To integrate with CodePipeline, developers need to work with the following items:</p> <p> <b>Jobs</b>, which are instances of an action. For example, a job for a source action might import a revision of an artifact from a source. </p> <p>You can work with jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetJobDetails</a>, which returns the details of a job.</p> </li> <li> <p> <a>PollForJobs</a>, which determines whether there are any jobs to act on.</p> </li> <li> <p> <a>PutJobFailureResult</a>, which provides details of a job failure. </p> </li> <li> <p> <a>PutJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul> <p> <b>Third party jobs</b>, which are instances of an action created by a partner action and integrated into CodePipeline. Partner actions are created by members of the Amazon Web Services Partner Network.</p> <p>You can work with third party jobs by calling:</p> <ul> <li> <p> <a>AcknowledgeThirdPartyJob</a>, which confirms whether a job worker has received the specified job.</p> </li> <li> <p> <a>GetThirdPartyJobDetails</a>, which requests the details of a job for a partner action.</p> </li> <li> <p> <a>PollForThirdPartyJobs</a>, which determines whether there are any jobs to act on. </p> </li> <li> <p> <a>PutThirdPartyJobFailureResult</a>, which provides details of a job failure.</p> </li> <li> <p> <a>PutThirdPartyJobSuccessResult</a>, which provides details of a job success.</p> </li> </ul>To install this package, use the CLI of your favorite package manager:
npm install @aws-sdk/client-codepipelineyarn add @aws-sdk/client-codepipelinepnpm add @aws-sdk/client-codepipelineThe AWS SDK is modulized by clients and commands.
To send a request, you only need to import the CodePipelineClient and
the commands you need, for example ListActionTypesCommand:
// ES5 example
const { CodePipelineClient, ListActionTypesCommand } = require("@aws-sdk/client-codepipeline");
// ES6+ example
import { CodePipelineClient, ListActionTypesCommand } from "@aws-sdk/client-codepipeline";
To send a request:
send operation on the client, providing the command object as input.const client = new CodePipelineClient({ region: "REGION" });
const params = { /** input parameters */ };
const command = new ListActionTypesCommand(params);
We recommend using the await operator to wait for the promise returned by send operation as follows:
// async/await.
try {
const data = await client.send(command);
// process data.
} catch (error) {
// error handling.
} finally {
// finally.
}
You can also use Promise chaining.
client
.send(command)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
})
.finally(() => {
// finally.
});
The aggregated client class is exported from the same package, but without the "Client" suffix.
CodePipeline extends CodePipelineClient and additionally supports all operations, waiters, and paginators as methods.
This style may be familiar to you from the AWS SDK for JavaScript v2.
If you are bundling the AWS SDK, we recommend using only the bare-bones client (CodePipelineClient).
More details are in the blog post on
modular packages in AWS SDK for JavaScript.
import { CodePipeline } from "@aws-sdk/client-codepipeline";
const client = new CodePipeline({ region: "REGION" });
// async/await.
try {
const data = await client.listActionTypes(params);
// process data.
} catch (error) {
// error handling.
}
// Promises.
client
.listActionTypes(params)
.then((data) => {
// process data.
})
.catch((error) => {
// error handling.
});
// callbacks (not recommended).
client.listActionTypes(params, (err, data) => {
// process err and data.
});
When the service returns an exception, the error will include the exception information, as well as response metadata (e.g. request id).
try {
const data = await client.send(command);
// process data.
} catch (error) {
const { requestId, cfId, extendedRequestId } = error.$metadata;
console.log({ requestId, cfId, extendedRequestId });
/**
* The keys within exceptions are also parsed.
* You can access them by specifying exception names:
* if (error.name === 'SomeServiceException') {
* const value = error.specialKeyInException;
* }
*/
}
See also docs/ERROR_HANDLING.
Please use these community resources for getting help. We use GitHub issues for tracking bugs and feature requests, but have limited bandwidth to address them.
aws-sdk-js
on AWS Developer Blog.aws-sdk-js.To test your universal JavaScript code in Node.js, browser and react-native environments, visit our code samples repo.
This client code is generated automatically. Any modifications will be overwritten the next time the @aws-sdk/client-codepipeline package is updated.
To contribute to client you can check our generate clients scripts.
This SDK is distributed under the Apache License, Version 2.0, see LICENSE for more information.
Command API Reference / Input / Output
</details> <details> <summary> AcknowledgeThirdPartyJob </summary>Command API Reference / Input / Output
</details> <details> <summary> CreateCustomActionType </summary>Command API Reference / Input / Output
</details> <details> <summary> CreatePipeline </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteCustomActionType </summary>Command API Reference / Input / Output
</details> <details> <summary> DeletePipeline </summary>Command API Reference / Input / Output
</details> <details> <summary> DeleteWebhook </summary>Command API Reference / Input / Output
</details> <details> <summary> DeregisterWebhookWithThirdParty </summary>Command API Reference / Input / Output
</details> <details> <summary> DisableStageTransition </summary>Command API Reference / Input / Output
</details> <details> <summary> EnableStageTransition </summary>Command API Reference / Input / Output
</details> <details> <summary> GetActionType </summary>Command API Reference / Input / Output
</details> <details> <summary> GetJobDetails </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPipeline </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPipelineExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> GetPipelineState </summary>Command API Reference / Input / Output
</details> <details> <summary> GetThirdPartyJobDetails </summary>Command API Reference / Input / Output
</details> <details> <summary> ListActionExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListActionTypes </summary>Command API Reference / Input / Output
</details> <details> <summary> ListDeployActionExecutionTargets </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPipelineExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListPipelines </summary>Command API Reference / Input / Output
</details> <details> <summary> ListRuleExecutions </summary>Command API Reference / Input / Output
</details> <details> <summary> ListRuleTypes </summary>Command API Reference / Input / Output
</details> <details> <summary> ListTagsForResource </summary>Command API Reference / Input / Output
</details> <details> <summary> ListWebhooks </summary>Command API Reference / Input / Output
</details> <details> <summary> OverrideStageCondition </summary>Command API Reference / Input / Output
</details> <details> <summary> PollForJobs </summary>Command API Reference / Input / Output
</details> <details> <summary> PollForThirdPartyJobs </summary>Command API Reference / Input / Output
</details> <details> <summary> PutActionRevision </summary>Command API Reference / Input / Output
</details> <details> <summary> PutApprovalResult </summary>Command API Reference / Input / Output
</details> <details> <summary> PutJobFailureResult </summary>Command API Reference / Input / Output
</details> <details> <summary> PutJobSuccessResult </summary>Command API Reference / Input / Output
</details> <details> <summary> PutThirdPartyJobFailureResult </summary>Command API Reference / Input / Output
</details> <details> <summary> PutThirdPartyJobSuccessResult </summary>Command API Reference / Input / Output
</details> <details> <summary> PutWebhook </summary>Command API Reference / Input / Output
</details> <details> <summary> RegisterWebhookWithThirdParty </summary>Command API Reference / Input / Output
</details> <details> <summary> RetryStageExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> RollbackStage </summary>Command API Reference / Input / Output
</details> <details> <summary> StartPipelineExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> StopPipelineExecution </summary>Command API Reference / Input / Output
</details> <details> <summary> TagResource </summary>Command API Reference / Input / Output
</details> <details> <summary> UntagResource </summary>Command API Reference / Input / Output
</details> <details> <summary> UpdateActionType </summary> </details> <details> <summary> UpdatePipeline </summary> </details>