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
}
Container for grant information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grantee ⇒ Types::Grantee
The person being granted permissions.
-
#permission ⇒ String
Specifies the permission given to the grantee.
Instance Attribute Details
#grantee ⇒ Types::Grantee
The person being granted permissions.
6879 6880 6881 6882 6883 6884 |
# File 'lib/aws-sdk-s3/types.rb', line 6879 class Grant < Struct.new( :grantee, :permission) SENSITIVE = [] include Aws::Structure end |