CreateHyperParameterTuningJobResponse.fromJson constructor

CreateHyperParameterTuningJobResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreateHyperParameterTuningJobResponse.fromJson(
    Map<String, dynamic> json) {
  return CreateHyperParameterTuningJobResponse(
    hyperParameterTuningJobArn: json['HyperParameterTuningJobArn'] as String,
  );
}