Class: Aws::S3::Types::Grant
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Grant
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass Grant data as a hash:
{
grantee: {
display_name: "DisplayName",
email_address: "EmailAddress",
id: "ID",
type: "CanonicalUser", # required, accepts CanonicalUser, AmazonCustomerByEmail, Group
uri: "URI",
},
permission: "FULL_CONTROL", # accepts FULL_CONTROL, WRITE, WRITE_ACP, READ, READ_ACP
}
Instance Attribute Summary collapse
- #grantee ⇒ Types::Grantee
-
#permission ⇒ String
Specifies the permission given to the grantee.
Instance Attribute Details
#grantee ⇒ Types::Grantee
3240 3241 3242 3243 3244 |
# File 'lib/aws-sdk-s3/types.rb', line 3240 class Grant < Struct.new( :grantee, :permission) include Aws::Structure end |