AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification.fromMap constructor

AlgorithmTrainingSpecificationSupportedHyperParameterRangeIntegerParameterRangeSpecification.fromMap(
  1. Map<String, dynamic> map
)

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),
  );
}