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