toPolicyTypeValues method

PolicyTypeValues toPolicyTypeValues()

Implementation

PolicyTypeValues toPolicyTypeValues() {
  switch (this) {
    case 'EBS_SNAPSHOT_MANAGEMENT':
      return PolicyTypeValues.ebsSnapshotManagement;
    case 'IMAGE_MANAGEMENT':
      return PolicyTypeValues.imageManagement;
    case 'EVENT_BASED_POLICY':
      return PolicyTypeValues.eventBasedPolicy;
  }
  throw Exception('$this is not known in enum PolicyTypeValues');
}