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

Module: Aws::Signer

Defined in:
(unknown)

Overview

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

Aws::Signer::Client

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

signer = Aws::Signer::Client.new(region: 'us-east-1')
signer.operation_names
#=> [:cancel_signing_profile, :describe_signing_job, :get_signing_platform, :get_signing_profile, ...]

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

resp = signer.cancel_signing_profile(params)

See Client for more information.

Aws::Signer::Errors

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

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

See Errors for more information.

Defined Under Namespace

Modules: Errors, Types Classes: Client