Module Values_1.GetCrawlerMetricsRequestSource

Retrieves metrics about specified crawlers.

Sourcetype nonrec t = {
  1. crawlerNameList : Values_0.CrawlerNameList.t option;
    (*

    A list of the names of crawlers about which to retrieve metrics.

    *)
  2. maxResults : PageSize.t option;
    (*

    The maximum size of a list to return.

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

    A continuation token, if this is a continuation call.

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