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)


5287
5288
5289
5290
5291
5292
# File 'lib/aws-sdk-securityagent/types.rb', line 5287

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

#usernameString

The username of the user.

Returns:

  • (String)


5287
5288
5289
5290
5291
5292
# File 'lib/aws-sdk-securityagent/types.rb', line 5287

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