Module Values.SelectResourceConfigRequestSource

Accepts a structured query language (SQL) SELECT command, performs the corresponding search, and returns resource configurations matching the properties. For more information about query components, see the Query Components section in the Config Developer Guide.

Sourcetype nonrec t = {
  1. expression : Expression.t;
    (*

    The SQL query SELECT command.

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

    The maximum number of query results returned on each page.

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

    The nextToken string returned in a previous request that you use to request the next page of results in a paginated response.

    *)
}
Sourceval context_ : string
Sourceval make : ?limit:??? -> ?nextToken:??? -> expression:Expression.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Limit.t | `String of Expression.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