# File lib/fog/aws/models/iam/policies.rb, line 30
        def get(identity)
          data = service.get_user_policy(identity,@username).body['Policy']
          new(data) # data is an attribute hash
        rescue Fog::AWS::IAM::NotFound
          nil
        end