Module Values_1.DescribeSessionsRequestSource

Retrieves a list of all active sessions (both connected and disconnected) or terminated sessions from the past 30 days.

Sourcetype nonrec t = {
  1. state : SessionState.t;
    (*

    The session status to retrieve a list of sessions for. For example, "Active".

    *)
  2. maxResults : SessionMaxResults.t option;
    (*

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

    *)
  3. nextToken : Values_0.NextToken.t option;
    (*

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
  4. filters : SessionFilterList.t option;
    (*

    One or more filters to limit the type of sessions returned by the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?filters:??? -> state:SessionState.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of SessionMaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `String of SessionFilterValue.t ]) list ] list | `String of Values_0.NextToken.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