Interface CfnTransformJob.ExperimentConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTransformJob.ExperimentConfigProperty.Jsii$Proxy
Enclosing class:
CfnTransformJob

@Stability(Stable) public static interface CfnTransformJob.ExperimentConfigProperty extends software.amazon.jsii.JsiiSerializable
Associates a SageMaker job as a trial component with an experiment and trial.

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")
         .trialComponentDisplayName("trialComponentDisplayName")
         .trialName("trialName")
         .build();
 

See Also: