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