Class: Aws::S3::Types::TargetGrant

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#granteeTypes::Grantee

Returns:



9589
9590
9591
9592
9593
# File 'lib/aws-sdk-s3/types.rb', line 9589

class TargetGrant < Struct.new(
  :grantee,
  :permission)
  include Aws::Structure
end

#permissionString

Logging permissions assigned to the Grantee for the bucket.

Returns:

  • (String)


9589
9590
9591
9592
9593
# File 'lib/aws-sdk-s3/types.rb', line 9589

class TargetGrant < Struct.new(
  :grantee,
  :permission)
  include Aws::Structure
end