Module Values.ImportBatchSource

A collection of events being imported to CloudWatch

Sourcetype nonrec t = {
  1. batchId : BatchId.t option;
    (*

    The unique identifier of the import batch.

    *)
  2. status : ImportStatus.t option;
    (*

    The current status of the import batch. Valid values are IN_PROGRESS, CANCELLED, COMPLETED and FAILED.

    *)
  3. errorMessage : ErrorMessage.t option;
    (*

    The error message if the batch failed to import. Only present when status is FAILED.

    *)
}
Sourceval make : ?batchId:??? -> ?status:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BatchId.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