Class: Aws::S3::Types::TargetGrant
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::TargetGrant
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass TargetGrant 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, READ, WRITE
}
Instance Attribute Summary collapse
- #grantee ⇒ Types::Grantee
-
#permission ⇒ String
Logging permissions assigned to the Grantee for the bucket.
Instance Attribute Details
#grantee ⇒ Types::Grantee
8307 8308 8309 8310 8311 |
# File 'lib/aws-sdk-s3/types.rb', line 8307 class TargetGrant < Struct.new( :grantee, :permission) include Aws::Structure end |
#permission ⇒ String
Logging permissions assigned to the Grantee for the bucket.
8307 8308 8309 8310 8311 |
# File 'lib/aws-sdk-s3/types.rb', line 8307 class TargetGrant < Struct.new( :grantee, :permission) include Aws::Structure end |