Module Values.DataIntegrationFlowExecutionSource

The flow execution details.

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

    The flow execution's instanceId.

    *)
  2. flowName : DataIntegrationFlowName.t option;
    (*

    The flow execution's flowName.

    *)
  3. executionId : UUID.t option;
    (*

    The flow executionId.

    *)
  4. status : DataIntegrationFlowExecutionStatus.t option;
    (*

    The status of flow execution.

    *)
  5. sourceInfo : DataIntegrationFlowExecutionSourceInfo.t option;
    (*

    The source information for a flow execution.

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

    The failure message (if any) of failed flow execution.

    *)
  7. startTime : Timestamp.t option;
    (*

    The flow execution start timestamp.

    *)
  8. endTime : Timestamp.t option;
    (*

    The flow execution end timestamp.

    *)
  9. outputMetadata : DataIntegrationFlowExecutionOutputMetadata.t option;
    (*

    The flow execution output metadata.

    *)
}
Sourceval make : ?instanceId:??? -> ?flowName:??? -> ?executionId:??? -> ?status:??? -> ?sourceInfo:??? -> ?message:??? -> ?startTime:??? -> ?endTime:??? -> ?outputMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `Enum of string | `String of DataIntegrationFlowExecutionDiagnosticReportsRootS3URI.t | `Structure of (string * [> `String of S3BucketName.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