You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Module: Aws::CodePipeline

Defined in:
(unknown)

Overview

This module provides a client for making API requests to AWS CodePipeline.

Aws::CodePipeline::Client

The Client class provides one-to-one mapping for each API operation.

codepipeline = Aws::CodePipeline::Client.new(region: 'us-east-1')
codepipeline.operation_names
#=> [:acknowledge_job, :acknowledge_third_party_job, :create_custom_action_type, :create_pipeline, ...]

Each API operation method accepts a hash of request parameters and returns a response object.

resp = codepipeline.acknowledge_job(params)

See Client for more information.

Aws::CodePipeline::Errors

Errors returned from AWS CodePipeline are defined in the Errors module and extend Errors::ServiceError.

begin
  # do stuff
rescue Aws::CodePipeline::Errors::ServiceError
  # rescues all errors returned by AWS CodePipeline
end

See Errors for more information.

Defined Under Namespace

Modules: Errors, Types Classes: Client