Class: Aws::S3::Types::Grantee
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Grantee
- 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
-
#display_name ⇒ String
Screen name of the grantee.
-
#email_address ⇒ String
Email address of the grantee.
-
#id ⇒ String
The canonical user ID of the grantee.
-
#type ⇒ String
Type of grantee.
-
#uri ⇒ String
URI of the grantee group.
Instance Attribute Details
#display_name ⇒ String
Screen name of the grantee.
3279 3280 3281 3282 3283 3284 3285 3286 |
# File 'lib/aws-sdk-s3/types.rb', line 3279 class Grantee < Struct.new( :display_name, :email_address, :id, :type, :uri) include Aws::Structure end |
#email_address ⇒ String
Email address of the grantee.
3279 3280 3281 3282 3283 3284 3285 3286 |
# File 'lib/aws-sdk-s3/types.rb', line 3279 class Grantee < Struct.new( :display_name, :email_address, :id, :type, :uri) include Aws::Structure end |
#id ⇒ String
The canonical user ID of the grantee.
3279 3280 3281 3282 3283 3284 3285 3286 |
# File 'lib/aws-sdk-s3/types.rb', line 3279 class Grantee < Struct.new( :display_name, :email_address, :id, :type, :uri) include Aws::Structure end |