@aws-sdk/client-cognito-identity 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +282 -194
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/CreateIdentityPoolCommand.js +2 -2
- package/dist-es/commands/DeleteIdentitiesCommand.js +2 -2
- package/dist-es/commands/DeleteIdentityPoolCommand.js +2 -2
- package/dist-es/commands/DescribeIdentityCommand.js +2 -2
- package/dist-es/commands/DescribeIdentityPoolCommand.js +2 -2
- package/dist-es/commands/GetCredentialsForIdentityCommand.js +2 -2
- package/dist-es/commands/GetIdCommand.js +2 -2
- package/dist-es/commands/GetIdentityPoolRolesCommand.js +2 -2
- package/dist-es/commands/GetOpenIdTokenCommand.js +2 -2
- package/dist-es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js +2 -2
- package/dist-es/commands/GetPrincipalTagAttributeMapCommand.js +2 -2
- package/dist-es/commands/ListIdentitiesCommand.js +2 -2
- package/dist-es/commands/ListIdentityPoolsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/LookupDeveloperIdentityCommand.js +2 -2
- package/dist-es/commands/MergeDeveloperIdentitiesCommand.js +2 -2
- package/dist-es/commands/SetIdentityPoolRolesCommand.js +2 -2
- package/dist-es/commands/SetPrincipalTagAttributeMapCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UnlinkDeveloperIdentityCommand.js +2 -2
- package/dist-es/commands/UnlinkIdentityCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateIdentityPoolCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +159 -152
- package/dist-types/CognitoIdentityClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +82 -103
- package/dist-types/ts3.4/CognitoIdentityClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +81 -105
- package/package.json +35 -35
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class CognitoIdentityClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class CognitoIdentityServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, CognitoIdentityServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class InternalErrorException extends CognitoIdentityServiceException {
|
|
121
121
|
name = "InternalErrorException";
|
|
122
122
|
$fault = "server";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let InternalErrorException$1 = class InternalErrorException extends CognitoIdent
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class InvalidParameterException extends CognitoIdentityServiceException {
|
|
133
133
|
name = "InvalidParameterException";
|
|
134
134
|
$fault = "client";
|
|
135
135
|
constructor(opts) {
|
|
@@ -140,8 +140,8 @@ let InvalidParameterException$1 = class InvalidParameterException extends Cognit
|
|
|
140
140
|
});
|
|
141
141
|
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
142
142
|
}
|
|
143
|
-
}
|
|
144
|
-
|
|
143
|
+
}
|
|
144
|
+
class LimitExceededException extends CognitoIdentityServiceException {
|
|
145
145
|
name = "LimitExceededException";
|
|
146
146
|
$fault = "client";
|
|
147
147
|
constructor(opts) {
|
|
@@ -152,8 +152,8 @@ let LimitExceededException$1 = class LimitExceededException extends CognitoIdent
|
|
|
152
152
|
});
|
|
153
153
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
154
154
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
155
|
+
}
|
|
156
|
+
class NotAuthorizedException extends CognitoIdentityServiceException {
|
|
157
157
|
name = "NotAuthorizedException";
|
|
158
158
|
$fault = "client";
|
|
159
159
|
constructor(opts) {
|
|
@@ -164,8 +164,8 @@ let NotAuthorizedException$1 = class NotAuthorizedException extends CognitoIdent
|
|
|
164
164
|
});
|
|
165
165
|
Object.setPrototypeOf(this, NotAuthorizedException.prototype);
|
|
166
166
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
167
|
+
}
|
|
168
|
+
class ResourceConflictException extends CognitoIdentityServiceException {
|
|
169
169
|
name = "ResourceConflictException";
|
|
170
170
|
$fault = "client";
|
|
171
171
|
constructor(opts) {
|
|
@@ -176,8 +176,8 @@ let ResourceConflictException$1 = class ResourceConflictException extends Cognit
|
|
|
176
176
|
});
|
|
177
177
|
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
178
178
|
}
|
|
179
|
-
}
|
|
180
|
-
|
|
179
|
+
}
|
|
180
|
+
class TooManyRequestsException extends CognitoIdentityServiceException {
|
|
181
181
|
name = "TooManyRequestsException";
|
|
182
182
|
$fault = "client";
|
|
183
183
|
constructor(opts) {
|
|
@@ -188,8 +188,8 @@ let TooManyRequestsException$1 = class TooManyRequestsException extends CognitoI
|
|
|
188
188
|
});
|
|
189
189
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
190
190
|
}
|
|
191
|
-
}
|
|
192
|
-
|
|
191
|
+
}
|
|
192
|
+
class ResourceNotFoundException extends CognitoIdentityServiceException {
|
|
193
193
|
name = "ResourceNotFoundException";
|
|
194
194
|
$fault = "client";
|
|
195
195
|
constructor(opts) {
|
|
@@ -200,8 +200,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Cognit
|
|
|
200
200
|
});
|
|
201
201
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
202
202
|
}
|
|
203
|
-
}
|
|
204
|
-
|
|
203
|
+
}
|
|
204
|
+
class ExternalServiceException extends CognitoIdentityServiceException {
|
|
205
205
|
name = "ExternalServiceException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
constructor(opts) {
|
|
@@ -212,8 +212,8 @@ let ExternalServiceException$1 = class ExternalServiceException extends CognitoI
|
|
|
212
212
|
});
|
|
213
213
|
Object.setPrototypeOf(this, ExternalServiceException.prototype);
|
|
214
214
|
}
|
|
215
|
-
}
|
|
216
|
-
|
|
215
|
+
}
|
|
216
|
+
class InvalidIdentityPoolConfigurationException extends CognitoIdentityServiceException {
|
|
217
217
|
name = "InvalidIdentityPoolConfigurationException";
|
|
218
218
|
$fault = "client";
|
|
219
219
|
constructor(opts) {
|
|
@@ -224,8 +224,8 @@ let InvalidIdentityPoolConfigurationException$1 = class InvalidIdentityPoolConfi
|
|
|
224
224
|
});
|
|
225
225
|
Object.setPrototypeOf(this, InvalidIdentityPoolConfigurationException.prototype);
|
|
226
226
|
}
|
|
227
|
-
}
|
|
228
|
-
|
|
227
|
+
}
|
|
228
|
+
class DeveloperUserAlreadyRegisteredException extends CognitoIdentityServiceException {
|
|
229
229
|
name = "DeveloperUserAlreadyRegisteredException";
|
|
230
230
|
$fault = "client";
|
|
231
231
|
constructor(opts) {
|
|
@@ -236,8 +236,8 @@ let DeveloperUserAlreadyRegisteredException$1 = class DeveloperUserAlreadyRegist
|
|
|
236
236
|
});
|
|
237
237
|
Object.setPrototypeOf(this, DeveloperUserAlreadyRegisteredException.prototype);
|
|
238
238
|
}
|
|
239
|
-
}
|
|
240
|
-
|
|
239
|
+
}
|
|
240
|
+
class ConcurrentModificationException extends CognitoIdentityServiceException {
|
|
241
241
|
name = "ConcurrentModificationException";
|
|
242
242
|
$fault = "client";
|
|
243
243
|
constructor(opts) {
|
|
@@ -248,7 +248,7 @@ let ConcurrentModificationException$1 = class ConcurrentModificationException ex
|
|
|
248
248
|
});
|
|
249
249
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
250
250
|
}
|
|
251
|
-
}
|
|
251
|
+
}
|
|
252
252
|
|
|
253
253
|
const _ACF = "AllowClassicFlow";
|
|
254
254
|
const _AI = "AccountId";
|
|
@@ -404,10 +404,10 @@ const n0 = "com.amazonaws.cognitoidentity";
|
|
|
404
404
|
var IdentityProviderToken = [0, n0, _IPT, 8, 0];
|
|
405
405
|
var OIDCToken = [0, n0, _OIDCT, 8, 0];
|
|
406
406
|
var SecretKeyString = [0, n0, _SKS, 8, 0];
|
|
407
|
-
var CognitoIdentityProvider = [3, n0, _CIP, 0, [_PN, _CI, _SSTC], [0, 0, 2]];
|
|
408
|
-
var ConcurrentModificationException = [-3, n0, _CME, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
409
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException
|
|
410
|
-
var CreateIdentityPoolInput = [
|
|
407
|
+
var CognitoIdentityProvider$ = [3, n0, _CIP, 0, [_PN, _CI, _SSTC], [0, 0, 2]];
|
|
408
|
+
var ConcurrentModificationException$ = [-3, n0, _CME, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
409
|
+
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
410
|
+
var CreateIdentityPoolInput$ = [
|
|
411
411
|
3,
|
|
412
412
|
n0,
|
|
413
413
|
_CIPI,
|
|
@@ -415,7 +415,7 @@ var CreateIdentityPoolInput = [
|
|
|
415
415
|
[_IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
|
|
416
416
|
[0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0],
|
|
417
417
|
];
|
|
418
|
-
var Credentials = [
|
|
418
|
+
var Credentials$ = [
|
|
419
419
|
3,
|
|
420
420
|
n0,
|
|
421
421
|
_C,
|
|
@@ -423,8 +423,8 @@ var Credentials = [
|
|
|
423
423
|
[_AKI, _SK, _ST, _E],
|
|
424
424
|
[0, [() => SecretKeyString, 0], 0, 4],
|
|
425
425
|
];
|
|
426
|
-
var DeleteIdentitiesInput = [3, n0, _DII, 0, [_IITD], [64 | 0]];
|
|
427
|
-
var DeleteIdentitiesResponse = [
|
|
426
|
+
var DeleteIdentitiesInput$ = [3, n0, _DII, 0, [_IITD], [64 | 0]];
|
|
427
|
+
var DeleteIdentitiesResponse$ = [
|
|
428
428
|
3,
|
|
429
429
|
n0,
|
|
430
430
|
_DIR,
|
|
@@ -432,10 +432,10 @@ var DeleteIdentitiesResponse = [
|
|
|
432
432
|
[_UII],
|
|
433
433
|
[() => UnprocessedIdentityIdList],
|
|
434
434
|
];
|
|
435
|
-
var DeleteIdentityPoolInput = [3, n0, _DIPI, 0, [_IPI], [0]];
|
|
436
|
-
var DescribeIdentityInput = [3, n0, _DIIe, 0, [_II], [0]];
|
|
437
|
-
var DescribeIdentityPoolInput = [3, n0, _DIPIe, 0, [_IPI], [0]];
|
|
438
|
-
var DeveloperUserAlreadyRegisteredException = [
|
|
435
|
+
var DeleteIdentityPoolInput$ = [3, n0, _DIPI, 0, [_IPI], [0]];
|
|
436
|
+
var DescribeIdentityInput$ = [3, n0, _DIIe, 0, [_II], [0]];
|
|
437
|
+
var DescribeIdentityPoolInput$ = [3, n0, _DIPIe, 0, [_IPI], [0]];
|
|
438
|
+
var DeveloperUserAlreadyRegisteredException$ = [
|
|
439
439
|
-3,
|
|
440
440
|
n0,
|
|
441
441
|
_DUARE,
|
|
@@ -443,10 +443,10 @@ var DeveloperUserAlreadyRegisteredException = [
|
|
|
443
443
|
[_m],
|
|
444
444
|
[0],
|
|
445
445
|
];
|
|
446
|
-
schema.TypeRegistry.for(n0).registerError(DeveloperUserAlreadyRegisteredException
|
|
447
|
-
var ExternalServiceException = [-3, n0, _ESE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
448
|
-
schema.TypeRegistry.for(n0).registerError(ExternalServiceException
|
|
449
|
-
var GetCredentialsForIdentityInput = [
|
|
446
|
+
schema.TypeRegistry.for(n0).registerError(DeveloperUserAlreadyRegisteredException$, DeveloperUserAlreadyRegisteredException);
|
|
447
|
+
var ExternalServiceException$ = [-3, n0, _ESE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
448
|
+
schema.TypeRegistry.for(n0).registerError(ExternalServiceException$, ExternalServiceException);
|
|
449
|
+
var GetCredentialsForIdentityInput$ = [
|
|
450
450
|
3,
|
|
451
451
|
n0,
|
|
452
452
|
_GCFII,
|
|
@@ -454,16 +454,16 @@ var GetCredentialsForIdentityInput = [
|
|
|
454
454
|
[_II, _L, _CRA],
|
|
455
455
|
[0, [() => LoginsMap, 0], 0],
|
|
456
456
|
];
|
|
457
|
-
var GetCredentialsForIdentityResponse = [
|
|
457
|
+
var GetCredentialsForIdentityResponse$ = [
|
|
458
458
|
3,
|
|
459
459
|
n0,
|
|
460
460
|
_GCFIR,
|
|
461
461
|
0,
|
|
462
462
|
[_II, _C],
|
|
463
|
-
[0, [() => Credentials
|
|
463
|
+
[0, [() => Credentials$, 0]],
|
|
464
464
|
];
|
|
465
|
-
var GetIdentityPoolRolesInput = [3, n0, _GIPRI, 0, [_IPI], [0]];
|
|
466
|
-
var GetIdentityPoolRolesResponse = [
|
|
465
|
+
var GetIdentityPoolRolesInput$ = [3, n0, _GIPRI, 0, [_IPI], [0]];
|
|
466
|
+
var GetIdentityPoolRolesResponse$ = [
|
|
467
467
|
3,
|
|
468
468
|
n0,
|
|
469
469
|
_GIPRR,
|
|
@@ -471,9 +471,9 @@ var GetIdentityPoolRolesResponse = [
|
|
|
471
471
|
[_IPI, _R, _RM],
|
|
472
472
|
[0, 128 | 0, () => RoleMappingMap],
|
|
473
473
|
];
|
|
474
|
-
var GetIdInput = [3, n0, _GII, 0, [_AI, _IPI, _L], [0, 0, [() => LoginsMap, 0]]];
|
|
475
|
-
var GetIdResponse = [3, n0, _GIR, 0, [_II], [0]];
|
|
476
|
-
var GetOpenIdTokenForDeveloperIdentityInput = [
|
|
474
|
+
var GetIdInput$ = [3, n0, _GII, 0, [_AI, _IPI, _L], [0, 0, [() => LoginsMap, 0]]];
|
|
475
|
+
var GetIdResponse$ = [3, n0, _GIR, 0, [_II], [0]];
|
|
476
|
+
var GetOpenIdTokenForDeveloperIdentityInput$ = [
|
|
477
477
|
3,
|
|
478
478
|
n0,
|
|
479
479
|
_GOITFDII,
|
|
@@ -481,7 +481,7 @@ var GetOpenIdTokenForDeveloperIdentityInput = [
|
|
|
481
481
|
[_IPI, _II, _L, _PT, _TD],
|
|
482
482
|
[0, 0, [() => LoginsMap, 0], 128 | 0, 1],
|
|
483
483
|
];
|
|
484
|
-
var GetOpenIdTokenForDeveloperIdentityResponse = [
|
|
484
|
+
var GetOpenIdTokenForDeveloperIdentityResponse$ = [
|
|
485
485
|
3,
|
|
486
486
|
n0,
|
|
487
487
|
_GOITFDIR,
|
|
@@ -489,10 +489,10 @@ var GetOpenIdTokenForDeveloperIdentityResponse = [
|
|
|
489
489
|
[_II, _T],
|
|
490
490
|
[0, [() => OIDCToken, 0]],
|
|
491
491
|
];
|
|
492
|
-
var GetOpenIdTokenInput = [3, n0, _GOITI, 0, [_II, _L], [0, [() => LoginsMap, 0]]];
|
|
493
|
-
var GetOpenIdTokenResponse = [3, n0, _GOITR, 0, [_II, _T], [0, [() => OIDCToken, 0]]];
|
|
494
|
-
var GetPrincipalTagAttributeMapInput = [3, n0, _GPTAMI, 0, [_IPI, _IPNd], [0, 0]];
|
|
495
|
-
var GetPrincipalTagAttributeMapResponse = [
|
|
492
|
+
var GetOpenIdTokenInput$ = [3, n0, _GOITI, 0, [_II, _L], [0, [() => LoginsMap, 0]]];
|
|
493
|
+
var GetOpenIdTokenResponse$ = [3, n0, _GOITR, 0, [_II, _T], [0, [() => OIDCToken, 0]]];
|
|
494
|
+
var GetPrincipalTagAttributeMapInput$ = [3, n0, _GPTAMI, 0, [_IPI, _IPNd], [0, 0]];
|
|
495
|
+
var GetPrincipalTagAttributeMapResponse$ = [
|
|
496
496
|
3,
|
|
497
497
|
n0,
|
|
498
498
|
_GPTAMR,
|
|
@@ -500,8 +500,8 @@ var GetPrincipalTagAttributeMapResponse = [
|
|
|
500
500
|
[_IPI, _IPNd, _UD, _PT],
|
|
501
501
|
[0, 0, 2, 128 | 0],
|
|
502
502
|
];
|
|
503
|
-
var IdentityDescription = [3, n0, _ID, 0, [_II, _L, _CD, _LMD], [0, 64 | 0, 4, 4]];
|
|
504
|
-
var IdentityPool = [
|
|
503
|
+
var IdentityDescription$ = [3, n0, _ID, 0, [_II, _L, _CD, _LMD], [0, 64 | 0, 4, 4]];
|
|
504
|
+
var IdentityPool$ = [
|
|
505
505
|
3,
|
|
506
506
|
n0,
|
|
507
507
|
_IP,
|
|
@@ -509,10 +509,10 @@ var IdentityPool = [
|
|
|
509
509
|
[_IPI, _IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
|
|
510
510
|
[0, 0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0],
|
|
511
511
|
];
|
|
512
|
-
var IdentityPoolShortDescription = [3, n0, _IPSD, 0, [_IPI, _IPN], [0, 0]];
|
|
513
|
-
var InternalErrorException = [-3, n0, _IEE, { [_e]: _s }, [_m], [0]];
|
|
514
|
-
schema.TypeRegistry.for(n0).registerError(InternalErrorException
|
|
515
|
-
var InvalidIdentityPoolConfigurationException = [
|
|
512
|
+
var IdentityPoolShortDescription$ = [3, n0, _IPSD, 0, [_IPI, _IPN], [0, 0]];
|
|
513
|
+
var InternalErrorException$ = [-3, n0, _IEE, { [_e]: _s }, [_m], [0]];
|
|
514
|
+
schema.TypeRegistry.for(n0).registerError(InternalErrorException$, InternalErrorException);
|
|
515
|
+
var InvalidIdentityPoolConfigurationException$ = [
|
|
516
516
|
-3,
|
|
517
517
|
n0,
|
|
518
518
|
_IIPCE,
|
|
@@ -520,13 +520,13 @@ var InvalidIdentityPoolConfigurationException = [
|
|
|
520
520
|
[_m],
|
|
521
521
|
[0],
|
|
522
522
|
];
|
|
523
|
-
schema.TypeRegistry.for(n0).registerError(InvalidIdentityPoolConfigurationException
|
|
524
|
-
var InvalidParameterException = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
525
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException
|
|
526
|
-
var LimitExceededException = [-3, n0, _LEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
527
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException
|
|
528
|
-
var ListIdentitiesInput = [3, n0, _LII, 0, [_IPI, _MR, _NT, _HD], [0, 1, 0, 2]];
|
|
529
|
-
var ListIdentitiesResponse = [
|
|
523
|
+
schema.TypeRegistry.for(n0).registerError(InvalidIdentityPoolConfigurationException$, InvalidIdentityPoolConfigurationException);
|
|
524
|
+
var InvalidParameterException$ = [-3, n0, _IPE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
525
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
526
|
+
var LimitExceededException$ = [-3, n0, _LEE, { [_e]: _c, [_hE]: 400 }, [_m], [0]];
|
|
527
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
528
|
+
var ListIdentitiesInput$ = [3, n0, _LII, 0, [_IPI, _MR, _NT, _HD], [0, 1, 0, 2]];
|
|
529
|
+
var ListIdentitiesResponse$ = [
|
|
530
530
|
3,
|
|
531
531
|
n0,
|
|
532
532
|
_LIR,
|
|
@@ -534,8 +534,8 @@ var ListIdentitiesResponse = [
|
|
|
534
534
|
[_IPI, _I, _NT],
|
|
535
535
|
[0, () => IdentitiesList, 0],
|
|
536
536
|
];
|
|
537
|
-
var ListIdentityPoolsInput = [3, n0, _LIPI, 0, [_MR, _NT], [1, 0]];
|
|
538
|
-
var ListIdentityPoolsResponse = [
|
|
537
|
+
var ListIdentityPoolsInput$ = [3, n0, _LIPI, 0, [_MR, _NT], [1, 0]];
|
|
538
|
+
var ListIdentityPoolsResponse$ = [
|
|
539
539
|
3,
|
|
540
540
|
n0,
|
|
541
541
|
_LIPR,
|
|
@@ -543,9 +543,9 @@ var ListIdentityPoolsResponse = [
|
|
|
543
543
|
[_IPd, _NT],
|
|
544
544
|
[() => IdentityPoolsList, 0],
|
|
545
545
|
];
|
|
546
|
-
var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA], [0]];
|
|
547
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRR, 0, [_Ta], [128 | 0]];
|
|
548
|
-
var LookupDeveloperIdentityInput = [
|
|
546
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI, 0, [_RA], [0]];
|
|
547
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRR, 0, [_Ta], [128 | 0]];
|
|
548
|
+
var LookupDeveloperIdentityInput$ = [
|
|
549
549
|
3,
|
|
550
550
|
n0,
|
|
551
551
|
_LDII,
|
|
@@ -553,7 +553,7 @@ var LookupDeveloperIdentityInput = [
|
|
|
553
553
|
[_IPI, _II, _DUI, _MR, _NT],
|
|
554
554
|
[0, 0, 0, 1, 0],
|
|
555
555
|
];
|
|
556
|
-
var LookupDeveloperIdentityResponse = [
|
|
556
|
+
var LookupDeveloperIdentityResponse$ = [
|
|
557
557
|
3,
|
|
558
558
|
n0,
|
|
559
559
|
_LDIR,
|
|
@@ -561,8 +561,8 @@ var LookupDeveloperIdentityResponse = [
|
|
|
561
561
|
[_II, _DUIL, _NT],
|
|
562
562
|
[0, 64 | 0, 0],
|
|
563
563
|
];
|
|
564
|
-
var MappingRule = [3, n0, _MRa, 0, [_Cl, _MT, _V, _RARN], [0, 0, 0, 0]];
|
|
565
|
-
var MergeDeveloperIdentitiesInput = [
|
|
564
|
+
var MappingRule$ = [3, n0, _MRa, 0, [_Cl, _MT, _V, _RARN], [0, 0, 0, 0]];
|
|
565
|
+
var MergeDeveloperIdentitiesInput$ = [
|
|
566
566
|
3,
|
|
567
567
|
n0,
|
|
568
568
|
_MDII,
|
|
@@ -570,23 +570,23 @@ var MergeDeveloperIdentitiesInput = [
|
|
|
570
570
|
[_SUI, _DUIe, _DPN, _IPI],
|
|
571
571
|
[0, 0, 0, 0],
|
|
572
572
|
];
|
|
573
|
-
var MergeDeveloperIdentitiesResponse = [3, n0, _MDIR, 0, [_II], [0]];
|
|
574
|
-
var NotAuthorizedException = [-3, n0, _NAE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
575
|
-
schema.TypeRegistry.for(n0).registerError(NotAuthorizedException
|
|
576
|
-
var ResourceConflictException = [-3, n0, _RCE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
577
|
-
schema.TypeRegistry.for(n0).registerError(ResourceConflictException
|
|
578
|
-
var ResourceNotFoundException = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
579
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
580
|
-
var RoleMapping = [
|
|
573
|
+
var MergeDeveloperIdentitiesResponse$ = [3, n0, _MDIR, 0, [_II], [0]];
|
|
574
|
+
var NotAuthorizedException$ = [-3, n0, _NAE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
575
|
+
schema.TypeRegistry.for(n0).registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
576
|
+
var ResourceConflictException$ = [-3, n0, _RCE, { [_e]: _c, [_hE]: 409 }, [_m], [0]];
|
|
577
|
+
schema.TypeRegistry.for(n0).registerError(ResourceConflictException$, ResourceConflictException);
|
|
578
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE, { [_e]: _c, [_hE]: 404 }, [_m], [0]];
|
|
579
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
580
|
+
var RoleMapping$ = [
|
|
581
581
|
3,
|
|
582
582
|
n0,
|
|
583
583
|
_RMo,
|
|
584
584
|
0,
|
|
585
585
|
[_Ty, _ARR, _RC],
|
|
586
|
-
[0, 0, () => RulesConfigurationType],
|
|
586
|
+
[0, 0, () => RulesConfigurationType$],
|
|
587
587
|
];
|
|
588
|
-
var RulesConfigurationType = [3, n0, _RCT, 0, [_Ru], [() => MappingRulesList]];
|
|
589
|
-
var SetIdentityPoolRolesInput = [
|
|
588
|
+
var RulesConfigurationType$ = [3, n0, _RCT, 0, [_Ru], [() => MappingRulesList]];
|
|
589
|
+
var SetIdentityPoolRolesInput$ = [
|
|
590
590
|
3,
|
|
591
591
|
n0,
|
|
592
592
|
_SIPRI,
|
|
@@ -594,7 +594,7 @@ var SetIdentityPoolRolesInput = [
|
|
|
594
594
|
[_IPI, _R, _RM],
|
|
595
595
|
[0, 128 | 0, () => RoleMappingMap],
|
|
596
596
|
];
|
|
597
|
-
var SetPrincipalTagAttributeMapInput = [
|
|
597
|
+
var SetPrincipalTagAttributeMapInput$ = [
|
|
598
598
|
3,
|
|
599
599
|
n0,
|
|
600
600
|
_SPTAMI,
|
|
@@ -602,7 +602,7 @@ var SetPrincipalTagAttributeMapInput = [
|
|
|
602
602
|
[_IPI, _IPNd, _UD, _PT],
|
|
603
603
|
[0, 0, 2, 128 | 0],
|
|
604
604
|
];
|
|
605
|
-
var SetPrincipalTagAttributeMapResponse = [
|
|
605
|
+
var SetPrincipalTagAttributeMapResponse$ = [
|
|
606
606
|
3,
|
|
607
607
|
n0,
|
|
608
608
|
_SPTAMR,
|
|
@@ -610,11 +610,11 @@ var SetPrincipalTagAttributeMapResponse = [
|
|
|
610
610
|
[_IPI, _IPNd, _UD, _PT],
|
|
611
611
|
[0, 0, 2, 128 | 0],
|
|
612
612
|
];
|
|
613
|
-
var TagResourceInput = [3, n0, _TRI, 0, [_RA, _Ta], [0, 128 | 0]];
|
|
614
|
-
var TagResourceResponse = [3, n0, _TRR, 0, [], []];
|
|
615
|
-
var TooManyRequestsException = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
616
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException
|
|
617
|
-
var UnlinkDeveloperIdentityInput = [
|
|
613
|
+
var TagResourceInput$ = [3, n0, _TRI, 0, [_RA, _Ta], [0, 128 | 0]];
|
|
614
|
+
var TagResourceResponse$ = [3, n0, _TRR, 0, [], []];
|
|
615
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE, { [_e]: _c, [_hE]: 429 }, [_m], [0]];
|
|
616
|
+
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
617
|
+
var UnlinkDeveloperIdentityInput$ = [
|
|
618
618
|
3,
|
|
619
619
|
n0,
|
|
620
620
|
_UDII,
|
|
@@ -622,7 +622,7 @@ var UnlinkDeveloperIdentityInput = [
|
|
|
622
622
|
[_II, _IPI, _DPN, _DUI],
|
|
623
623
|
[0, 0, 0, 0],
|
|
624
624
|
];
|
|
625
|
-
var UnlinkIdentityInput = [
|
|
625
|
+
var UnlinkIdentityInput$ = [
|
|
626
626
|
3,
|
|
627
627
|
n0,
|
|
628
628
|
_UIIn,
|
|
@@ -630,168 +630,175 @@ var UnlinkIdentityInput = [
|
|
|
630
630
|
[_II, _L, _LTR],
|
|
631
631
|
[0, [() => LoginsMap, 0], 64 | 0],
|
|
632
632
|
];
|
|
633
|
-
var UnprocessedIdentityId = [3, n0, _UIInp, 0, [_II, _EC], [0, 0]];
|
|
634
|
-
var UntagResourceInput = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
635
|
-
var UntagResourceResponse = [3, n0, _URR, 0, [], []];
|
|
633
|
+
var UnprocessedIdentityId$ = [3, n0, _UIInp, 0, [_II, _EC], [0, 0]];
|
|
634
|
+
var UntagResourceInput$ = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
|
|
635
|
+
var UntagResourceResponse$ = [3, n0, _URR, 0, [], []];
|
|
636
636
|
var __Unit = "unit";
|
|
637
|
-
var CognitoIdentityServiceException = [
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
637
|
+
var CognitoIdentityServiceException$ = [
|
|
638
|
+
-3,
|
|
639
|
+
_sm,
|
|
640
|
+
"CognitoIdentityServiceException",
|
|
641
|
+
0,
|
|
642
|
+
[],
|
|
643
|
+
[],
|
|
644
|
+
];
|
|
645
|
+
schema.TypeRegistry.for(_sm).registerError(CognitoIdentityServiceException$, CognitoIdentityServiceException);
|
|
646
|
+
var CognitoIdentityProviderList = [1, n0, _CIPL, 0, () => CognitoIdentityProvider$];
|
|
647
|
+
var IdentitiesList = [1, n0, _IL, 0, () => IdentityDescription$];
|
|
648
|
+
var IdentityPoolsList = [1, n0, _IPL, 0, () => IdentityPoolShortDescription$];
|
|
649
|
+
var MappingRulesList = [1, n0, _MRL, 0, () => MappingRule$];
|
|
650
|
+
var UnprocessedIdentityIdList = [1, n0, _UIIL, 0, () => UnprocessedIdentityId$];
|
|
644
651
|
var LoginsMap = [2, n0, _LM, 0, [0, 0], [() => IdentityProviderToken, 0]];
|
|
645
|
-
var RoleMappingMap = [2, n0, _RMM, 0, 0, () => RoleMapping];
|
|
646
|
-
var CreateIdentityPool = [
|
|
652
|
+
var RoleMappingMap = [2, n0, _RMM, 0, 0, () => RoleMapping$];
|
|
653
|
+
var CreateIdentityPool$ = [
|
|
647
654
|
9,
|
|
648
655
|
n0,
|
|
649
656
|
_CIPr,
|
|
650
657
|
0,
|
|
651
|
-
() => CreateIdentityPoolInput
|
|
652
|
-
() => IdentityPool
|
|
658
|
+
() => CreateIdentityPoolInput$,
|
|
659
|
+
() => IdentityPool$,
|
|
653
660
|
];
|
|
654
|
-
var DeleteIdentities = [
|
|
661
|
+
var DeleteIdentities$ = [
|
|
655
662
|
9,
|
|
656
663
|
n0,
|
|
657
664
|
_DI,
|
|
658
665
|
0,
|
|
659
|
-
() => DeleteIdentitiesInput
|
|
660
|
-
() => DeleteIdentitiesResponse
|
|
666
|
+
() => DeleteIdentitiesInput$,
|
|
667
|
+
() => DeleteIdentitiesResponse$,
|
|
661
668
|
];
|
|
662
|
-
var DeleteIdentityPool = [9, n0, _DIP, 0, () => DeleteIdentityPoolInput
|
|
663
|
-
var DescribeIdentity = [
|
|
669
|
+
var DeleteIdentityPool$ = [9, n0, _DIP, 0, () => DeleteIdentityPoolInput$, () => __Unit];
|
|
670
|
+
var DescribeIdentity$ = [
|
|
664
671
|
9,
|
|
665
672
|
n0,
|
|
666
673
|
_DIe,
|
|
667
674
|
0,
|
|
668
|
-
() => DescribeIdentityInput
|
|
669
|
-
() => IdentityDescription
|
|
675
|
+
() => DescribeIdentityInput$,
|
|
676
|
+
() => IdentityDescription$,
|
|
670
677
|
];
|
|
671
|
-
var DescribeIdentityPool = [
|
|
678
|
+
var DescribeIdentityPool$ = [
|
|
672
679
|
9,
|
|
673
680
|
n0,
|
|
674
681
|
_DIPe,
|
|
675
682
|
0,
|
|
676
|
-
() => DescribeIdentityPoolInput
|
|
677
|
-
() => IdentityPool
|
|
683
|
+
() => DescribeIdentityPoolInput$,
|
|
684
|
+
() => IdentityPool$,
|
|
678
685
|
];
|
|
679
|
-
var GetCredentialsForIdentity = [
|
|
686
|
+
var GetCredentialsForIdentity$ = [
|
|
680
687
|
9,
|
|
681
688
|
n0,
|
|
682
689
|
_GCFI,
|
|
683
690
|
0,
|
|
684
|
-
() => GetCredentialsForIdentityInput
|
|
685
|
-
() => GetCredentialsForIdentityResponse
|
|
691
|
+
() => GetCredentialsForIdentityInput$,
|
|
692
|
+
() => GetCredentialsForIdentityResponse$,
|
|
686
693
|
];
|
|
687
|
-
var GetId = [9, n0, _GI, 0, () => GetIdInput
|
|
688
|
-
var GetIdentityPoolRoles = [
|
|
694
|
+
var GetId$ = [9, n0, _GI, 0, () => GetIdInput$, () => GetIdResponse$];
|
|
695
|
+
var GetIdentityPoolRoles$ = [
|
|
689
696
|
9,
|
|
690
697
|
n0,
|
|
691
698
|
_GIPR,
|
|
692
699
|
0,
|
|
693
|
-
() => GetIdentityPoolRolesInput
|
|
694
|
-
() => GetIdentityPoolRolesResponse
|
|
700
|
+
() => GetIdentityPoolRolesInput$,
|
|
701
|
+
() => GetIdentityPoolRolesResponse$,
|
|
695
702
|
];
|
|
696
|
-
var GetOpenIdToken = [
|
|
703
|
+
var GetOpenIdToken$ = [
|
|
697
704
|
9,
|
|
698
705
|
n0,
|
|
699
706
|
_GOIT,
|
|
700
707
|
0,
|
|
701
|
-
() => GetOpenIdTokenInput
|
|
702
|
-
() => GetOpenIdTokenResponse
|
|
708
|
+
() => GetOpenIdTokenInput$,
|
|
709
|
+
() => GetOpenIdTokenResponse$,
|
|
703
710
|
];
|
|
704
|
-
var GetOpenIdTokenForDeveloperIdentity = [
|
|
711
|
+
var GetOpenIdTokenForDeveloperIdentity$ = [
|
|
705
712
|
9,
|
|
706
713
|
n0,
|
|
707
714
|
_GOITFDI,
|
|
708
715
|
0,
|
|
709
|
-
() => GetOpenIdTokenForDeveloperIdentityInput
|
|
710
|
-
() => GetOpenIdTokenForDeveloperIdentityResponse
|
|
716
|
+
() => GetOpenIdTokenForDeveloperIdentityInput$,
|
|
717
|
+
() => GetOpenIdTokenForDeveloperIdentityResponse$,
|
|
711
718
|
];
|
|
712
|
-
var GetPrincipalTagAttributeMap = [
|
|
719
|
+
var GetPrincipalTagAttributeMap$ = [
|
|
713
720
|
9,
|
|
714
721
|
n0,
|
|
715
722
|
_GPTAM,
|
|
716
723
|
0,
|
|
717
|
-
() => GetPrincipalTagAttributeMapInput
|
|
718
|
-
() => GetPrincipalTagAttributeMapResponse
|
|
724
|
+
() => GetPrincipalTagAttributeMapInput$,
|
|
725
|
+
() => GetPrincipalTagAttributeMapResponse$,
|
|
719
726
|
];
|
|
720
|
-
var ListIdentities = [
|
|
727
|
+
var ListIdentities$ = [
|
|
721
728
|
9,
|
|
722
729
|
n0,
|
|
723
730
|
_LI,
|
|
724
731
|
0,
|
|
725
|
-
() => ListIdentitiesInput
|
|
726
|
-
() => ListIdentitiesResponse
|
|
732
|
+
() => ListIdentitiesInput$,
|
|
733
|
+
() => ListIdentitiesResponse$,
|
|
727
734
|
];
|
|
728
|
-
var ListIdentityPools = [
|
|
735
|
+
var ListIdentityPools$ = [
|
|
729
736
|
9,
|
|
730
737
|
n0,
|
|
731
738
|
_LIP,
|
|
732
739
|
0,
|
|
733
|
-
() => ListIdentityPoolsInput
|
|
734
|
-
() => ListIdentityPoolsResponse
|
|
740
|
+
() => ListIdentityPoolsInput$,
|
|
741
|
+
() => ListIdentityPoolsResponse$,
|
|
735
742
|
];
|
|
736
|
-
var ListTagsForResource = [
|
|
743
|
+
var ListTagsForResource$ = [
|
|
737
744
|
9,
|
|
738
745
|
n0,
|
|
739
746
|
_LTFR,
|
|
740
747
|
0,
|
|
741
|
-
() => ListTagsForResourceInput
|
|
742
|
-
() => ListTagsForResourceResponse
|
|
748
|
+
() => ListTagsForResourceInput$,
|
|
749
|
+
() => ListTagsForResourceResponse$,
|
|
743
750
|
];
|
|
744
|
-
var LookupDeveloperIdentity = [
|
|
751
|
+
var LookupDeveloperIdentity$ = [
|
|
745
752
|
9,
|
|
746
753
|
n0,
|
|
747
754
|
_LDI,
|
|
748
755
|
0,
|
|
749
|
-
() => LookupDeveloperIdentityInput
|
|
750
|
-
() => LookupDeveloperIdentityResponse
|
|
756
|
+
() => LookupDeveloperIdentityInput$,
|
|
757
|
+
() => LookupDeveloperIdentityResponse$,
|
|
751
758
|
];
|
|
752
|
-
var MergeDeveloperIdentities = [
|
|
759
|
+
var MergeDeveloperIdentities$ = [
|
|
753
760
|
9,
|
|
754
761
|
n0,
|
|
755
762
|
_MDI,
|
|
756
763
|
0,
|
|
757
|
-
() => MergeDeveloperIdentitiesInput
|
|
758
|
-
() => MergeDeveloperIdentitiesResponse
|
|
764
|
+
() => MergeDeveloperIdentitiesInput$,
|
|
765
|
+
() => MergeDeveloperIdentitiesResponse$,
|
|
759
766
|
];
|
|
760
|
-
var SetIdentityPoolRoles = [
|
|
767
|
+
var SetIdentityPoolRoles$ = [
|
|
761
768
|
9,
|
|
762
769
|
n0,
|
|
763
770
|
_SIPR,
|
|
764
771
|
0,
|
|
765
|
-
() => SetIdentityPoolRolesInput
|
|
772
|
+
() => SetIdentityPoolRolesInput$,
|
|
766
773
|
() => __Unit,
|
|
767
774
|
];
|
|
768
|
-
var SetPrincipalTagAttributeMap = [
|
|
775
|
+
var SetPrincipalTagAttributeMap$ = [
|
|
769
776
|
9,
|
|
770
777
|
n0,
|
|
771
778
|
_SPTAM,
|
|
772
779
|
0,
|
|
773
|
-
() => SetPrincipalTagAttributeMapInput
|
|
774
|
-
() => SetPrincipalTagAttributeMapResponse
|
|
780
|
+
() => SetPrincipalTagAttributeMapInput$,
|
|
781
|
+
() => SetPrincipalTagAttributeMapResponse$,
|
|
775
782
|
];
|
|
776
|
-
var TagResource = [9, n0, _TR, 0, () => TagResourceInput
|
|
777
|
-
var UnlinkDeveloperIdentity = [
|
|
783
|
+
var TagResource$ = [9, n0, _TR, 0, () => TagResourceInput$, () => TagResourceResponse$];
|
|
784
|
+
var UnlinkDeveloperIdentity$ = [
|
|
778
785
|
9,
|
|
779
786
|
n0,
|
|
780
787
|
_UDI,
|
|
781
788
|
0,
|
|
782
|
-
() => UnlinkDeveloperIdentityInput
|
|
789
|
+
() => UnlinkDeveloperIdentityInput$,
|
|
783
790
|
() => __Unit,
|
|
784
791
|
];
|
|
785
|
-
var UnlinkIdentity = [9, n0, _UI, 0, () => UnlinkIdentityInput
|
|
786
|
-
var UntagResource = [
|
|
792
|
+
var UnlinkIdentity$ = [9, n0, _UI, 0, () => UnlinkIdentityInput$, () => __Unit];
|
|
793
|
+
var UntagResource$ = [
|
|
787
794
|
9,
|
|
788
795
|
n0,
|
|
789
796
|
_UR,
|
|
790
797
|
0,
|
|
791
|
-
() => UntagResourceInput
|
|
792
|
-
() => UntagResourceResponse
|
|
798
|
+
() => UntagResourceInput$,
|
|
799
|
+
() => UntagResourceResponse$,
|
|
793
800
|
];
|
|
794
|
-
var UpdateIdentityPool = [9, n0, _UIP, 0, () => IdentityPool
|
|
801
|
+
var UpdateIdentityPool$ = [9, n0, _UIP, 0, () => IdentityPool$, () => IdentityPool$];
|
|
795
802
|
|
|
796
803
|
class CreateIdentityPoolCommand extends smithyClient.Command
|
|
797
804
|
.classBuilder()
|
|
@@ -801,7 +808,7 @@ class CreateIdentityPoolCommand extends smithyClient.Command
|
|
|
801
808
|
})
|
|
802
809
|
.s("AWSCognitoIdentityService", "CreateIdentityPool", {})
|
|
803
810
|
.n("CognitoIdentityClient", "CreateIdentityPoolCommand")
|
|
804
|
-
.sc(CreateIdentityPool)
|
|
811
|
+
.sc(CreateIdentityPool$)
|
|
805
812
|
.build() {
|
|
806
813
|
}
|
|
807
814
|
|
|
@@ -813,7 +820,7 @@ class DeleteIdentitiesCommand extends smithyClient.Command
|
|
|
813
820
|
})
|
|
814
821
|
.s("AWSCognitoIdentityService", "DeleteIdentities", {})
|
|
815
822
|
.n("CognitoIdentityClient", "DeleteIdentitiesCommand")
|
|
816
|
-
.sc(DeleteIdentities)
|
|
823
|
+
.sc(DeleteIdentities$)
|
|
817
824
|
.build() {
|
|
818
825
|
}
|
|
819
826
|
|
|
@@ -825,7 +832,7 @@ class DeleteIdentityPoolCommand extends smithyClient.Command
|
|
|
825
832
|
})
|
|
826
833
|
.s("AWSCognitoIdentityService", "DeleteIdentityPool", {})
|
|
827
834
|
.n("CognitoIdentityClient", "DeleteIdentityPoolCommand")
|
|
828
|
-
.sc(DeleteIdentityPool)
|
|
835
|
+
.sc(DeleteIdentityPool$)
|
|
829
836
|
.build() {
|
|
830
837
|
}
|
|
831
838
|
|
|
@@ -837,7 +844,7 @@ class DescribeIdentityCommand extends smithyClient.Command
|
|
|
837
844
|
})
|
|
838
845
|
.s("AWSCognitoIdentityService", "DescribeIdentity", {})
|
|
839
846
|
.n("CognitoIdentityClient", "DescribeIdentityCommand")
|
|
840
|
-
.sc(DescribeIdentity)
|
|
847
|
+
.sc(DescribeIdentity$)
|
|
841
848
|
.build() {
|
|
842
849
|
}
|
|
843
850
|
|
|
@@ -849,7 +856,7 @@ class DescribeIdentityPoolCommand extends smithyClient.Command
|
|
|
849
856
|
})
|
|
850
857
|
.s("AWSCognitoIdentityService", "DescribeIdentityPool", {})
|
|
851
858
|
.n("CognitoIdentityClient", "DescribeIdentityPoolCommand")
|
|
852
|
-
.sc(DescribeIdentityPool)
|
|
859
|
+
.sc(DescribeIdentityPool$)
|
|
853
860
|
.build() {
|
|
854
861
|
}
|
|
855
862
|
|
|
@@ -861,7 +868,7 @@ class GetCredentialsForIdentityCommand extends smithyClient.Command
|
|
|
861
868
|
})
|
|
862
869
|
.s("AWSCognitoIdentityService", "GetCredentialsForIdentity", {})
|
|
863
870
|
.n("CognitoIdentityClient", "GetCredentialsForIdentityCommand")
|
|
864
|
-
.sc(GetCredentialsForIdentity)
|
|
871
|
+
.sc(GetCredentialsForIdentity$)
|
|
865
872
|
.build() {
|
|
866
873
|
}
|
|
867
874
|
|
|
@@ -873,7 +880,7 @@ class GetIdCommand extends smithyClient.Command
|
|
|
873
880
|
})
|
|
874
881
|
.s("AWSCognitoIdentityService", "GetId", {})
|
|
875
882
|
.n("CognitoIdentityClient", "GetIdCommand")
|
|
876
|
-
.sc(GetId)
|
|
883
|
+
.sc(GetId$)
|
|
877
884
|
.build() {
|
|
878
885
|
}
|
|
879
886
|
|
|
@@ -885,7 +892,7 @@ class GetIdentityPoolRolesCommand extends smithyClient.Command
|
|
|
885
892
|
})
|
|
886
893
|
.s("AWSCognitoIdentityService", "GetIdentityPoolRoles", {})
|
|
887
894
|
.n("CognitoIdentityClient", "GetIdentityPoolRolesCommand")
|
|
888
|
-
.sc(GetIdentityPoolRoles)
|
|
895
|
+
.sc(GetIdentityPoolRoles$)
|
|
889
896
|
.build() {
|
|
890
897
|
}
|
|
891
898
|
|
|
@@ -897,7 +904,7 @@ class GetOpenIdTokenCommand extends smithyClient.Command
|
|
|
897
904
|
})
|
|
898
905
|
.s("AWSCognitoIdentityService", "GetOpenIdToken", {})
|
|
899
906
|
.n("CognitoIdentityClient", "GetOpenIdTokenCommand")
|
|
900
|
-
.sc(GetOpenIdToken)
|
|
907
|
+
.sc(GetOpenIdToken$)
|
|
901
908
|
.build() {
|
|
902
909
|
}
|
|
903
910
|
|
|
@@ -909,7 +916,7 @@ class GetOpenIdTokenForDeveloperIdentityCommand extends smithyClient.Command
|
|
|
909
916
|
})
|
|
910
917
|
.s("AWSCognitoIdentityService", "GetOpenIdTokenForDeveloperIdentity", {})
|
|
911
918
|
.n("CognitoIdentityClient", "GetOpenIdTokenForDeveloperIdentityCommand")
|
|
912
|
-
.sc(GetOpenIdTokenForDeveloperIdentity)
|
|
919
|
+
.sc(GetOpenIdTokenForDeveloperIdentity$)
|
|
913
920
|
.build() {
|
|
914
921
|
}
|
|
915
922
|
|
|
@@ -921,7 +928,7 @@ class GetPrincipalTagAttributeMapCommand extends smithyClient.Command
|
|
|
921
928
|
})
|
|
922
929
|
.s("AWSCognitoIdentityService", "GetPrincipalTagAttributeMap", {})
|
|
923
930
|
.n("CognitoIdentityClient", "GetPrincipalTagAttributeMapCommand")
|
|
924
|
-
.sc(GetPrincipalTagAttributeMap)
|
|
931
|
+
.sc(GetPrincipalTagAttributeMap$)
|
|
925
932
|
.build() {
|
|
926
933
|
}
|
|
927
934
|
|
|
@@ -933,7 +940,7 @@ class ListIdentitiesCommand extends smithyClient.Command
|
|
|
933
940
|
})
|
|
934
941
|
.s("AWSCognitoIdentityService", "ListIdentities", {})
|
|
935
942
|
.n("CognitoIdentityClient", "ListIdentitiesCommand")
|
|
936
|
-
.sc(ListIdentities)
|
|
943
|
+
.sc(ListIdentities$)
|
|
937
944
|
.build() {
|
|
938
945
|
}
|
|
939
946
|
|
|
@@ -945,7 +952,7 @@ class ListIdentityPoolsCommand extends smithyClient.Command
|
|
|
945
952
|
})
|
|
946
953
|
.s("AWSCognitoIdentityService", "ListIdentityPools", {})
|
|
947
954
|
.n("CognitoIdentityClient", "ListIdentityPoolsCommand")
|
|
948
|
-
.sc(ListIdentityPools)
|
|
955
|
+
.sc(ListIdentityPools$)
|
|
949
956
|
.build() {
|
|
950
957
|
}
|
|
951
958
|
|
|
@@ -957,7 +964,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
957
964
|
})
|
|
958
965
|
.s("AWSCognitoIdentityService", "ListTagsForResource", {})
|
|
959
966
|
.n("CognitoIdentityClient", "ListTagsForResourceCommand")
|
|
960
|
-
.sc(ListTagsForResource)
|
|
967
|
+
.sc(ListTagsForResource$)
|
|
961
968
|
.build() {
|
|
962
969
|
}
|
|
963
970
|
|
|
@@ -969,7 +976,7 @@ class LookupDeveloperIdentityCommand extends smithyClient.Command
|
|
|
969
976
|
})
|
|
970
977
|
.s("AWSCognitoIdentityService", "LookupDeveloperIdentity", {})
|
|
971
978
|
.n("CognitoIdentityClient", "LookupDeveloperIdentityCommand")
|
|
972
|
-
.sc(LookupDeveloperIdentity)
|
|
979
|
+
.sc(LookupDeveloperIdentity$)
|
|
973
980
|
.build() {
|
|
974
981
|
}
|
|
975
982
|
|
|
@@ -981,7 +988,7 @@ class MergeDeveloperIdentitiesCommand extends smithyClient.Command
|
|
|
981
988
|
})
|
|
982
989
|
.s("AWSCognitoIdentityService", "MergeDeveloperIdentities", {})
|
|
983
990
|
.n("CognitoIdentityClient", "MergeDeveloperIdentitiesCommand")
|
|
984
|
-
.sc(MergeDeveloperIdentities)
|
|
991
|
+
.sc(MergeDeveloperIdentities$)
|
|
985
992
|
.build() {
|
|
986
993
|
}
|
|
987
994
|
|
|
@@ -993,7 +1000,7 @@ class SetIdentityPoolRolesCommand extends smithyClient.Command
|
|
|
993
1000
|
})
|
|
994
1001
|
.s("AWSCognitoIdentityService", "SetIdentityPoolRoles", {})
|
|
995
1002
|
.n("CognitoIdentityClient", "SetIdentityPoolRolesCommand")
|
|
996
|
-
.sc(SetIdentityPoolRoles)
|
|
1003
|
+
.sc(SetIdentityPoolRoles$)
|
|
997
1004
|
.build() {
|
|
998
1005
|
}
|
|
999
1006
|
|
|
@@ -1005,7 +1012,7 @@ class SetPrincipalTagAttributeMapCommand extends smithyClient.Command
|
|
|
1005
1012
|
})
|
|
1006
1013
|
.s("AWSCognitoIdentityService", "SetPrincipalTagAttributeMap", {})
|
|
1007
1014
|
.n("CognitoIdentityClient", "SetPrincipalTagAttributeMapCommand")
|
|
1008
|
-
.sc(SetPrincipalTagAttributeMap)
|
|
1015
|
+
.sc(SetPrincipalTagAttributeMap$)
|
|
1009
1016
|
.build() {
|
|
1010
1017
|
}
|
|
1011
1018
|
|
|
@@ -1017,7 +1024,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1017
1024
|
})
|
|
1018
1025
|
.s("AWSCognitoIdentityService", "TagResource", {})
|
|
1019
1026
|
.n("CognitoIdentityClient", "TagResourceCommand")
|
|
1020
|
-
.sc(TagResource)
|
|
1027
|
+
.sc(TagResource$)
|
|
1021
1028
|
.build() {
|
|
1022
1029
|
}
|
|
1023
1030
|
|
|
@@ -1029,7 +1036,7 @@ class UnlinkDeveloperIdentityCommand extends smithyClient.Command
|
|
|
1029
1036
|
})
|
|
1030
1037
|
.s("AWSCognitoIdentityService", "UnlinkDeveloperIdentity", {})
|
|
1031
1038
|
.n("CognitoIdentityClient", "UnlinkDeveloperIdentityCommand")
|
|
1032
|
-
.sc(UnlinkDeveloperIdentity)
|
|
1039
|
+
.sc(UnlinkDeveloperIdentity$)
|
|
1033
1040
|
.build() {
|
|
1034
1041
|
}
|
|
1035
1042
|
|
|
@@ -1041,7 +1048,7 @@ class UnlinkIdentityCommand extends smithyClient.Command
|
|
|
1041
1048
|
})
|
|
1042
1049
|
.s("AWSCognitoIdentityService", "UnlinkIdentity", {})
|
|
1043
1050
|
.n("CognitoIdentityClient", "UnlinkIdentityCommand")
|
|
1044
|
-
.sc(UnlinkIdentity)
|
|
1051
|
+
.sc(UnlinkIdentity$)
|
|
1045
1052
|
.build() {
|
|
1046
1053
|
}
|
|
1047
1054
|
|
|
@@ -1053,7 +1060,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1053
1060
|
})
|
|
1054
1061
|
.s("AWSCognitoIdentityService", "UntagResource", {})
|
|
1055
1062
|
.n("CognitoIdentityClient", "UntagResourceCommand")
|
|
1056
|
-
.sc(UntagResource)
|
|
1063
|
+
.sc(UntagResource$)
|
|
1057
1064
|
.build() {
|
|
1058
1065
|
}
|
|
1059
1066
|
|
|
@@ -1065,7 +1072,7 @@ class UpdateIdentityPoolCommand extends smithyClient.Command
|
|
|
1065
1072
|
})
|
|
1066
1073
|
.s("AWSCognitoIdentityService", "UpdateIdentityPool", {})
|
|
1067
1074
|
.n("CognitoIdentityClient", "UpdateIdentityPoolCommand")
|
|
1068
|
-
.sc(UpdateIdentityPool)
|
|
1075
|
+
.sc(UpdateIdentityPool$)
|
|
1069
1076
|
.build() {
|
|
1070
1077
|
}
|
|
1071
1078
|
|
|
@@ -1130,42 +1137,123 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1130
1137
|
exports.AmbiguousRoleResolutionType = AmbiguousRoleResolutionType;
|
|
1131
1138
|
exports.CognitoIdentity = CognitoIdentity;
|
|
1132
1139
|
exports.CognitoIdentityClient = CognitoIdentityClient;
|
|
1133
|
-
exports.
|
|
1134
|
-
exports.
|
|
1140
|
+
exports.CognitoIdentityProvider$ = CognitoIdentityProvider$;
|
|
1141
|
+
exports.CognitoIdentityServiceException = CognitoIdentityServiceException;
|
|
1142
|
+
exports.CognitoIdentityServiceException$ = CognitoIdentityServiceException$;
|
|
1143
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1144
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1145
|
+
exports.CreateIdentityPool$ = CreateIdentityPool$;
|
|
1135
1146
|
exports.CreateIdentityPoolCommand = CreateIdentityPoolCommand;
|
|
1147
|
+
exports.CreateIdentityPoolInput$ = CreateIdentityPoolInput$;
|
|
1148
|
+
exports.Credentials$ = Credentials$;
|
|
1149
|
+
exports.DeleteIdentities$ = DeleteIdentities$;
|
|
1136
1150
|
exports.DeleteIdentitiesCommand = DeleteIdentitiesCommand;
|
|
1151
|
+
exports.DeleteIdentitiesInput$ = DeleteIdentitiesInput$;
|
|
1152
|
+
exports.DeleteIdentitiesResponse$ = DeleteIdentitiesResponse$;
|
|
1153
|
+
exports.DeleteIdentityPool$ = DeleteIdentityPool$;
|
|
1137
1154
|
exports.DeleteIdentityPoolCommand = DeleteIdentityPoolCommand;
|
|
1155
|
+
exports.DeleteIdentityPoolInput$ = DeleteIdentityPoolInput$;
|
|
1156
|
+
exports.DescribeIdentity$ = DescribeIdentity$;
|
|
1138
1157
|
exports.DescribeIdentityCommand = DescribeIdentityCommand;
|
|
1158
|
+
exports.DescribeIdentityInput$ = DescribeIdentityInput$;
|
|
1159
|
+
exports.DescribeIdentityPool$ = DescribeIdentityPool$;
|
|
1139
1160
|
exports.DescribeIdentityPoolCommand = DescribeIdentityPoolCommand;
|
|
1140
|
-
exports.
|
|
1161
|
+
exports.DescribeIdentityPoolInput$ = DescribeIdentityPoolInput$;
|
|
1162
|
+
exports.DeveloperUserAlreadyRegisteredException = DeveloperUserAlreadyRegisteredException;
|
|
1163
|
+
exports.DeveloperUserAlreadyRegisteredException$ = DeveloperUserAlreadyRegisteredException$;
|
|
1141
1164
|
exports.ErrorCode = ErrorCode;
|
|
1142
|
-
exports.ExternalServiceException = ExternalServiceException
|
|
1165
|
+
exports.ExternalServiceException = ExternalServiceException;
|
|
1166
|
+
exports.ExternalServiceException$ = ExternalServiceException$;
|
|
1167
|
+
exports.GetCredentialsForIdentity$ = GetCredentialsForIdentity$;
|
|
1143
1168
|
exports.GetCredentialsForIdentityCommand = GetCredentialsForIdentityCommand;
|
|
1169
|
+
exports.GetCredentialsForIdentityInput$ = GetCredentialsForIdentityInput$;
|
|
1170
|
+
exports.GetCredentialsForIdentityResponse$ = GetCredentialsForIdentityResponse$;
|
|
1171
|
+
exports.GetId$ = GetId$;
|
|
1144
1172
|
exports.GetIdCommand = GetIdCommand;
|
|
1173
|
+
exports.GetIdInput$ = GetIdInput$;
|
|
1174
|
+
exports.GetIdResponse$ = GetIdResponse$;
|
|
1175
|
+
exports.GetIdentityPoolRoles$ = GetIdentityPoolRoles$;
|
|
1145
1176
|
exports.GetIdentityPoolRolesCommand = GetIdentityPoolRolesCommand;
|
|
1177
|
+
exports.GetIdentityPoolRolesInput$ = GetIdentityPoolRolesInput$;
|
|
1178
|
+
exports.GetIdentityPoolRolesResponse$ = GetIdentityPoolRolesResponse$;
|
|
1179
|
+
exports.GetOpenIdToken$ = GetOpenIdToken$;
|
|
1146
1180
|
exports.GetOpenIdTokenCommand = GetOpenIdTokenCommand;
|
|
1181
|
+
exports.GetOpenIdTokenForDeveloperIdentity$ = GetOpenIdTokenForDeveloperIdentity$;
|
|
1147
1182
|
exports.GetOpenIdTokenForDeveloperIdentityCommand = GetOpenIdTokenForDeveloperIdentityCommand;
|
|
1183
|
+
exports.GetOpenIdTokenForDeveloperIdentityInput$ = GetOpenIdTokenForDeveloperIdentityInput$;
|
|
1184
|
+
exports.GetOpenIdTokenForDeveloperIdentityResponse$ = GetOpenIdTokenForDeveloperIdentityResponse$;
|
|
1185
|
+
exports.GetOpenIdTokenInput$ = GetOpenIdTokenInput$;
|
|
1186
|
+
exports.GetOpenIdTokenResponse$ = GetOpenIdTokenResponse$;
|
|
1187
|
+
exports.GetPrincipalTagAttributeMap$ = GetPrincipalTagAttributeMap$;
|
|
1148
1188
|
exports.GetPrincipalTagAttributeMapCommand = GetPrincipalTagAttributeMapCommand;
|
|
1149
|
-
exports.
|
|
1150
|
-
exports.
|
|
1151
|
-
exports.
|
|
1152
|
-
exports.
|
|
1189
|
+
exports.GetPrincipalTagAttributeMapInput$ = GetPrincipalTagAttributeMapInput$;
|
|
1190
|
+
exports.GetPrincipalTagAttributeMapResponse$ = GetPrincipalTagAttributeMapResponse$;
|
|
1191
|
+
exports.IdentityDescription$ = IdentityDescription$;
|
|
1192
|
+
exports.IdentityPool$ = IdentityPool$;
|
|
1193
|
+
exports.IdentityPoolShortDescription$ = IdentityPoolShortDescription$;
|
|
1194
|
+
exports.InternalErrorException = InternalErrorException;
|
|
1195
|
+
exports.InternalErrorException$ = InternalErrorException$;
|
|
1196
|
+
exports.InvalidIdentityPoolConfigurationException = InvalidIdentityPoolConfigurationException;
|
|
1197
|
+
exports.InvalidIdentityPoolConfigurationException$ = InvalidIdentityPoolConfigurationException$;
|
|
1198
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
1199
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
1200
|
+
exports.LimitExceededException = LimitExceededException;
|
|
1201
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
1202
|
+
exports.ListIdentities$ = ListIdentities$;
|
|
1153
1203
|
exports.ListIdentitiesCommand = ListIdentitiesCommand;
|
|
1204
|
+
exports.ListIdentitiesInput$ = ListIdentitiesInput$;
|
|
1205
|
+
exports.ListIdentitiesResponse$ = ListIdentitiesResponse$;
|
|
1206
|
+
exports.ListIdentityPools$ = ListIdentityPools$;
|
|
1154
1207
|
exports.ListIdentityPoolsCommand = ListIdentityPoolsCommand;
|
|
1208
|
+
exports.ListIdentityPoolsInput$ = ListIdentityPoolsInput$;
|
|
1209
|
+
exports.ListIdentityPoolsResponse$ = ListIdentityPoolsResponse$;
|
|
1210
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1155
1211
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1212
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1213
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1214
|
+
exports.LookupDeveloperIdentity$ = LookupDeveloperIdentity$;
|
|
1156
1215
|
exports.LookupDeveloperIdentityCommand = LookupDeveloperIdentityCommand;
|
|
1216
|
+
exports.LookupDeveloperIdentityInput$ = LookupDeveloperIdentityInput$;
|
|
1217
|
+
exports.LookupDeveloperIdentityResponse$ = LookupDeveloperIdentityResponse$;
|
|
1218
|
+
exports.MappingRule$ = MappingRule$;
|
|
1157
1219
|
exports.MappingRuleMatchType = MappingRuleMatchType;
|
|
1220
|
+
exports.MergeDeveloperIdentities$ = MergeDeveloperIdentities$;
|
|
1158
1221
|
exports.MergeDeveloperIdentitiesCommand = MergeDeveloperIdentitiesCommand;
|
|
1159
|
-
exports.
|
|
1160
|
-
exports.
|
|
1161
|
-
exports.
|
|
1222
|
+
exports.MergeDeveloperIdentitiesInput$ = MergeDeveloperIdentitiesInput$;
|
|
1223
|
+
exports.MergeDeveloperIdentitiesResponse$ = MergeDeveloperIdentitiesResponse$;
|
|
1224
|
+
exports.NotAuthorizedException = NotAuthorizedException;
|
|
1225
|
+
exports.NotAuthorizedException$ = NotAuthorizedException$;
|
|
1226
|
+
exports.ResourceConflictException = ResourceConflictException;
|
|
1227
|
+
exports.ResourceConflictException$ = ResourceConflictException$;
|
|
1228
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1229
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1230
|
+
exports.RoleMapping$ = RoleMapping$;
|
|
1162
1231
|
exports.RoleMappingType = RoleMappingType;
|
|
1232
|
+
exports.RulesConfigurationType$ = RulesConfigurationType$;
|
|
1233
|
+
exports.SetIdentityPoolRoles$ = SetIdentityPoolRoles$;
|
|
1163
1234
|
exports.SetIdentityPoolRolesCommand = SetIdentityPoolRolesCommand;
|
|
1235
|
+
exports.SetIdentityPoolRolesInput$ = SetIdentityPoolRolesInput$;
|
|
1236
|
+
exports.SetPrincipalTagAttributeMap$ = SetPrincipalTagAttributeMap$;
|
|
1164
1237
|
exports.SetPrincipalTagAttributeMapCommand = SetPrincipalTagAttributeMapCommand;
|
|
1238
|
+
exports.SetPrincipalTagAttributeMapInput$ = SetPrincipalTagAttributeMapInput$;
|
|
1239
|
+
exports.SetPrincipalTagAttributeMapResponse$ = SetPrincipalTagAttributeMapResponse$;
|
|
1240
|
+
exports.TagResource$ = TagResource$;
|
|
1165
1241
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1166
|
-
exports.
|
|
1242
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
1243
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1244
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1245
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1246
|
+
exports.UnlinkDeveloperIdentity$ = UnlinkDeveloperIdentity$;
|
|
1167
1247
|
exports.UnlinkDeveloperIdentityCommand = UnlinkDeveloperIdentityCommand;
|
|
1248
|
+
exports.UnlinkDeveloperIdentityInput$ = UnlinkDeveloperIdentityInput$;
|
|
1249
|
+
exports.UnlinkIdentity$ = UnlinkIdentity$;
|
|
1168
1250
|
exports.UnlinkIdentityCommand = UnlinkIdentityCommand;
|
|
1251
|
+
exports.UnlinkIdentityInput$ = UnlinkIdentityInput$;
|
|
1252
|
+
exports.UnprocessedIdentityId$ = UnprocessedIdentityId$;
|
|
1253
|
+
exports.UntagResource$ = UntagResource$;
|
|
1169
1254
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1255
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1256
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1257
|
+
exports.UpdateIdentityPool$ = UpdateIdentityPool$;
|
|
1170
1258
|
exports.UpdateIdentityPoolCommand = UpdateIdentityPoolCommand;
|
|
1171
1259
|
exports.paginateListIdentityPools = paginateListIdentityPools;
|