Module Values_0.CrawlSource

The details of a crawl in the workflow.

Sourcetype nonrec t = {
  1. state : CrawlState.t option;
    (*

    The state of the crawler.

    *)
  2. startedOn : TimestampValue.t option;
    (*

    The date and time on which the crawl started.

    *)
  3. completedOn : TimestampValue.t option;
    (*

    The date and time on which the crawl completed.

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

    The error message associated with the crawl.

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

    The log group associated with the crawl.

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

    The log stream associated with the crawl.

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