Class: Aws::S3::Types::Grantee

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 Grantee data as a hash:

{
  display_name: "DisplayName",
  email_address: "EmailAddress",
  id: "ID",
  type: "CanonicalUser", # required, accepts CanonicalUser, AmazonCustomerByEmail, Group
  uri: "URI",
}

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

Screen name of the grantee.

Returns:

  • (String)


3683
3684
3685
3686
3687
3688
3689
3690
# File 'lib/aws-sdk-s3/types.rb', line 3683

class Grantee < Struct.new(
  :display_name,
  :email_address,
  :id,
  :type,
  :uri)
  include Aws::Structure
end

#email_addressString

Email address of the grantee.

Returns:

  • (String)


3683
3684
3685
3686
3687
3688
3689
3690
# File 'lib/aws-sdk-s3/types.rb', line 3683

class Grantee < Struct.new(
  :display_name,
  :email_address,
  :id,
  :type,
  :uri)
  include Aws::Structure
end

#idString

The canonical user ID of the grantee.

Returns:

  • (String)


3683
3684
3685
3686
3687
3688
3689
3690
# File 'lib/aws-sdk-s3/types.rb', line 3683

class Grantee < Struct.new(
  :display_name,
  :email_address,
  :id,
  :type,
  :uri)
  include Aws::Structure
end

#typeString

Type of grantee

Returns:

  • (String)


3683
3684
3685
3686
3687
3688
3689
3690
# File 'lib/aws-sdk-s3/types.rb', line 3683

class Grantee < Struct.new(
  :display_name,
  :email_address,
  :id,
  :type,
  :uri)
  include Aws::Structure
end

#uriString

URI of the grantee group.

Returns:

  • (String)


3683
3684
3685
3686
3687
3688
3689
3690
# File 'lib/aws-sdk-s3/types.rb', line 3683

class Grantee < Struct.new(
  :display_name,
  :email_address,
  :id,
  :type,
  :uri)
  include Aws::Structure
end