Interface IGetUserResponse
Represents the response interface for retrieving user information.
Namespace: Innovt.Cloud.AWS.Cognito.Model
Assembly: Innovt.Cloud.AWS.Cognito.dll
Syntax
public interface IGetUserResponse
Properties
| Edit this page View SourceCustomAttributes
Gets or sets custom attributes associated with the user.
Declaration
Dictionary<string, string> CustomAttributes { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
FirstName
Gets or sets the user's first name.
Declaration
string FirstName { get; set; }
Property Value
Type | Description |
---|---|
string |
LastName
Gets or sets the user's last name.
Declaration
string LastName { get; set; }
Property Value
Type | Description |
---|---|
string |
Status
Gets or sets the status of the user.
Declaration
string Status { get; set; }
Property Value
Type | Description |
---|---|
string |
UserCreateDate
Gets or sets the date and time when the user was created.
Declaration
DateTime UserCreateDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
UserLastModifiedDate
Gets or sets the date and time when the user was last modified.
Declaration
DateTime UserLastModifiedDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
UserName
Gets or sets the user's username.
Declaration
string UserName { get; set; }
Property Value
Type | Description |
---|---|
string |