Module Values.CanaryRunConfigOutputSource

A structure that contains information about a canary run.

Sourcetype nonrec t = {
  1. timeoutInSeconds : MaxFifteenMinutesInSeconds.t option;
    (*

    How long the canary is allowed to run before it must stop.

    *)
  2. memoryInMB : MaxSize3008.t option;
    (*

    The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64.

    *)
  3. activeTracing : NullableBoolean.t option;
    (*

    Displays whether this canary run used active X-Ray tracing.

    *)
  4. ephemeralStorage : EphemeralStorageSize.t option;
    (*

    Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB.

    *)
}
Sourceval make : ?timeoutInSeconds:??? -> ?memoryInMB:??? -> ?activeTracing:??? -> ?ephemeralStorage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `Integer of MaxFifteenMinutesInSeconds.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