AmazonS3bucketrequesterpays()

Amazon S3: Allows Amazon S3 bucket owner to enable the Requester Pays for the given bucket name. If enabled, the requester of an Amazon S3 object in the bucket is charged for the downloading the data from the bucket.

Usage

BOOLEAN = AmazonS3bucketrequesterpays( datasource, bucket, enabled )
Argument Summary
datasource Amazon datasource
bucket Bucket name
enabled true | false to enable the requester pays

Calling

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

AmazonS3bucketrequesterpays(
   datasource=?, 
   bucket=?, 
   enabled=?
);

Supports passing parameters as a structure using ArgumentCollection:

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