Values.TaskSourceA class for modeling different type of tasks. Task implementation varies based on the TaskType.
type nonrec t = {connectorOperator : ConnectorOperator.t option;The operation to be performed on the provided source fields.
*)destinationField : DestinationField.t option;A field in a destination connector, or a field value against which Amazon AppFlow validates a source field.
*)sourceFields : SourceFields.t;The source fields to which a particular task is applied.
*)taskProperties : TaskPropertiesMap.t option;A map used to store task-related information. The service looks for particular information based on the TaskType.
*)taskType : TaskType.t;Specifies the particular task implementation that Amazon AppFlow performs.
*)}val make :
?connectorOperator:??? ->
?destinationField:??? ->
?taskProperties:??? ->
sourceFields:SourceFields.t ->
taskType:TaskType.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of StringTo2048.t ] list
| `Map of ([> `Enum of string ] * [> `String of Property.t ]) list
| `String of DestinationField.t
| `Structure of (string * [> `Enum of string ]) list ])
list ]