|
NAMENet::Amazon::S3::ACL::Set - Representation of explicit ACL VERSIONversion 0.991 SYNOPSIS use Net::Amazon::S3::ACL;
$acl = Net::Amazon::S3::ACL->new
->grant_full_control (
id => 11112222333,
id => 444455556666,
uri => 'predefined group uri',
email => 'email-address',
)
->grant_write (
...
)
;
DESCRIPTIONClass representing explicit Amazon S3 ACL configuration. METHODSnewCreates new instance. grant_full_control (@grantees)grant_read (@grantees)grant_read_acp (@grantees)grant_write (@grantees)grant_write_acp (@grantees)GRANTEESSee also "Who Is a Grantee?" <https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#specifying-grantee> in Amazon S3 documentation. Each grant_* method accepts list of grantees either in key-value format or as an instance of "Net::Amazon::S3::ACL::Grantee::*".
AUTHORBranislav Zahradník <barney@cpan.org> COPYRIGHT AND LICENSEThis module is part of Net::Amazon::S3. AUTHORBranislav Zahradník <barney@cpan.org> COPYRIGHT AND LICENSEThis software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
|