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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南