# File lib/fog/aws/rds.rb, line 109
        def self.data
          @data ||= Hash.new do |hash, region|
            hash[region] = Hash.new do |region_hash, key|
              region_hash[key] = {
                :clusters            => {},
                :cluster_snapshots   => {},
                :servers             => {},
                :security_groups     => {},
                :subnet_groups       => {},
                :snapshots           => {},
                :event_subscriptions => {},
                :default_parameters  => [
                  {
                    "DataType"      => "integer",
                    "Source"        => "engine-default",
                    "Description"   => "Intended for use with master-to-master replication, and can be used to control the operation of AUTO_INCREMENT columns",
                    "ApplyType"     => "dynamic",
                    "AllowedValues" => "1-65535",
                    "ParameterName" => "auto_increment_increment"
                  }
                ],
                :db_engine_versions  => [
                  {
                    'Engine'                     => "mysql",
                    'DBParameterGroupFamily'     => "mysql5.1",
                    'DBEngineDescription'        => "MySQL Community Edition",
                    'EngineVersion'              => "5.1.57",
                    'DBEngineVersionDescription' => "MySQL 5.1.57"
                  },
                  {
                    'Engine'                     => "postgres",
                    'DBParameterGroupFamily'     => "postgres9.3",
                    'DBEngineDescription'        => "PostgreSQL",
                    'EngineVersion'              => "9.3.5",
                    'DBEngineVersionDescription' => "PostgreSQL 9.3.5"
                  },
                ],
                :parameter_groups    => {
                  "default.mysql5.1" => {
                    "DBParameterGroupFamily" => "mysql5.1",
                    "Description"            => "Default parameter group for mysql5.1",
                    "DBParameterGroupName"   => "default.mysql5.1"
                  },
                  "default.mysql5.5" => {
                    "DBParameterGroupFamily" => "mysql5.5",
                    "Description"            => "Default parameter group for mysql5.5",
                    "DBParameterGroupName"   => "default.mysql5.5"
                  }
                }
              }
            end
          end
        end