Values.DescribeGameSessionQueuesInputSourceThis 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
type nonrec t = {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.
*)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.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Integer of PositiveInteger.t
| `List of [> `String of GameSessionQueueNameOrArn.t ] list
| `String of NonZeroAndMaxString.t ])
list ]