当前位置:   article > 正文

python调用aws api Amazon Aurora_python调用亚马逊云api示例

python调用亚马逊云api示例

什么是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

示例:

  1. import boto3
  2. import botocore
  3. rds = boto3.client('rds')
  4. # Search if the cluster exists
  5. try:
  6. db_cluster = rds.describe_db_clusters(
  7. DBClusterIdentifier="test-ind"
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/823270
推荐阅读
相关标签
  

闽ICP备14008679号