Class: Aws::SecurityAgent::Types::UserMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityAgent::Types::UserMetadata
- 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
-
#email ⇒ String
The email address of the user.
-
#username ⇒ String
The username of the user.
Instance Attribute Details
#email ⇒ String
The email address of the user.
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 |
#username ⇒ String
The username of the user.
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 |