AmazonS3bucketsetacl()

Amazon S3: Sets the ACL on the given bucket; all objects uploaded will be defaulted to this

Usage

BOOLEAN = AmazonS3bucketsetacl( datasource, bucket, acl )
Argument Summary
datasource Amazon datasource
bucket Amazon bucket
acl ACL to set: private | public-read | public-read-write | authenticated-read | bucket-owner-read | bucket-owner-full-control | log-delivery-write

Calling

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

AmazonS3bucketsetacl(
   datasource=?, 
   bucket=?, 
   acl=?
);

Supports passing parameters as a structure using ArgumentCollection:

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