boto3.exceptions.ResourceNotExistsError:'cloud9'资源不存在

时间:2019-05-22 12:41:32

标签: amazon-web-services boto3 cloud9-ide

我在python 2X和3X中都尝试过,并且还把boto更新到了最新版本

enter image description here

当我尝试使用boto 3列出cloud9 IDE时,我遇到了异常

enter image description here

  

我尝试了boto3.resource()和boto3.client()

Ref:Boto3 Documentation

在下面附加我的代码

def deleteCloud9IDE(resource,accessKey,secretKey,region):

client = boto3.client(resource,aws_access_key_id=accessKey,aws_secret_access_key=secretKey,region_name=region)

responseCloud9IDEDetails = client.list_environments()
print(responseCloud9IDEDetails)

请帮助我

0 个答案:

没有答案