Module Values.DataIntegrationEventSource

The data integration event details.

Sourcetype nonrec t = {
  1. instanceId : UUID.t option;
    (*

    The AWS Supply Chain instance identifier.

    *)
  2. eventId : UUID.t option;
    (*

    The unique event identifier.

    *)
  3. eventType : DataIntegrationEventType.t option;
    (*

    The data event type.

    *)
  4. eventGroupId : DataIntegrationEventGroupId.t option;
    (*

    Event identifier (for example, orderId for InboundOrder) used for data sharding or partitioning.

    *)
  5. eventTimestamp : Timestamp.t option;
    (*

    The event timestamp (in epoch seconds).

    *)
  6. datasetTargetDetails : DataIntegrationEventDatasetTargetDetails.t option;
    (*

    The target dataset details for a DATASET event type.

    *)
}
Sourceval make : ?instanceId:??? -> ?eventId:??? -> ?eventType:??? -> ?eventGroupId:??? -> ?eventTimestamp:??? -> ?datasetTargetDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `Enum of string | `String of DataIntegrationDatasetArn.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) list | `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