AWS.CodePipeline
AWS CodePipeline
Overview This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline is only configurable through the API. For additional information, see the AWS CodePipeline User Guide.
You can use the AWS CodePipeline API to work with pipelines, stages, actions, gates, and transitions, as described below.
Pipelines are models of automated release processes. Each pipeline is uniquely named, and consists of actions, gates, and stages.
You can work with pipelines by calling:
-
CreatePipeline
, which creates a uniquely-named pipeline. -
DeletePipeline
, which deletes the specified pipeline. -
GetPipeline
, which returns information about a pipeline structure. -
GetPipelineState
, which returns information about the current state of the stages and actions of a pipeline. -
ListPipelines
, which gets a summary of all of the pipelines associated with your account. -
StartPipelineExecution
, which runs the the most recent revision of an artifact through the pipeline. -
UpdatePipeline
, which updates a pipeline with edits or changes to the structure of the pipeline.
GetPipelineState
, which displays the status of a pipeline, including
the status of stages in the pipeline, or GetPipeline
, which returns the
entire structure of the pipeline, including the stages of that pipeline.
For more information about the structure of stages and actions, also refer
to the ulink
url="http://docs.aws.amazon.com/codepipeline/latest/UserGuide/pipeline-structure.html"AWS
CodePipeline Pipeline Structure Reference.
Pipeline stages include actions, which are categorized into categories
such as source or build actions performed within 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 CreatePipeline
and
GetPipelineState
.
Pipelines also include transitions, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.
You can work with transitions by calling:
- `DisableStageTransition`, which prevents artifacts from transitioning to the next stage in a pipeline.
- `EnableStageTransition`, which enables transition of artifacts between stages in a pipeline.
- Jobs, which are instances of an action. For example, a job for a
source action might import a revision of an artifact from a source. You can
work with jobs by calling:
- `AcknowledgeJob`, which confirms whether a job worker has received the specified job,
- `GetJobDetails`, which returns the details of a job,
- `PollForJobs`, which determines whether there are any jobs to act upon,
- `PutJobFailureResult`, which provides details of a job failure, and
- `PutJobSuccessResult`, which provides details of a job success.
- Third party jobs,
which are instances of an action created by a partner action and integrated
into AWS CodePipeline. Partner actions are created by members of the AWS
Partner Network. You can work with third party jobs by calling:
- `AcknowledgeThirdPartyJob`, which confirms whether a job worker has received the specified job,
- `GetThirdPartyJobDetails`, which requests the details of a job for a partner action,
- `PollForThirdPartyJobs`, which determines whether there are any jobs to act upon,
- `PutThirdPartyJobFailureResult`, which provides details of a job failure, and
- `PutThirdPartyJobSuccessResult`, which provides details of a job success.
Summary
Functions
Returns information about a specified job and whether that job has been received by the job worker. Only used for custom actions
Confirms a job worker has received the specified job. Only used for partner actions
Creates a new custom action that can be used in all pipelines associated with the AWS account. Only used for custom actions
Creates a pipeline
Marks a custom action as deleted. PollForJobs for the custom action will fail after the action is marked for deletion. Only used for custom actions
Deletes the specified pipeline
Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline
Enables artifacts in a pipeline to transition to a stage in a pipeline
Returns information about a job. Only used for custom actions
Returns the metadata, structure, stages, and actions of a pipeline. Can be
used to return the entire structure of a pipeline in JSON format, which can
then be modified and used to update the pipeline structure with
UpdatePipeline
Returns information about the state of a pipeline, including the stages, actions, and details about the last run of the pipeline
Requests the details of a job for a third party action. Only used for partner actions
Gets a summary of all AWS CodePipeline action types associated with your account
Gets a summary of all of the pipelines associated with your account
Returns information about any jobs for AWS CodePipeline to act upon
Determines whether there are any third party jobs for a job worker to act on. Only used for partner actions
Provides information to AWS CodePipeline about new revisions to a source
Represents the failure of a job as returned to the pipeline by a job worker. Only used for custom actions
Represents the success of a job as returned to the pipeline by a job worker. Only used for custom actions
Represents the failure of a third party job as returned to the pipeline by a job worker. Only used for partner actions
Represents the success of a third party job as returned to the pipeline by a job worker. Only used for partner actions
Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline
Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure in conjunction with UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1
Functions
Returns information about a specified job and whether that job has been received by the job worker. Only used for custom actions.
Confirms a job worker has received the specified job. Only used for partner actions.
Creates a new custom action that can be used in all pipelines associated with the AWS account. Only used for custom actions.
Marks a custom action as deleted. PollForJobs for the custom action will fail after the action is marked for deletion. Only used for custom actions.
Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.
Enables artifacts in a pipeline to transition to a stage in a pipeline.
Returns information about a job. Only used for custom actions.
Returns the metadata, structure, stages, and actions of a pipeline. Can be
used to return the entire structure of a pipeline in JSON format, which can
then be modified and used to update the pipeline structure with
UpdatePipeline
.
Returns information about the state of a pipeline, including the stages, actions, and details about the last run of the pipeline.
Requests the details of a job for a third party action. Only used for partner actions.
Gets a summary of all AWS CodePipeline action types associated with your account.
Gets a summary of all of the pipelines associated with your account.
Returns information about any jobs for AWS CodePipeline to act upon.
Determines whether there are any third party jobs for a job worker to act on. Only used for partner actions.
Provides information to AWS CodePipeline about new revisions to a source.
Represents the failure of a job as returned to the pipeline by a job worker. Only used for custom actions.
Represents the success of a job as returned to the pipeline by a job worker. Only used for custom actions.
Represents the failure of a third party job as returned to the pipeline by a job worker. Only used for partner actions.
Represents the success of a third party job as returned to the pipeline by a job worker. Only used for partner actions.
Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure in conjunction with UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.