AmazonS3bucketexists()

Amazon S3: Determines if the bucket exists

Usage

BOOLEAN = AmazonS3bucketexists( datasource, bucket )
Argument Summary
datasource Amazon datasource
bucket name for the bucket to check

Calling

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

AmazonS3bucketexists(
   datasource=?, 
   bucket=?
);

Supports passing parameters as a structure using ArgumentCollection:

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