Module Values.DescribeGameSessionQueuesInputSource

This API works with the following fleet types: EC2, Anywhere, Container Retrieves the properties for one or more game session queues. When requesting multiple queues, use the pagination parameters to retrieve results as a set of sequential pages. When specifying a list of queues, objects are returned only for queues that currently exist in the Region. Learn more View Your Queues

Sourcetype nonrec t = {
  1. names : GameSessionQueueNameOrArnList.t option;
    (*

    A list of queue names to retrieve information for. You can use either the queue ID or ARN value. To request settings for all queues, leave this parameter empty.

    *)
  2. limit : PositiveInteger.t option;
    (*

    The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. You can request up to 50 results.

    *)
  3. nextToken : NonZeroAndMaxString.t option;
    (*

    A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this operation. To start at the beginning of the result set, do not specify a value.

    *)
}
Sourceval make : ?names:??? -> ?limit:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PositiveInteger.t | `List of [> `String of GameSessionQueueNameOrArn.t ] list | `String of NonZeroAndMaxString.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