Module Values.DataTransferApiSource

The API of the connector application that Amazon AppFlow uses to transfer your data.

Sourcetype nonrec t = {
  1. name : DataTransferApiTypeName.t option;
    (*

    The name of the connector application API.

    *)
  2. type_ : DataTransferApiType.t option;
    (*

    You can specify one of the following types: AUTOMATIC The default. Optimizes a flow for datasets that fluctuate in size from small to large. For each flow run, Amazon AppFlow chooses to use the SYNC or ASYNC API type based on the amount of data that the run transfers. SYNC A synchronous API. This type of API optimizes a flow for small to medium-sized datasets. ASYNC An asynchronous API. This type of API optimizes a flow for large datasets.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DataTransferApiTypeName.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