Module Values.ExperimentSummarySource

Provides a summary of an experiment.

Sourcetype nonrec t = {
  1. id : ExperimentId.t option;
    (*

    The ID of the experiment.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the experiment.

    *)
  3. experimentTemplateId : ExperimentTemplateId.t option;
    (*

    The ID of the experiment template.

    *)
  4. state : ExperimentState.t option;
    (*

    The state of the experiment.

    *)
  5. creationTime : CreationTime.t option;
    (*

    The time that the experiment was created.

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

    The tags for the experiment.

    *)
  7. experimentOptions : ExperimentOptions.t option;
    (*

    The experiment options for the experiment.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?experimentTemplateId:??? -> ?state:??? -> ?creationTime:??? -> ?tags:??? -> ?experimentOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ExperimentId.t | `Structure of (string * [> `Enum of string | `String of ExperimentStatusReason.t | `Structure of (string * [> `String of ExperimentErrorAccountId.t ]) list ]) list | `Timestamp of CreationTime.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