s3 access error in lambda using ruby 2.7

0

Inside my function i have (require "aws-sdk-s3" is called before the function definition):

s3_client = Aws::S3::Client.new(region: 'us-west-2')

s3_object = s3_client.get_object({
bucket: <my bucket arn, copied from the bucket's page on the s3 admin console. It's formatted like: arn:aws:s3:::<bucketname>>,
key: <my object id>,
})

puts s3_object

But I get an error "Only Access Point and Outpost Access Point type ARNs are currently supported.". Why is this happening & how can this be fixed? Thanks!

Edited by: hc4zrr324 on Nov 12, 2020 9:30 AM

已提问 3 年前259 查看次数
1 回答
0

must use the bucket name not the arn for ruby sdk.

已回答 3 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则