Module Values.DataIntegrationFlowExecutionSourceInfoSource

The source information of a flow execution.

Sourcetype nonrec t = {
  1. sourceType : DataIntegrationFlowSourceType.t option;
    (*

    The data integration flow execution source type.

    *)
  2. s3Source : DataIntegrationFlowS3Source.t option;
    (*

    The source details of a flow execution with S3 source.

    *)
  3. datasetSource : DataIntegrationFlowDatasetSource.t option;
    (*

    The source details of a flow execution with dataset source.

    *)
}
Sourceval make : ?sourceType:??? -> ?s3Source:??? -> ?datasetSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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