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