toActionType method

ActionType toActionType()

Implementation

ActionType toActionType() {
  switch (this) {
    case 'APPLY_IAM_POLICY':
      return ActionType.applyIamPolicy;
    case 'APPLY_SCP_POLICY':
      return ActionType.applyScpPolicy;
    case 'RUN_SSM_DOCUMENTS':
      return ActionType.runSsmDocuments;
  }
  throw Exception('$this is not known in enum ActionType');
}