toScalingAdjustmentType method

ScalingAdjustmentType toScalingAdjustmentType()

Implementation

ScalingAdjustmentType toScalingAdjustmentType() {
  switch (this) {
    case 'ChangeInCapacity':
      return ScalingAdjustmentType.changeInCapacity;
    case 'ExactCapacity':
      return ScalingAdjustmentType.exactCapacity;
    case 'PercentChangeInCapacity':
      return ScalingAdjustmentType.percentChangeInCapacity;
  }
  throw Exception('$this is not known in enum ScalingAdjustmentType');
}