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