toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case PredictiveScalingMode.forecastAndScale:
      return 'ForecastAndScale';
    case PredictiveScalingMode.forecastOnly:
      return 'ForecastOnly';
  }
}