У меня есть сценарий powershell, который работает при доступе к обычному контейнеру S3, но если я изменяю имя корзины на имя корзины с ускорением передачи, то выдается сообщение об ошибке "Bucket not found".
Включает скрипт, которыйработает с закомментированным именем корзины, которое не работает.
# Your account access key - must have read access to your S3 Bucket
$accessKey = "KEY"
# Your account secret access key
$secretKey = "SECRETKEY"
#
$region = "us-east-1"
# The name of your S3 Bucket
$bucket = "myBucket"
#The above works!! - but if i comment out the above and uncomment
the below line then it no longer works.
#$bucket = "myBucket.s3-accelerate.amazonaws.com"
# The folder in your bucket to copy, including trailing slash. Leave
blank to copy the entire bucket
$keyPrefix = "myFolder/"
# The local file path where files should be copied
$localPath = "D:\S3_Files\myFolder\"
$objects = Get-S3Object -BucketName $bucket -KeyPrefix $keyPrefix -
AccessKey $accessKey -SecretKey $secretKey -Region $region
foreach($object in $objects) {
$localFileName = $object.Key -replace $keyPrefix, ''
if ($localFileName -ne '') {
$localFilePath = Join-Path $localPath $localFileName
Copy-S3Object -BucketName $bucket -Key $object.Key -LocalFile $localFilePath -AccessKey $accessKey -SecretKey $secretKey -Region $region
}
}