Module Values.DryRunConfigOutputSource

Returns the dry run configurations set for a canary.

Sourcetype nonrec t = {
  1. dryRunId : UUID.t option;
    (*

    The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run.

    *)
  2. lastDryRunExecutionStatus : String_.t option;
    (*

    Returns the last execution status for a canary's dry run.

    *)
}
Sourceval make : ?dryRunId:??? -> ?lastDryRunExecutionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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