toEntityType method

EntityType toEntityType()

Implementation

EntityType toEntityType() {
  switch (this) {
    case 'User':
      return EntityType.user;
    case 'Role':
      return EntityType.role;
    case 'Group':
      return EntityType.group;
    case 'LocalManagedPolicy':
      return EntityType.localManagedPolicy;
    case 'AWSManagedPolicy':
      return EntityType.awsManagedPolicy;
  }
  throw Exception('$this is not known in enum EntityType');
}