Module Values.DescribeUserStackAssociationsRequestSource

Retrieves 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

Sourcetype nonrec t = {
  1. stackName : String_.t option;
    (*

    The name of the stack that is associated with the user.

    *)
  2. userName : Username.t option;
    (*

    The email address of the user who is associated with the stack. Users' email addresses are case-sensitive.

    *)
  3. authenticationType : AuthenticationType.t option;
    (*

    The authentication type for the user who is associated with the stack. You must specify USERPOOL.

    *)
  4. maxResults : MaxResults.t option;
    (*

    The maximum size of each page of results.

    *)
  5. 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.

    *)
}
Sourceval make : ?stackName:??? -> ?userName:??? -> ?authenticationType:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of MaxResults.t | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t