本文介绍了如何检查amazon Web服务中存在多少桶的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Hello Guys如何使用javascript或c#从亚马逊网络服务获取存储桶列表..我有accessid和安全ID ..我需要显示存在于aws中的存储桶名称





请帮忙??



我尝试过:



var s3 =新的AWS.S3({

accessKeyId:'',

secretAccessKey:''

});



帮助??

解决方案

Hello Guys how do i get the buckets list from amazon web services using javascript or c#..i have accessid and security id..i need to display the bucket names which are present in aws


please help??

What I have tried:

var s3 = new AWS.S3({
accessKeyId: '',
secretAccessKey: ''
});

help??

解决方案


这篇关于如何检查amazon Web服务中存在多少桶的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 06:02