Module Values.SourceFlowConfigSource

Contains information about the configuration of the source connector used in the flow.

Sourcetype nonrec t = {
  1. connectorType : ConnectorType.t;
    (*

    The type of connector, such as Salesforce, Amplitude, and so on.

    *)
  2. apiVersion : ApiVersion.t option;
    (*

    The API version of the connector when it's used as a source in the flow.

    *)
  3. connectorProfileName : ConnectorProfileName.t option;
    (*

    The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account.

    *)
  4. sourceConnectorProperties : SourceConnectorProperties.t;
    (*

    Specifies the information that is required to query a particular source connector.

    *)
  5. incrementalPullConfig : IncrementalPullConfig.t option;
    (*

    Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.

    *)
}
Sourceval context_ : string
Sourceval make : ?apiVersion:??? -> ?connectorProfileName:??? -> ?incrementalPullConfig:??? -> connectorType:ConnectorType.t -> sourceConnectorProperties:SourceConnectorProperties.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ApiVersion.t | `Structure of (string * [> `String of DatetimeTypeFieldName.t | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of Object.t | `Structure of (string * [> `Enum of string | `Integer of SAPODataMaxParallelism.t | `String of DataTransferApiTypeName.t ]) list ]) list ]) 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