2
0
mirror of https://github.com/cderche/greenlock-storage-s3 synced 2025-12-25 05:38:40 +00:00
2019-05-08 11:43:08 +01:00

16 lines
532 B
JavaScript

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);
}
});