Module Values.DescribeSessionsRequestSource

Retrieves a list that describes the streaming sessions for a specified stack and fleet. If a UserId is provided for the stack and fleet, only streaming sessions for that user are described. If an authentication type is not provided, the default is to authenticate users using a streaming URL.

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

    The name of the stack. This value is case-sensitive.

    *)
  2. fleetName : Name.t;
    (*

    The name of the fleet. This value is case-sensitive.

    *)
  3. userId : UserId.t option;
    (*

    The user identifier (ID). If you specify a user ID, you must also specify the authentication type.

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

    *)
  5. limit : Integer.t option;
    (*

    The size of each page of results. The default value is 20 and the maximum value is 50.

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

    The authentication method. Specify API for a user authenticated using a streaming URL or SAML for a SAML federated user. The default is to authenticate users using a streaming URL.

    *)
  7. instanceId : String_.t option;
    (*

    The identifier for the instance hosting the session.

    *)
}
Sourceval context_ : string
Sourceval make : ?userId:??? -> ?nextToken:??? -> ?limit:??? -> ?authenticationType:??? -> ?instanceId:??? -> stackName:Name.t -> fleetName:Name.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of Name.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