Как я могу скопировать содержимое из корзины в Вирджинии в корзину в Ирландии с помощью лямбда-функции?
Я пытаюсь создать лямбда-функцию в Вирджинии:
const aws = require('aws-sdk');
const s3 = new aws.S3();
s3.copyObject({
Bucket: 'my-bucket-in-ireland',
CopySource: 'my-bucket-in-virginia' + '/' + 'myKey.zip',
Key: 'myKey.zip'
}, function (err, data) {
// further handling logic goes here
});
Но я получил ошибку:
"The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'eu-west-1'"