git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

cognitoidentity.js (532B)


      1 var AWS = require('../core');
      2 
      3 AWS.util.update(AWS.CognitoIdentity.prototype, {
      4   getOpenIdToken: function getOpenIdToken(params, callback) {
      5     return this.makeUnauthenticatedRequest('getOpenIdToken', params, callback);
      6   },
      7 
      8   getId: function getId(params, callback) {
      9     return this.makeUnauthenticatedRequest('getId', params, callback);
     10   },
     11 
     12   getCredentialsForIdentity: function getCredentialsForIdentity(params, callback) {
     13     return this.makeUnauthenticatedRequest('getCredentialsForIdentity', params, callback);
     14   }
     15 });