PredefinedScalingMetricSpecification.fromJson constructor
Implementation
factory PredefinedScalingMetricSpecification.fromJson(
Map<String, dynamic> json) {
return PredefinedScalingMetricSpecification(
predefinedScalingMetricType:
(json['PredefinedScalingMetricType'] as String).toScalingMetricType(),
resourceLabel: json['ResourceLabel'] as String?,
);
}