Values.DescribeUserStackAssociationsRequestSourceRetrieves a list that describes the UserStackAssociation objects. You must specify either or both of the following: The stack name The user name (email address of the user associated with the stack) and the authentication type for the user
type nonrec t = {stackName : String_.t option;The name of the stack that is associated with the user.
*)userName : Username.t option;The email address of the user who is associated with the stack. Users' email addresses are case-sensitive.
*)authenticationType : AuthenticationType.t option;The authentication type for the user who is associated with the stack. You must specify USERPOOL.
*)maxResults : MaxResults.t option;The maximum size of each page of results.
*)nextToken : String_.t option;The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxResults.t
| `String of String_.t ])
list ]