Module Values_2.TrialSource

The properties of a trial as returned by the Search API.

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

    The name of the trial.

    *)
  2. trialArn : Values_0.TrialArn.t option;
    (*

    The Amazon Resource Name (ARN) of the trial.

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

    The name of the trial as displayed. If DisplayName isn't specified, TrialName is displayed.

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

    The name of the experiment the trial is part of.

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

    When the trial was created.

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

    Who created the trial.

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

    Who last modified the trial.

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

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

    *)
  12. trialComponentSummaries : TrialComponentSimpleSummaries.t option;
    (*

    A list of the components associated with the trial. For each component, a summary of the component's properties is included.

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