Values.TaskExecutionResultDetailSourceProvides detailed information about the result of your DataSync task execution.
type nonrec t = {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.
*)prepareStatus : PhaseStatus.t option;The status of the PREPARING step for your task execution. For more information, see Task execution statuses.
*)totalDuration : Duration.t option;The time in milliseconds that your task execution ran.
*)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.
*)transferStatus : PhaseStatus.t option;The status of the TRANSFERRING step for your task execution. For more information, see Task execution statuses.
*)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.
*)verifyStatus : PhaseStatus.t option;The status of the VERIFYING step for your task execution. For more information, see Task execution statuses.
*)errorCode : String_.t option;An error that DataSync encountered during your task execution. You can use this information to help troubleshoot issues.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string | `Long of Duration.t | `String of String_.t ])
list ]