Class: Aws::SecurityAgent::Types::UserMetadata

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

Overview

Contains metadata about a user member, including the username and email address.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#emailString

The email address of the user.

Returns:

  • (String)


4227
4228
4229
4230
4231
4232
# File 'lib/aws-sdk-securityagent/types.rb', line 4227

class UserMetadata < Struct.new(
  :username,
  :email)
  SENSITIVE = []
  include Aws::Structure
end

#usernameString

The username of the user.

Returns:

  • (String)


4227
4228
4229
4230
4231
4232
# File 'lib/aws-sdk-securityagent/types.rb', line 4227

class UserMetadata < Struct.new(
  :username,
  :email)
  SENSITIVE = []
  include Aws::Structure
end