Class AWS::RDS
In: lib/aws/rds.rb
lib/aws/rds/client.rb
lib/aws/rds/db_instance.rb
lib/aws/rds/errors.rb
lib/aws/rds/db_snapshot.rb
lib/aws/rds/db_snapshot_collection.rb
lib/aws/rds/db_instance_collection.rb
Parent: Object

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

Methods

Included Modules

Core::ServiceInterface

Classes and Modules

Module AWS::RDS::Errors
Class AWS::RDS::Client
Class AWS::RDS::DBInstance
Class AWS::RDS::DBInstanceCollection
Class AWS::RDS::DBSnapshot
Class AWS::RDS::DBSnapshotCollection

Public Instance methods

instances()

Alias for db_instances

snapshots()

Alias for db_snapshots

[Validate]