You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Module: Aws::Neptune

Defined in:
(unknown)

Overview

This module provides a client for making API requests to Amazon Neptune.

Aws::Neptune::Client

The Client class provides one-to-one mapping for each API operation.

neptune = Aws::Neptune::Client.new(region: 'us-east-1')
neptune.operation_names
#=> [:add_role_to_db_cluster, :add_source_identifier_to_subscription, :add_tags_to_resource, :apply_pending_maintenance_action, ...]

Each API operation method accepts a hash of request parameters and returns a response object.

resp = neptune.add_role_to_db_cluster(params)

See Client for more information.

Aws::Neptune::Errors

Errors returned from Amazon Neptune are defined in the Errors module and extend Errors::ServiceError.

begin
  # do stuff
rescue Aws::Neptune::Errors::ServiceError
  # rescues all errors returned by Amazon Neptune
end

See Errors for more information.

Defined Under Namespace

Modules: Errors, Types Classes: Client