fix(rds_iam_token.py): fix boto3 client init for rds

This commit is contained in:
Krrish Dholakia 2024-08-28 12:15:57 -07:00
parent 60381ffcdd
commit 83c5b48842

View file

@ -149,7 +149,7 @@ def init_rds_client(
# boto3 automatically reads env variables
client = boto3.client(
service_name="bedrock-runtime",
service_name="rds",
region_name=region_name,
config=config,
)