Module Values_1.ExperimentConfigSource

Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs: CreateProcessingJob CreateTrainingJob CreateTransformJob

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

    The name of an existing experiment to associate with the trial component.

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

    The name of an existing trial to associate the trial component with. If not specified, a new trial is created.

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

    The display name for the trial component. If this key isn't specified, the display name is the trial component name.

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

    The name of the experiment run to associate with the trial component.

    *)
}
Sourceval make : ?experimentName:??? -> ?trialName:??? -> ?trialComponentDisplayName:??? -> ?runName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.ExperimentEntityName.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