AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification.fromMap constructor
AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification.fromMap()
Implementation
factory AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification.fromMap(Map<String, dynamic> map) {
return AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification(
maxValue: pulumi.Input.fromValue(map['maxValue'] as String),
minValue: pulumi.Input.fromValue(map['minValue'] as String),
);
}