Module Values.CustomConnectorDestinationPropertiesSource

The properties that are applied when the custom connector is being used as a destination.

Sourcetype nonrec t = {
  1. entityName : EntityName.t;
    (*

    The entity specified in the custom connector as a destination in the flow.

    *)
  2. errorHandlingConfig : ErrorHandlingConfig.t option;
    (*

    The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination.

    *)
  3. writeOperationType : WriteOperationType.t option;
    (*

    Specifies the type of write operation to be performed in the custom connector when it's used as destination.

    *)
  4. idFieldNames : IdFieldNameList.t option;
    (*

    The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

    *)
  5. customProperties : CustomProperties.t option;
    (*

    The custom properties that are specific to the connector when it's used as a destination in the flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?errorHandlingConfig:??? -> ?writeOperationType:??? -> ?idFieldNames:??? -> ?customProperties:??? -> entityName:EntityName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of Name.t ] list | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of EntityName.t | `Structure of (string * [> `Boolean of Boolean.t | `String of BucketPrefix.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