2

我有我的会话的访问密钥、秘密访问密钥和安全令牌,并且正在尝试使用 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 () got an unexpected keyword argument 'aws_security_token'

不知道为什么我会收到此错误,是否有其他传递安全令牌的方法?

4

0 回答 0