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
}
Container for granting information.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#grantee ⇒ Types::Grantee
Container for the person being granted permissions.
-
#permission ⇒ String
Logging permissions assigned to the grantee for the bucket.
Instance Attribute Details
#grantee ⇒ Types::Grantee
Container for the person being granted permissions.
14387 14388 14389 14390 14391 14392 |
# File 'lib/aws-sdk-s3/types.rb', line 14387 class TargetGrant < Struct.new( :grantee, :permission) SENSITIVE = [] include Aws::Structure end |
#permission ⇒ String
Logging permissions assigned to the grantee for the bucket.
14387 14388 14389 14390 14391 14392 |
# File 'lib/aws-sdk-s3/types.rb', line 14387 class TargetGrant < Struct.new( :grantee, :permission) SENSITIVE = [] include Aws::Structure end |