AmazonS3setacl()

Amazon S3: Sets the ACL on the given object

Usage

BOOLEAN = AmazonS3setacl( datasource, bucket, key, acl )
Argument Summary
datasource Amazon datasource
bucket Amazon bucket
key Full key
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:

AmazonS3setacl(
   datasource=?, 
   bucket=?, 
   key=?, 
   acl=?
);

Supports passing parameters as a structure using ArgumentCollection:

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