Module Values.SuccessResponseHandlingConfigSource

Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data. For example, this setting would determine where to write the response from the destination connector upon a successful insert operation.

Sourcetype nonrec t = {
  1. bucketPrefix : BucketPrefix.t option;
    (*

    The Amazon S3 bucket prefix.

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

    The name of the Amazon S3 bucket.

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