| Index: boto/rds/__init__.py
|
| diff --git a/boto/rds/__init__.py b/boto/rds/__init__.py
|
| index f271cf3438e0bd39fe31ed108fe69557a3514dbd..bf69b1cc6fc0e7743abd6a04aa406ad6b6d400f5 100644
|
| --- a/boto/rds/__init__.py
|
| +++ b/boto/rds/__init__.py
|
| @@ -43,6 +43,8 @@ def regions():
|
| endpoint='rds.eu-west-1.amazonaws.com'),
|
| RDSRegionInfo(name='us-west-1',
|
| endpoint='rds.us-west-1.amazonaws.com'),
|
| + RDSRegionInfo(name='us-west-2',
|
| + endpoint='rds.us-west-2.amazonaws.com'),
|
| RDSRegionInfo(name='ap-northeast-1',
|
| endpoint='rds.ap-northeast-1.amazonaws.com'),
|
| RDSRegionInfo(name='ap-southeast-1',
|
| @@ -556,7 +558,7 @@ class RDSConnection(AWSQueryConnection):
|
| :param name: The name of the new dbparameter group
|
|
|
| :type engine: str
|
| - :param engine: Name of database engine. Must be MySQL5.1 for now.
|
| + :param engine: Name of database engine.
|
|
|
| :type description: string
|
| :param description: The description of the new security group
|
| @@ -565,7 +567,7 @@ class RDSConnection(AWSQueryConnection):
|
| :return: The newly created DBSecurityGroup
|
| """
|
| params = {'DBParameterGroupName': name,
|
| - 'Engine': engine,
|
| + 'DBParameterGroupFamily': engine,
|
| 'Description' : description}
|
| return self.get_object('CreateDBParameterGroup', params, ParameterGroup)
|
|
|
|
|