toFileSystemType method

FileSystemType toFileSystemType()

Implementation

FileSystemType toFileSystemType() {
  switch (this) {
    case 'EFS':
      return FileSystemType.efs;
    case 'FSxLustre':
      return FileSystemType.fSxLustre;
  }
  throw Exception('$this is not known in enum FileSystemType');
}