Module Values_2.TrialSummarySource

A summary of the properties of a trial. To get the complete set of properties, call the DescribeTrial API and provide the TrialName.

Sourcetype nonrec t = {
  1. trialArn : Values_0.TrialArn.t option;
    (*

    The Amazon Resource Name (ARN) of the trial.

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

    The name 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. trialSource : TrialSource.t option;
  5. creationTime : Values_0.Timestamp.t option;
    (*

    When the trial was created.

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

    When the trial was last modified.

    *)
}
Sourceval make : ?trialArn:??? -> ?trialName:??? -> ?displayName:??? -> ?trialSource:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.TrialArn.t | `Structure of (string * [> `String of TrialSourceArn.t ]) 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