Module Values.EngineConfigSource

A structure of engine configurations for the canary, one for each browser type that the canary is configured to run on.

Sourcetype nonrec t = {
  1. engineArn : FunctionArn.t option;
    (*

    Each engine configuration contains the ARN of the Lambda function that is used as the canary's engine for a specific browser type.

    *)
  2. browserType : BrowserType.t option;
    (*

    The browser type associated with this engine configuration.

    *)
}
Sourceval make : ?engineArn:??? -> ?browserType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FunctionArn.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