@@ -378,7 +378,8 @@ async def create_db_instance(
378
378
serverless_config : Dict [str , Any ] = None ,
379
379
table_names_case_sensitive : bool = False ,
380
380
db_time_zone : str = None ,
381
- connection_string : str = None
381
+ connection_string : str = None ,
382
+ db_param_group_id : str = None ,
382
383
) -> Dict [str , Any ]:
383
384
"""Create an RDS instance.
384
385
@@ -410,6 +411,7 @@ async def create_db_instance(
410
411
table_names_case_sensitive: Are table names case-sensitive.
411
412
db_time_zone: the db instance time zone.
412
413
connection_string: the connection string for db instance.
414
+ db_param_group_id: the db param group id for db instance.
413
415
Returns:
414
416
Dict[str, Any]: Response containing the created instance details.
415
417
"""
@@ -426,7 +428,8 @@ async def create_db_instance(
426
428
instance_network_type = instance_network_type ,
427
429
dbis_ignore_case = str (not table_names_case_sensitive ).lower (),
428
430
dbtime_zone = db_time_zone ,
429
- connection_string = connection_string
431
+ connection_string = connection_string ,
432
+ dbparam_group_id = db_param_group_id
430
433
)
431
434
432
435
# Add optional parameters
0 commit comments