Module Values_2.UpdateGrokClassifierRequestSource

Specifies a grok classifier to update when passed to UpdateClassifier.

Sourcetype nonrec t = {
  1. name : Values_0.NameString.t;
    (*

    The name of the GrokClassifier.

    *)
  2. classification : Values_1.Classification.t option;
    (*

    An identifier of the data format that the classifier matches, such as Twitter, JSON, Omniture logs, Amazon CloudWatch Logs, and so on.

    *)
  3. grokPattern : Values_1.GrokPattern.t option;
    (*

    The grok pattern used by this classifier.

    *)
  4. customPatterns : Values_1.CustomPatterns.t option;
    (*

    Optional custom grok patterns used by this classifier.

    *)
}
Sourceval context_ : string
Sourceval make : ?classification:??? -> ?grokPattern:??? -> ?customPatterns:??? -> name:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.NameString.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