Class: AWS::S3::AccessControlList::Grant
- Inherits:
-
Object
- Object
- AWS::S3::AccessControlList::Grant
- Includes:
- AWS::S3::ACLObject
- Defined in:
- lib/aws/s3/access_control_list.rb
Overview
Represents a single grant in an ACL. Both grantee
and permission
are required for each grant when setting an ACL.
See docs.amazonwebservices.com/AmazonS3/latest/dev/ACLOverview.html for more information on how grantees and permissions are interpreted by S3.
Instance Attribute Summary collapse
-
#grantee ⇒ Grantee
The user or users who are granted access according to this grant.
-
#permission ⇒ Permission or Symbol
The type of permission that is granted by this grant.
Method Summary
Methods included from AWS::S3::ACLObject
#to_s, #to_xml, #valid?, #validate!
Instance Attribute Details
#grantee ⇒ Grantee
The user or users who are granted access according to this grant. You can specify this as a hash:
grant.grantee = { :amazon_customer_email => "[email protected]" }
191 192 193 |
# File 'lib/aws/s3/access_control_list.rb', line 191 def grantee @grantee end |
#permission ⇒ Permission or Symbol
The type of permission that is granted by this grant. Valid values are:
-
:read
-
:write
-
:read_acp
-
:write_acp
-
:full_control
191 192 193 |
# File 'lib/aws/s3/access_control_list.rb', line 191 def @permission end |