toScheduledActionFilterName method

ScheduledActionFilterName toScheduledActionFilterName()

Implementation

ScheduledActionFilterName toScheduledActionFilterName() {
  switch (this) {
    case 'cluster-identifier':
      return ScheduledActionFilterName.clusterIdentifier;
    case 'iam-role':
      return ScheduledActionFilterName.iamRole;
  }
  throw Exception('$this is not known in enum ScheduledActionFilterName');
}