Values.CanaryRunSourceThis structure contains the details about one run of one canary.
type nonrec t = {id : UUID.t option;A unique ID that identifies this canary run.
*)scheduledRunId : UUID.t option;The ID of the scheduled canary run.
*)retryAttempt : RetryAttempt.t option;The count in number of the retry attempt.
*)name : CanaryName.t option;The name of the canary.
*)status : CanaryRunStatus.t option;The status of this run.
*)timeline : CanaryRunTimeline.t option;A structure that contains the start and end times of this run.
*)artifactS3Location : String_.t option;The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files.
*)dryRunConfig : CanaryDryRunConfigOutput.t option;Returns the dry run configurations for a canary.
*)browserType : BrowserType.t option;The browser type associated with this canary run.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of RetryAttempt.t
| `String of UUID.t
| `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of Timestamp.t ])
list ])
list ]