Module Values.FieldIndexSource

This structure describes one log event field that is used as an index in at least one index policy in this account.

Sourcetype nonrec t = {
  1. logGroupIdentifier : LogGroupIdentifier.t option;
    (*

    If this field index appears in an index policy that applies only to a single log group, the ARN of that log group is displayed here.

    *)
  2. fieldIndexName : FieldIndexName.t option;
    (*

    The string that this field index matches.

    *)
  3. lastScanTime : Timestamp.t option;
    (*

    The most recent time that CloudWatch Logs scanned ingested log events to search for this field index to improve the speed of future CloudWatch Logs Insights queries that search for this field index.

    *)
  4. firstEventTime : Timestamp.t option;
    (*

    The time and date of the earliest log event that matches this field index, after the index policy that contains it was created.

    *)
  5. lastEventTime : Timestamp.t option;
    (*

    The time and date of the most recent log event that matches this field index.

    *)
  6. type_ : IndexType.t option;
    (*

    The type of index. Specify FACET for facet-based indexing or FIELD_INDEX for field-based indexing. This determines how the field is indexed and can be queried.

    *)
}
Sourceval make : ?logGroupIdentifier:??? -> ?fieldIndexName:??? -> ?lastScanTime:??? -> ?firstEventTime:??? -> ?lastEventTime:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Timestamp.t | `String of LogGroupIdentifier.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