如何使用Powershell访问Transfer Accelerated S3存储桶

时间:2019-01-29 02:25:44

标签: amazon-web-services powershell amazon-s3

我有一个Powershell脚本,可以在访问普通的S3存储桶时使用,但是如果我将存储桶名称更改为Transfer Accelerated存储桶名称,则会出现错误“找不到存储桶”。

包括对注释无效的存储桶名称起作用的脚本。

# 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
   }
}

1 个答案:

答案 0 :(得分:2)

代替为存储桶指定s3-accelerate名称,只需使用常规存储桶名称,然后将 -UseAccelerateEndpoint 开关添加到S3命令即可。然后,这些cmdlet将为您定位加速的S3端点。