Module Values.TaskExecutionResultDetailSource

Provides detailed information about the result of your DataSync task execution.

Sourcetype nonrec t = {
  1. prepareDuration : Duration.t option;
    (*

    The time in milliseconds that your task execution was in the PREPARING step. For more information, see Task execution statuses. For Enhanced mode tasks, the value is always 0. For more information, see How DataSync prepares your data transfer.

    *)
  2. prepareStatus : PhaseStatus.t option;
    (*

    The status of the PREPARING step for your task execution. For more information, see Task execution statuses.

    *)
  3. totalDuration : Duration.t option;
    (*

    The time in milliseconds that your task execution ran.

    *)
  4. transferDuration : Duration.t option;
    (*

    The time in milliseconds that your task execution was in the TRANSFERRING step. For more information, see Task execution statuses. For Enhanced mode tasks, the value is always 0. For more information, see How DataSync transfers your data.

    *)
  5. transferStatus : PhaseStatus.t option;
    (*

    The status of the TRANSFERRING step for your task execution. For more information, see Task execution statuses.

    *)
  6. verifyDuration : Duration.t option;
    (*

    The time in milliseconds that your task execution was in the VERIFYING step. For more information, see Task execution statuses. For Enhanced mode tasks, the value is always 0. For more information, see How DataSync verifies your data's integrity.

    *)
  7. verifyStatus : PhaseStatus.t option;
    (*

    The status of the VERIFYING step for your task execution. For more information, see Task execution statuses.

    *)
  8. errorCode : String_.t option;
    (*

    An error that DataSync encountered during your task execution. You can use this information to help troubleshoot issues.

    *)
  9. errorDetail : String_.t option;
    (*

    The detailed description of an error that DataSync encountered during your task execution. You can use this information to help troubleshoot issues.

    *)
}
Sourceval make : ?prepareDuration:??? -> ?prepareStatus:??? -> ?totalDuration:??? -> ?transferDuration:??? -> ?transferStatus:??? -> ?verifyDuration:??? -> ?verifyStatus:??? -> ?errorCode:??? -> ?errorDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Duration.t | `String of String_.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