gl-store-s3.js/node_modules/aws-sdk/lib/services/cognitoidentity.js

16 lines
532 B
JavaScript
Raw Normal View History

2019-05-08 10:43:08 +00:00
var AWS = require('../core');
AWS.util.update(AWS.CognitoIdentity.prototype, {
getOpenIdToken: function getOpenIdToken(params, callback) {
return this.makeUnauthenticatedRequest('getOpenIdToken', params, callback);
},
getId: function getId(params, callback) {
return this.makeUnauthenticatedRequest('getId', params, callback);
},
getCredentialsForIdentity: function getCredentialsForIdentity(params, callback) {
return this.makeUnauthenticatedRequest('getCredentialsForIdentity', params, callback);
}
});