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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityagent/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)


5280
5281
5282
5283
5284
5285
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 5280

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

#usernameString

The username of the user.

Returns:

  • (String)


5280
5281
5282
5283
5284
5285
# File 'gems/aws-sdk-securityagent/lib/aws-sdk-securityagent/types.rb', line 5280

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