Module Values.ImportStatisticsSource

Provides statistics for the specified ImportID. CloudTrail does not update import statistics in real-time. Returned values for parameters such as EventsCompleted may be lower than the actual value, because CloudTrail updates statistics incrementally over the course of the import.

Sourcetype nonrec t = {
  1. prefixesFound : Long.t option;
    (*

    The number of S3 prefixes found for the import.

    *)
  2. prefixesCompleted : Long.t option;
    (*

    The number of S3 prefixes that completed import.

    *)
  3. filesCompleted : Long.t option;
    (*

    The number of log files that completed import.

    *)
  4. eventsCompleted : Long.t option;
    (*

    The number of trail events imported into the event data store.

    *)
  5. failedEntries : Long.t option;
    (*

    The number of failed entries.

    *)
}
Sourceval make : ?prefixesFound:??? -> ?prefixesCompleted:??? -> ?filesCompleted:??? -> ?eventsCompleted:??? -> ?failedEntries:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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