Module Values.TaskSource

A class for modeling different type of tasks. Task implementation varies based on the TaskType.

Sourcetype nonrec t = {
  1. sourceFields : SourceFields.t;
    (*

    The source fields to which a particular task is applied.

    *)
  2. connectorOperator : ConnectorOperator.t option;
    (*

    The operation to be performed on the provided source fields.

    *)
  3. destinationField : DestinationField.t option;
    (*

    A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.

    *)
  4. taskType : TaskType.t;
    (*

    Specifies the particular task implementation that Amazon AppFlow performs.

    *)
  5. taskProperties : TaskPropertiesMap.t option;
    (*

    A map used to store task-related information. The execution service looks for particular information based on the TaskType.

    *)
}
Sourceval context_ : string
Sourceval make : ?connectorOperator:??? -> ?destinationField:??? -> ?taskProperties:??? -> sourceFields:SourceFields.t -> taskType:TaskType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `Map of ([> `Enum of string ] * [> `String of Property.t ]) list | `String of DestinationField.t | `Structure of (string * [> `Enum of string ]) 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