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

Module: Aws::CloudWatchEvents

Defined in:
(unknown)

Overview

This module provides a client for making API requests to Amazon CloudWatch Events.

Aws::CloudWatchEvents::Client

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

cloudwatchevents = Aws::CloudWatchEvents::Client.new(region: 'us-east-1')
cloudwatchevents.operation_names
#=> [:activate_event_source, :cancel_replay, :create_archive, :create_event_bus, ...]

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

resp = cloudwatchevents.activate_event_source(params)

See Client for more information.

Aws::CloudWatchEvents::Errors

Errors returned from Amazon CloudWatch Events are defined in the Errors module and extend Errors::ServiceError.

begin
  # do stuff
rescue Aws::CloudWatchEvents::Errors::ServiceError
  # rescues all errors returned by Amazon CloudWatch Events
end

See Errors for more information.

Defined Under Namespace

Modules: Errors, Types Classes: Client