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)


9007
9008
9009
9010
9011
9012
# File 'lib/aws-sdk-securityagent/types.rb', line 9007

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

#usernameString

The username of the user.

Returns:

  • (String)


9007
9008
9009
9010
9011
9012
# File 'lib/aws-sdk-securityagent/types.rb', line 9007

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