Describe Users
| appstream_describe_users | R Documentation |
Retrieves a list that describes one or more specified users in the user pool¶
Description¶
Retrieves a list that describes one or more specified users in the user pool.
Usage¶
Arguments¶
AuthenticationType[required] The authentication type for the users in the user pool to describe. You must specify USERPOOL.
MaxResultsThe maximum size of each page of results.
NextTokenThe pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
Value¶
A list with the following syntax:
list(
Users = list(
list(
Arn = "string",
UserName = "string",
Enabled = TRUE|FALSE,
Status = "string",
FirstName = "string",
LastName = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
AuthenticationType = "API"|"SAML"|"USERPOOL"|"AWS_AD"
)
),
NextToken = "string"
)