Module Values_2.DescribeTrialResponseSource

Provides a list of a trial's properties.

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;
    (*

    The Amazon Resource Name (ARN) of the source and, optionally, the job type.

    *)
  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;
    (*

    When the trial was last modified.

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

    Who last modified the trial.

    *)
  10. metadataProperties : Values_0.MetadataProperties.t option;
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?trialName:??? -> ?trialArn:??? -> ?displayName:??? -> ?experimentName:??? -> ?source:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> ?metadataProperties:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `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