Module Values_2.TrialComponentSummarySource

A summary of the properties of a trial component. To get all the properties, call the DescribeTrialComponent API and provide the TrialComponentName.

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

    The name of the trial component.

    *)
  2. trialComponentArn : Values_0.TrialComponentArn.t option;
    (*

    The Amazon Resource Name (ARN) of the trial component.

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

    The name of the component as displayed. If DisplayName isn't specified, TrialComponentName is displayed.

    *)
  4. trialComponentSource : TrialComponentSource.t option;
  5. status : Values_1.TrialComponentStatus.t option;
    (*

    The status of the component. States include: InProgress Completed Failed

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

    When the component started.

    *)
  7. endTime : Values_0.Timestamp.t option;
    (*

    When the component ended.

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

    When the component was created.

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

    Who created the trial component.

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

    When the component was last modified.

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

    Who last modified the component.

    *)
}
Sourceval make : ?trialComponentName:??? -> ?trialComponentArn:??? -> ?displayName:??? -> ?trialComponentSource:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ExperimentEntityName.t | `Structure of (string * [> `Enum of string | `String of TrialComponentSourceArn.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