Module Values.SearchSystemInstancesRequestSource

Searches for system instances in the user's account.

Sourcetype nonrec t = {
  1. filters : SystemInstanceFilters.t option;
    (*

    Optional filter to apply to the search. Valid filters are SYSTEM_TEMPLATE_ID, STATUS, and GREENGRASS_GROUP_NAME. Multiple filters function as OR criteria in the query. Multiple values passed inside the filter function as AND criteria.

    *)
  2. nextToken : NextToken.t option;
    (*

    The string that specifies the next page of results. Use this when you're paginating results.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return in the response.

    *)
}
Sourceval make : ?filters:??? -> ?nextToken:??? -> ?maxResults:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of SystemInstanceFilterValue.t ] list ]) list ] list | `String of 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