You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Module: Aws::Connect
- Defined in:
- (unknown)
Overview
This module provides a client for making API requests to Amazon Connect Service.
Aws::Connect::Client
The Client class provides one-to-one mapping for each API operation.
connect = Aws::Connect::Client.new(region: 'us-east-1')
connect.operation_names
#=> [:associate_approved_origin, :associate_instance_storage_config, :associate_lambda_function, :associate_lex_bot, ...]
Each API operation method accepts a hash of request parameters and returns a response object.
resp = connect.associate_approved_origin(params)
See Client for more information.
Aws::Connect::Errors
Errors returned from Amazon Connect Service are defined in the Errors module and extend Errors::ServiceError.
begin
# do stuff
rescue Aws::Connect::Errors::ServiceError
# rescues all errors returned by Amazon Connect Service
end
See Errors for more information.