Module Values.DescribeQueryDefinitionsRequestSource

This operation returns a paginated list of your saved CloudWatch Logs Insights query definitions. You can retrieve query definitions from the current account or from a source account that is linked to the current account. You can use the queryDefinitionNamePrefix parameter to limit the results to only the query definitions that have names that start with a certain string.

Sourcetype nonrec t = {
  1. queryLanguage : QueryLanguage.t option;
    (*

    The query language used for this query. For more information about the query languages that CloudWatch Logs supports, see Supported query languages.

    *)
  2. queryDefinitionNamePrefix : QueryDefinitionName.t option;
    (*

    Use this parameter to filter your results to only the query definitions that have names that start with the prefix you specify.

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

    Limits the number of returned query definitions to the specified number.

    *)
  4. nextToken : NextToken.t option;
}
Sourceval make : ?queryLanguage:??? -> ?queryDefinitionNamePrefix:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of QueryListMaxResults.t | `String of QueryDefinitionName.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