Module Values.EventSource

Describes an identifiable significant activity that affects a replication instance or task. This object can provide the message, the available event categories, the date and source of the event, and the DMS resource type.

Sourcetype nonrec t = {
  1. sourceIdentifier : String_.t option;
    (*

    The identifier of an event source.

    *)
  2. sourceType : SourceType.t option;
    (*

    The type of DMS resource that generates events. Valid values: replication-instance | endpoint | replication-task

    *)
  3. message : String_.t option;
    (*

    The event message.

    *)
  4. eventCategories : EventCategoriesList.t option;
    (*

    The event categories available for the specified source type.

    *)
  5. date : TStamp.t option;
    (*

    The date of the event.

    *)
}
Sourceval make : ?sourceIdentifier:??? -> ?sourceType:??? -> ?message:??? -> ?eventCategories:??? -> ?date:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of TStamp.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