class AWS::RDS

This class is the starting point for working with Amazon Relational Database Service (RDS).

For more information about RDS:

# Credentials

You can setup default credentials for all AWS services via AWS.config:

AWS.config(
  :access_key_id => 'YOUR_ACCESS_KEY_ID',
  :secret_access_key => 'YOUR_SECRET_ACCESS_KEY')

Or you can set them directly on the AWS::RDS interface:

rds = AWS::RDS.new(
  :access_key_id => 'YOUR_ACCESS_KEY_ID',
  :secret_access_key => 'YOUR_SECRET_ACCESS_KEY')

@!attribute [r] client

@return [Client] the low-level RDS client object

Public Instance Methods

db_instances() click to toggle source

@return [DBInstanceCollection]

# File lib/aws/rds.rb, line 58
def db_instances
  DBInstanceCollection.new(:config => config)
end
Also aliased as: instances
db_snapshots() click to toggle source

@return [DBSnapshotCollection]]

# File lib/aws/rds.rb, line 64
def db_snapshots
  DBSnapshotCollection.new(:config => config)
end
Also aliased as: snapshots
instances()
Alias for: db_instances
snapshots()
Alias for: db_snapshots