传递security_token以创建ec2 - BOTO

时间:2014-07-15 15:23:06

标签: python python-2.7 python-3.x boto botocore

我有会话的accesskey,秘密访问密钥和安全令牌,我正在尝试使用BOTO创建ec2实例:

import boto
from boto.vpc import VPCConnection

conn = boto.ec2.connect_to_region("us-east-1", aws_security_token = "xx", aws_access_key_id= "xx",  aws_secret_access_key= "xx")

当我运行脚本时,我得到错误=

  

return self.connection_cls(region = self,** kw_params)TypeError:    init ()获得了意外的关键字参数'aws_security_token'

不确定我为什么会收到此错误,是否有其他方式传递安全令牌?

0 个答案:

没有答案