Struct rusoto_codepipeline::CodePipelineClient[][src]

pub struct CodePipelineClient { /* fields omitted */ }

A client for the CodePipeline API.

Methods

impl CodePipelineClient
[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

Trait Implementations

impl CodePipeline for CodePipelineClient
[src]

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.

You cannot recreate a custom action after it has been deleted unless you increase the version number of the action.

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.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

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 an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.

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

Requests the details of a job for a third party action. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

Gets a summary of all AWS CodePipeline action types associated with your account.

Gets a summary of the most recent executions for a pipeline.

Gets a summary of all of the pipelines associated with your account.

Returns information about any jobs for AWS CodePipeline to act upon.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

Determines whether there are any third party jobs for a job worker to act on. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts.

Provides information to AWS CodePipeline about new revisions to a source.

Provides the response to a manual approval request to AWS CodePipeline. Valid responses include Approved and Rejected.

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.

Resumes the pipeline execution by retrying the last failed actions in a stage.

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.

Auto Trait Implementations