toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case ActionOwner.aws:
      return 'AWS';
    case ActionOwner.thirdParty:
      return 'ThirdParty';
    case ActionOwner.custom:
      return 'Custom';
  }
}