Module Values_0.LastCrawlInfoSource

Status and error information about the most recent crawl.

Sourcetype nonrec t = {
  1. status : LastCrawlStatus.t option;
    (*

    Status of the last crawl.

    *)
  2. errorMessage : DescriptionString.t option;
    (*

    If an error occurred, the error information about the last crawl.

    *)
  3. logGroup : LogGroup.t option;
    (*

    The log group for the last crawl.

    *)
  4. logStream : LogStream.t option;
    (*

    The log stream for the last crawl.

    *)
  5. messagePrefix : MessagePrefix.t option;
    (*

    The prefix for a message about this crawl.

    *)
  6. startTime : Timestamp.t option;
    (*

    The time at which the crawl started.

    *)
}
Sourceval make : ?status:??? -> ?errorMessage:??? -> ?logGroup:??? -> ?logStream:??? -> ?messagePrefix:??? -> ?startTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DescriptionString.t | `Timestamp of Timestamp.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