gpt4 book ai didi

java - AmazonS3ClientBuilder 问题

转载 作者:行者123 更新时间:2023-12-01 23:11:23 24 4
gpt4 key购买 nike

我正在使用 WowzaStreamingEngine 和 IAM 角色进行 AmazonS3 操作,但面临有关 AmazonS3ClientBuilder 的问题。打印该行之前的日志,但不在 AmazonS3ClientBuilder 行之后打印。即使没有异常发生。只是应用程序卡在那里。

try{
// AmazonS3 s3 = AmazonS3ClientBuilder.defaultClient() //After this line

AmazonS3 s3 = AmazonS3ClientBuilder.standard() //or after this line.
.withCredentials(new InstanceProfileCredentialsProvider(false))
.withRegion(Regions.US_EAST_1)
.build();
WMS_LOGGER.info("s3 : " + s3);
} catch(Exception e ){
WMS_LOGGER.info("Exception : "+e);
}

最佳答案

我认为你必须设置你的凭据而不是错误

AmazonS3 s3client = AmazonS3ClientBuilder
.standard()
.withCredentials(new AWSStaticCredentialsProvider(credentials))
.withRegion(Regions.US_EAST_2)
.build();

我认为这个link会帮助你

关于java - AmazonS3ClientBuilder 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58374984/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com