python AWS的基本Boto3代码以设置配置文件名称
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python AWS的基本Boto3代码以设置配置文件名称相关的知识,希望对你有一定的参考价值。
import boto3
# setting region, profile from credential provider
session = boto3.Session(
region_name='eu-west-1',
profile_name='aws'
)
# declare ec2
ec2 = session.client('ec2')
# get a dictionary of all the instances
response = ec2.describe_instances()
以上是关于python AWS的基本Boto3代码以设置配置文件名称的主要内容,如果未能解决你的问题,请参考以下文章
使用 BOTO3 为 AWS Api Gateway 自动化 CORS
Python - 在 cloud9 AWS (boto3) 上查找文件的路径
S3 AWS 的 IAM 角色和密钥设置使用 boto3 访问两个不同的账户存储桶
使用boto3 Python SDK返回AWS EC2可用性区域属性
从 AWS 开发工具包访问多个配置文件 - Python
Python使用boto3操作AWS S3中踩过的坑