Module Values_2.ExperimentSource

The properties of an experiment as returned by the Search API. For information about experiments, see the CreateExperiment API.

Sourcetype nonrec t = {
  1. experimentName : Values_0.ExperimentEntityName.t option;
    (*

    The name of the experiment.

    *)
  2. experimentArn : Values_0.ExperimentArn.t option;
    (*

    The Amazon Resource Name (ARN) 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. source : Values_1.ExperimentSource.t option;
  5. description : Values_0.ExperimentDescription.t option;
    (*

    The description of the experiment.

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

    When the experiment was created.

    *)
  7. createdBy : Values_0.UserContext.t option;
    (*

    Who created the experiment.

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

    When the experiment was last modified.

    *)
  9. lastModifiedBy : Values_0.UserContext.t option;
  10. tags : Values_0.TagList.t option;
    (*

    The list of tags that are associated with the experiment. You can use Search API to search on the tags.

    *)
}
Sourceval make : ?experimentName:??? -> ?experimentArn:??? -> ?displayName:??? -> ?source:??? -> ?description:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.ExperimentEntityName.t | `Structure of (string * [> `String of string | `Structure of (string * [> `String of string ]) list ]) 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