AmazonS3list()

Amazon S3: Returns all the keys for this bucket as a query with the fields 'key', 'size', 'modified' and 'etag'. Any key returning a slash (/) at the end is considered a subprefix (or directory) of the current prefix.

Usage

QUERY = AmazonS3list( datasource, bucket, prefix )
Argument Summary
datasource Amazon datasource
bucket Amazon Bucket
prefix Optional prefix to list [optional]

Calling

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

AmazonS3list(
   datasource=?, 
   bucket=?, 
   prefix=?
);

Supports passing parameters as a structure using ArgumentCollection:

AmazonS3list( ArgumentCollection={
   datasource : ?, 
   bucket : ?, 
   prefix : ?
} );