1
aws labmdaのRDS postgresへの接続にpsycopg2を使用できますか? 私はどのようなアクセス許可を設定する必要がありますか?Amazon RDS、labmda postgres
aws labmdaのRDS postgresへの接続にpsycopg2を使用できますか? 私はどのようなアクセス許可を設定する必要がありますか?Amazon RDS、labmda postgres
import boto3
rds = boto3.client('rds')
for line in rds.describe_db_instances():
print (line)
@FelixSFDありがとう:) – Yaron