AmazonS3getinfo()

Amazon S3: Returns back a structure detailing all the headers from a given remote object

Usage

STRUCTURE = AmazonS3getinfo( datasource, bucket, key )
Argument Summary
datasource Amazon datasource
bucket Amazon bucket
key Full key

Calling

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

AmazonS3getinfo(
   datasource=?, 
   bucket=?, 
   key=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonS3getinfo( ArgumentCollection={
   datasource : ?, 
   bucket : ?, 
   key : ?
} );