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