Module Values.DescribeMatchmakingRuleSetsInputSource

This API works with the following fleet types: EC2, Anywhere, Container Retrieves the details for FlexMatch matchmaking rule sets. You can request all existing rule sets for the Region, or provide a list of one or more rule set names. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a rule set is returned for each requested name. Learn more Build a rule set

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

    A list of one or more matchmaking rule set names to retrieve details for. (Note: The rule set name is different from the optional "name" field in the rule set body.) You can use either the rule set name or ARN value.

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

    The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.

    *)
  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 RuleSetLimit.t | `List of [> `String of MatchmakingRuleSetName.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