Class: Aws::Glacier::Types::Grantee

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glacier/types.rb

Overview

Note:

When making an API call, you may pass Grantee data as a hash:

{
  type: "AmazonCustomerByEmail", # required, accepts AmazonCustomerByEmail, CanonicalUser, Group
  display_name: "string",
  uri: "string",
  id: "string",
  email_address: "string",
}

Contains information about the grantee.

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

Screen name of the grantee.

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/aws-sdk-glacier/types.rb', line 1250

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

#email_addressString

Email address of the grantee.

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/aws-sdk-glacier/types.rb', line 1250

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

#idString

The canonical user ID of the grantee.

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/aws-sdk-glacier/types.rb', line 1250

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

#typeString

Type of grantee

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/aws-sdk-glacier/types.rb', line 1250

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

#uriString

URI of the grantee group.

Returns:

  • (String)


1250
1251
1252
1253
1254
1255
1256
1257
# File 'lib/aws-sdk-glacier/types.rb', line 1250

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