Module Values.ErrorHandlingConfigSource

The settings that determine how Amazon AppFlow handles an error when placing data in the destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.

Sourcetype nonrec t = {
  1. failOnFirstDestinationError : Boolean.t option;
    (*

    Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.

    *)
  2. bucketPrefix : BucketPrefix.t option;
    (*

    Specifies the Amazon S3 bucket prefix.

    *)
  3. bucketName : BucketName.t option;
    (*

    Specifies the name of the Amazon S3 bucket.

    *)
}
Sourceval make : ?failOnFirstDestinationError:??? -> ?bucketPrefix:??? -> ?bucketName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of BucketPrefix.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