Module Values_2.ExperimentSummarySource

A summary of the properties of an experiment. To get the complete set of properties, call the DescribeExperiment API and provide the ExperimentName.

Sourcetype nonrec t = {
  1. experimentArn : Values_0.ExperimentArn.t option;
    (*

    The Amazon Resource Name (ARN) of the experiment.

    *)
  2. experimentName : Values_0.ExperimentEntityName.t option;
    (*

    The name of the experiment.

    *)
  3. displayName : Values_0.ExperimentEntityName.t option;
    (*

    The name of the experiment as displayed. If DisplayName isn't specified, ExperimentName is displayed.

    *)
  4. experimentSource : Values_1.ExperimentSource.t option;
  5. creationTime : Values_0.Timestamp.t option;
    (*

    When the experiment was created.

    *)
  6. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    When the experiment was last modified.

    *)
}
Sourceval make : ?experimentArn:??? -> ?experimentName:??? -> ?displayName:??? -> ?experimentSource:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ExperimentArn.t | `Structure of (string * [> `String of string ]) list | `Timestamp of Values_0.Timestamp.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