Module Values_2.DescribeTrialComponentResponseSource

Provides a list of a trials component's properties.

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. source : TrialComponentSource.t option;
    (*

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

    *)
  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.

    *)
  12. parameters : Values_1.TrialComponentParameters.t option;
    (*

    The hyperparameters of the component.

    *)
  13. inputArtifacts : Values_1.TrialComponentArtifacts.t option;
    (*

    The input artifacts of the component.

    *)
  14. outputArtifacts : Values_1.TrialComponentArtifacts.t option;
    (*

    The output artifacts of the component.

    *)
  15. metadataProperties : Values_0.MetadataProperties.t option;
  16. metrics : TrialComponentMetricSummaries.t option;
    (*

    The metrics for the component.

    *)
  17. lineageGroupArn : Values_1.LineageGroupArn.t option;
    (*

    The Amazon Resource Name (ARN) of the lineage group.

    *)
  18. sources : TrialComponentSources.t option;
    (*

    A list of ARNs and, if applicable, job types for multiple sources of an experiment run.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?trialComponentName:??? -> ?trialComponentArn:??? -> ?displayName:??? -> ?source:??? -> ?status:??? -> ?startTime:??? -> ?endTime:??? -> ?creationTime:??? -> ?createdBy:??? -> ?lastModifiedTime:??? -> ?lastModifiedBy:??? -> ?parameters:??? -> ?inputArtifacts:??? -> ?outputArtifacts:??? -> ?metadataProperties:??? -> ?metrics:??? -> ?lineageGroupArn:??? -> ?sources:??? -> 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 * [> `List of [> `Structure of (string * [> `Double of OptionalDouble.t | `Integer of OptionalInteger.t | `String of Values_0.MetricName.t | `Timestamp of Values_0.Timestamp.t ]) list ] list | `Map of ([> `String of string ] * [> `Structure of (string * [> `Double of float | `String of Values_0.StringParameterValue.t ]) list ]) list | `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