Module Values.StartExperimentRequestSource

Starts running an experiment from the specified experiment template.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t;
    (*

    Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

    *)
  2. experimentTemplateId : ExperimentTemplateId.t;
    (*

    The ID of the experiment template.

    *)
  3. experimentOptions : StartExperimentExperimentOptionsInput.t option;
    (*

    The experiment options for running the experiment.

    *)
  4. tags : TagMap.t option;
    (*

    The tags to apply to the experiment.

    *)
}
Sourceval context_ : string
Sourceval make : ?experimentOptions:??? -> ?tags:??? -> clientToken:ClientToken.t -> experimentTemplateId:ExperimentTemplateId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ClientToken.t | `Structure of (string * [> `Enum of string ]) list ]) 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