AlgorithmTrainingSpecificationSupportedTuningJobObjectiveMetric constructor

const AlgorithmTrainingSpecificationSupportedTuningJobObjectiveMetric({
  1. required Input<String> metricName,
  2. required Input<String> type,
})

Creates a new AlgorithmTrainingSpecificationSupportedTuningJobObjectiveMetric. metricName Metric name. type Objective type. Allowed values are: Minimize and Maximize.

Implementation

const AlgorithmTrainingSpecificationSupportedTuningJobObjectiveMetric({
  required this.metricName,
  required this.type,
});