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: