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