Class: Aws::S3::Types::Grant

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 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

Instance Attribute Details

#granteeTypes::Grantee

The person being granted permissions.

Returns:



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

#permissionString

Specifies the permission given to the grantee.

Returns:

  • (String)


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