# File lib/fog/aws/models/efs/file_systems.rb, line 14
        def get(identity)
          data = service.describe_file_systems(:id => identity).body["FileSystems"].first
          new(data)
        rescue Fog::AWS::EFS::NotFound
          nil
        end