Module Values.SelectResourceConfigResponseSource

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. results : Results.t option;
    (*

    Returns the results for the SQL query.

    *)
  2. queryInfo : QueryInfo.t option;
    (*

    Returns the QueryInfo object.

    *)
  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.

    *)
}
Sourcetype nonrec error = [
  1. | `InvalidExpressionException of InvalidExpressionException.t
  2. | `InvalidLimitException of InvalidLimitException.t
  3. | `InvalidNextTokenException of InvalidNextTokenException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?results:??? -> ?queryInfo:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InvalidExpressionException of unit | `InvalidLimitException of unit | `InvalidNextTokenException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InvalidExpressionException of unit | `InvalidLimitException of unit | `InvalidNextTokenException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] list | `String of NextToken.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldName.t ]) list ] list ]) list ]) 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