赞
踩
什么是Amazon Aurora?
https://docs.aws.amazon.com/zh_cn/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
python SDK:
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/quickstart.html
SDK包含2个主要的python包:
botocore和boto3
使用pip安装
pip install botocore
pip install boto3
示例:
- import boto3
- import botocore
-
- rds = boto3.client('rds')
- # Search if the cluster exists
- try:
- db_cluster = rds.describe_db_clusters(
- DBClusterIdentifier="test-ind"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。