AmazonS3rename()

Amazon S3: Rename the remote file

Usage

BOOLEAN = AmazonS3rename( datasource, bucket, srckey, destkey, aes256key )
Argument Summary
datasource Amazon datasource
bucket Amazon bucket
srckey src key
destkey dest key
aes256key optional - aes256key - see AmazonS3Write(). Required if the file you are attempting to rename was encryped [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

AmazonS3rename(
   datasource=?, 
   bucket=?, 
   srckey=?, 
   destkey=?, 
   aes256key=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonS3rename( ArgumentCollection={
   datasource : ?, 
   bucket : ?, 
   srckey : ?, 
   destkey : ?, 
   aes256key : ?
} );