This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your account access key - must have read access to your S3 Bucket | |
$accessKey = "YOUR-ACCESS-KEY" | |
# Your account secret access key | |
$secretKey = "YOUR-SECRET-KEY" | |
# The region associated with your bucket e.g. eu-west-1, us-east-1 etc. (see http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-regions) | |
$region = "eu-west-1" | |
# The name of your S3 Bucket | |
$bucket = "my-test-bucket" | |
# The folder in your bucket to copy, including trailing slash. Leave blank to copy the entire bucket | |
$keyPrefix = "my-folder/" |