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