toRightsizingType method

RightsizingType toRightsizingType()

Implementation

RightsizingType toRightsizingType() {
  switch (this) {
    case 'TERMINATE':
      return RightsizingType.terminate;
    case 'MODIFY':
      return RightsizingType.modify;
  }
  throw Exception('$this is not known in enum RightsizingType');
}