Module Values.ResourceSyncEventSource

Information about a resource sync event for the resource associated with a sync configuration.

Sourcetype nonrec t = {
  1. event : Event.t option;
    (*

    The event for a resource sync event.

    *)
  2. externalId : ExternalId.t option;
    (*

    The ID for a resource sync event.

    *)
  3. time : Timestamp.t option;
    (*

    The time that a resource sync event occurred.

    *)
  4. type_ : Type.t option;
    (*

    The type of resource sync event.

    *)
}
Sourceval make : ?event:??? -> ?externalId:??? -> ?time:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Event.t | `Timestamp of Timestamp.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