Interface SageMakerHyperParameterTuningJobStateChange.AlgorithmSpecification

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

@Stability(Experimental) public static interface SageMakerHyperParameterTuningJobStateChange.AlgorithmSpecification extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for AlgorithmSpecification.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.sagemaker.events.*;
 AlgorithmSpecification algorithmSpecification = AlgorithmSpecification.builder()
         .metricDefinitions(List.of(AlgorithmSpecificationItem.builder()
                 .name(List.of("name"))
                 .regex(List.of("regex"))
                 .build()))
         .trainingImage(List.of("trainingImage"))
         .trainingInputMode(List.of("trainingInputMode"))
         .build();
 
  • Method Details