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

asked 3 years ago255 views
1 Answer
0

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

answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions