boto3 で デフォルトprofile以外を使う
デフォルトの場合
import boto3
s3 = boto3.resource('s3')
for bucket in s3.buckets.all():
print(bucket.name)
ACCESS_KEY, SECRET_KEYを指定
ドキュメント
- http://boto3.readthedocs.org/en/latest/guide/session.html#custom-session
- http://boto3.readthedocs.org/en/latest/guide/configuration.html
import boto3
from boto3.session import Session
session = Session(aws_access_key_id='<YOUR ACCESS KEY ID>',
aws_secret_access_key='<YOUR SECRET KEY>',
region_name='<REGION NAME>')
s3 = session.resource('s3')
~/.aws/credentials の profile名で指定する
Session に profile_name を渡す。
ドキュメント 見ても分からず、githubのissue で発見
import boto3
from boto3.session import Session
profile = '<YOUR_PROFILE_NAME>'
session = Session(profile_name=profile)
s3 = session.resource('s3')
Author And Source
この問題について(boto3 で デフォルトprofile以外を使う), 我々は、より多くの情報をここで見つけました https://qiita.com/inouet/items/f9723d7ae7d8d134280b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .