Interface CfnProcessingJob.ExperimentConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJob.ExperimentConfigProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJob
@Stability(Stable)
public static interface CfnProcessingJob.ExperimentConfigProperty
extends software.amazon.jsii.JsiiSerializable
Associates a SageMaker job as a trial component with an experiment and trial.
Specified when you call the CreateProcessingJob API.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sagemaker.*;
ExperimentConfigProperty experimentConfigProperty = ExperimentConfigProperty.builder()
.experimentName("experimentName")
.runName("runName")
.trialComponentDisplayName("trialComponentDisplayName")
.trialName("trialName")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJob.ExperimentConfigPropertystatic final classAn implementation forCfnProcessingJob.ExperimentConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe name of an existing experiment to associate with the trial component.default StringThe name of the experiment run to associate with the trial component.default StringThe display name for the trial component.default StringThe name of an existing trial to associate the trial component with.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExperimentName
The name of an existing experiment to associate with the trial component.- See Also:
-
getRunName
The name of the experiment run to associate with the trial component.- See Also:
-
getTrialComponentDisplayName
The display name for the trial component.If this key isn't specified, the display name is the trial component name.
- See Also:
-
getTrialName
The name of an existing trial to associate the trial component with.If not specified, a new trial is created.
- See Also:
-
builder
-