Module Values.JobLogEventDataSource

Job log data

Sourcetype nonrec t = {
  1. sourceServerID : SourceServerID.t option;
    (*

    Job Event Source Server ID.

    *)
  2. conversionServerID : EC2InstanceID.t option;
    (*

    Job Event conversion Server ID.

    *)
  3. targetInstanceID : EC2InstanceID.t option;
    (*

    Job Event Target instance ID.

    *)
  4. rawError : LargeBoundedString.t option;
    (*

    Job error.

    *)
  5. attemptCount : StrictlyPositiveInteger.t option;
    (*

    Retries for this operation.

    *)
  6. maxAttemptsCount : StrictlyPositiveInteger.t option;
    (*

    The maximum number of retries that will be attempted if this operation failed.

    *)
}
Sourceval make : ?sourceServerID:??? -> ?conversionServerID:??? -> ?targetInstanceID:??? -> ?rawError:??? -> ?attemptCount:??? -> ?maxAttemptsCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of StrictlyPositiveInteger.t | `String of SourceServerID.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