AmazonS3createbucket()

Amazon S3: creates a new bucket in the region of the datasource

Usage

BOOLEAN = AmazonS3createbucket( datasource, bucket )
Argument Summary
datasource Amazon datasource
bucket new name for the bucket

Calling

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

AmazonS3createbucket(
   datasource=?, 
   bucket=?
);

Supports passing parameters as a structure using ArgumentCollection:

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