Module Values.ConnectorFileTransferResultSource

A structure that contains the details for files transferred using an SFTP connector, during a single transfer.

Sourcetype nonrec t = {
  1. filePath : FilePath.t option;
    (*

    The filename and path to where the file was sent to or retrieved from.

    *)
  2. statusCode : TransferTableStatus.t option;
    (*

    The current status for the transfer.

    *)
  3. failureCode : FailureCode.t option;
    (*

    For transfers that fail, this parameter contains a code indicating the reason. For example, RETRIEVE_FILE_NOT_FOUND

    *)
  4. failureMessage : Message.t option;
    (*

    For transfers that fail, this parameter describes the reason for the failure.

    *)
}
Sourceval make : ?filePath:??? -> ?statusCode:??? -> ?failureCode:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FilePath.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