Module Values.ExperimentErrorSource

Describes the error when an experiment has failed.

Sourcetype nonrec t = {
  1. accountId : ExperimentErrorAccountId.t option;
    (*

    The Amazon Web Services Account ID where the experiment failure occurred.

    *)
  2. code : ExperimentErrorCode.t option;
    (*

    The error code for the failed experiment.

    *)
  3. location : ExperimentErrorLocation.t option;
    (*

    Context for the section of the experiment template that failed.

    *)
}
Sourceval make : ?accountId:??? -> ?code:??? -> ?location:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ExperimentErrorAccountId.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