@aws-sdk/client-cognito-identity 3.927.0 → 3.929.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.
Files changed (47) hide show
  1. package/dist-cjs/index.js +721 -882
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/CognitoIdentityClient.js +2 -0
  4. package/dist-es/commands/CreateIdentityPoolCommand.js +3 -9
  5. package/dist-es/commands/DeleteIdentitiesCommand.js +3 -9
  6. package/dist-es/commands/DeleteIdentityPoolCommand.js +3 -9
  7. package/dist-es/commands/DescribeIdentityCommand.js +3 -9
  8. package/dist-es/commands/DescribeIdentityPoolCommand.js +3 -9
  9. package/dist-es/commands/GetCredentialsForIdentityCommand.js +3 -10
  10. package/dist-es/commands/GetIdCommand.js +3 -10
  11. package/dist-es/commands/GetIdentityPoolRolesCommand.js +3 -9
  12. package/dist-es/commands/GetOpenIdTokenCommand.js +3 -10
  13. package/dist-es/commands/GetOpenIdTokenForDeveloperIdentityCommand.js +3 -10
  14. package/dist-es/commands/GetPrincipalTagAttributeMapCommand.js +3 -9
  15. package/dist-es/commands/ListIdentitiesCommand.js +3 -9
  16. package/dist-es/commands/ListIdentityPoolsCommand.js +3 -9
  17. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  18. package/dist-es/commands/LookupDeveloperIdentityCommand.js +3 -9
  19. package/dist-es/commands/MergeDeveloperIdentitiesCommand.js +3 -9
  20. package/dist-es/commands/SetIdentityPoolRolesCommand.js +3 -9
  21. package/dist-es/commands/SetPrincipalTagAttributeMapCommand.js +3 -9
  22. package/dist-es/commands/TagResourceCommand.js +3 -9
  23. package/dist-es/commands/UnlinkDeveloperIdentityCommand.js +3 -9
  24. package/dist-es/commands/UnlinkIdentityCommand.js +3 -10
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateIdentityPoolCommand.js +3 -9
  27. package/dist-es/models/models_0.js +0 -37
  28. package/dist-es/runtimeConfig.shared.js +7 -0
  29. package/dist-es/schemas/schemas_0.js +650 -0
  30. package/dist-types/CognitoIdentityClient.d.ts +10 -1
  31. package/dist-types/models/models_0.d.ts +0 -36
  32. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  33. package/dist-types/runtimeConfig.d.ts +1 -0
  34. package/dist-types/runtimeConfig.native.d.ts +1 -0
  35. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  36. package/dist-types/schemas/schemas_0.d.ts +103 -0
  37. package/dist-types/ts3.4/CognitoIdentityClient.d.ts +4 -0
  38. package/dist-types/ts3.4/models/models_0.d.ts +0 -23
  39. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  42. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  43. package/dist-types/ts3.4/schemas/schemas_0.d.ts +110 -0
  44. package/package.json +6 -6
  45. package/dist-es/protocols/Aws_json1_1.js +0 -647
  46. package/dist-types/protocols/Aws_json1_1.d.ts +0 -209
  47. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -281
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -91,6 +90,7 @@ class CognitoIdentityClient extends smithyClient.Client {
91
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
92
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
93
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
94
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
95
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
96
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -110,18 +110,18 @@ class CognitoIdentityClient extends smithyClient.Client {
110
110
  }
111
111
  }
112
112
 
113
- class CognitoIdentityServiceException extends smithyClient.ServiceException {
113
+ let CognitoIdentityServiceException$1 = 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
  const AmbiguousRoleResolutionType = {
121
121
  AUTHENTICATED_ROLE: "AuthenticatedRole",
122
122
  DENY: "Deny",
123
123
  };
124
- class InternalErrorException extends CognitoIdentityServiceException {
124
+ let InternalErrorException$1 = class InternalErrorException extends CognitoIdentityServiceException$1 {
125
125
  name = "InternalErrorException";
126
126
  $fault = "server";
127
127
  constructor(opts) {
@@ -132,8 +132,8 @@ class InternalErrorException extends CognitoIdentityServiceException {
132
132
  });
133
133
  Object.setPrototypeOf(this, InternalErrorException.prototype);
134
134
  }
135
- }
136
- class InvalidParameterException extends CognitoIdentityServiceException {
135
+ };
136
+ let InvalidParameterException$1 = class InvalidParameterException extends CognitoIdentityServiceException$1 {
137
137
  name = "InvalidParameterException";
138
138
  $fault = "client";
139
139
  constructor(opts) {
@@ -144,8 +144,8 @@ class InvalidParameterException extends CognitoIdentityServiceException {
144
144
  });
145
145
  Object.setPrototypeOf(this, InvalidParameterException.prototype);
146
146
  }
147
- }
148
- class LimitExceededException extends CognitoIdentityServiceException {
147
+ };
148
+ let LimitExceededException$1 = class LimitExceededException extends CognitoIdentityServiceException$1 {
149
149
  name = "LimitExceededException";
150
150
  $fault = "client";
151
151
  constructor(opts) {
@@ -156,8 +156,8 @@ class LimitExceededException extends CognitoIdentityServiceException {
156
156
  });
157
157
  Object.setPrototypeOf(this, LimitExceededException.prototype);
158
158
  }
159
- }
160
- class NotAuthorizedException extends CognitoIdentityServiceException {
159
+ };
160
+ let NotAuthorizedException$1 = class NotAuthorizedException extends CognitoIdentityServiceException$1 {
161
161
  name = "NotAuthorizedException";
162
162
  $fault = "client";
163
163
  constructor(opts) {
@@ -168,8 +168,8 @@ class NotAuthorizedException extends CognitoIdentityServiceException {
168
168
  });
169
169
  Object.setPrototypeOf(this, NotAuthorizedException.prototype);
170
170
  }
171
- }
172
- class ResourceConflictException extends CognitoIdentityServiceException {
171
+ };
172
+ let ResourceConflictException$1 = class ResourceConflictException extends CognitoIdentityServiceException$1 {
173
173
  name = "ResourceConflictException";
174
174
  $fault = "client";
175
175
  constructor(opts) {
@@ -180,8 +180,8 @@ class ResourceConflictException extends CognitoIdentityServiceException {
180
180
  });
181
181
  Object.setPrototypeOf(this, ResourceConflictException.prototype);
182
182
  }
183
- }
184
- class TooManyRequestsException extends CognitoIdentityServiceException {
183
+ };
184
+ let TooManyRequestsException$1 = class TooManyRequestsException extends CognitoIdentityServiceException$1 {
185
185
  name = "TooManyRequestsException";
186
186
  $fault = "client";
187
187
  constructor(opts) {
@@ -192,12 +192,12 @@ class TooManyRequestsException extends CognitoIdentityServiceException {
192
192
  });
193
193
  Object.setPrototypeOf(this, TooManyRequestsException.prototype);
194
194
  }
195
- }
195
+ };
196
196
  const ErrorCode = {
197
197
  ACCESS_DENIED: "AccessDenied",
198
198
  INTERNAL_SERVER_ERROR: "InternalServerError",
199
199
  };
200
- class ResourceNotFoundException extends CognitoIdentityServiceException {
200
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends CognitoIdentityServiceException$1 {
201
201
  name = "ResourceNotFoundException";
202
202
  $fault = "client";
203
203
  constructor(opts) {
@@ -208,8 +208,8 @@ class ResourceNotFoundException extends CognitoIdentityServiceException {
208
208
  });
209
209
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
210
210
  }
211
- }
212
- class ExternalServiceException extends CognitoIdentityServiceException {
211
+ };
212
+ let ExternalServiceException$1 = class ExternalServiceException extends CognitoIdentityServiceException$1 {
213
213
  name = "ExternalServiceException";
214
214
  $fault = "client";
215
215
  constructor(opts) {
@@ -220,8 +220,8 @@ class ExternalServiceException extends CognitoIdentityServiceException {
220
220
  });
221
221
  Object.setPrototypeOf(this, ExternalServiceException.prototype);
222
222
  }
223
- }
224
- class InvalidIdentityPoolConfigurationException extends CognitoIdentityServiceException {
223
+ };
224
+ let InvalidIdentityPoolConfigurationException$1 = class InvalidIdentityPoolConfigurationException extends CognitoIdentityServiceException$1 {
225
225
  name = "InvalidIdentityPoolConfigurationException";
226
226
  $fault = "client";
227
227
  constructor(opts) {
@@ -232,7 +232,7 @@ class InvalidIdentityPoolConfigurationException extends CognitoIdentityServiceEx
232
232
  });
233
233
  Object.setPrototypeOf(this, InvalidIdentityPoolConfigurationException.prototype);
234
234
  }
235
- }
235
+ };
236
236
  const MappingRuleMatchType = {
237
237
  CONTAINS: "Contains",
238
238
  EQUALS: "Equals",
@@ -243,7 +243,7 @@ const RoleMappingType = {
243
243
  RULES: "Rules",
244
244
  TOKEN: "Token",
245
245
  };
246
- class DeveloperUserAlreadyRegisteredException extends CognitoIdentityServiceException {
246
+ let DeveloperUserAlreadyRegisteredException$1 = class DeveloperUserAlreadyRegisteredException extends CognitoIdentityServiceException$1 {
247
247
  name = "DeveloperUserAlreadyRegisteredException";
248
248
  $fault = "client";
249
249
  constructor(opts) {
@@ -254,8 +254,8 @@ class DeveloperUserAlreadyRegisteredException extends CognitoIdentityServiceExce
254
254
  });
255
255
  Object.setPrototypeOf(this, DeveloperUserAlreadyRegisteredException.prototype);
256
256
  }
257
- }
258
- class ConcurrentModificationException extends CognitoIdentityServiceException {
257
+ };
258
+ let ConcurrentModificationException$1 = class ConcurrentModificationException extends CognitoIdentityServiceException$1 {
259
259
  name = "ConcurrentModificationException";
260
260
  $fault = "client";
261
261
  constructor(opts) {
@@ -266,697 +266,655 @@ class ConcurrentModificationException extends CognitoIdentityServiceException {
266
266
  });
267
267
  Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
268
268
  }
269
- }
270
- const GetCredentialsForIdentityInputFilterSensitiveLog = (obj) => ({
271
- ...obj,
272
- ...(obj.Logins && { Logins: smithyClient.SENSITIVE_STRING }),
273
- });
274
- const CredentialsFilterSensitiveLog = (obj) => ({
275
- ...obj,
276
- ...(obj.SecretKey && { SecretKey: smithyClient.SENSITIVE_STRING }),
277
- });
278
- const GetCredentialsForIdentityResponseFilterSensitiveLog = (obj) => ({
279
- ...obj,
280
- ...(obj.Credentials && { Credentials: CredentialsFilterSensitiveLog(obj.Credentials) }),
281
- });
282
- const GetIdInputFilterSensitiveLog = (obj) => ({
283
- ...obj,
284
- ...(obj.Logins && { Logins: smithyClient.SENSITIVE_STRING }),
285
- });
286
- const GetOpenIdTokenInputFilterSensitiveLog = (obj) => ({
287
- ...obj,
288
- ...(obj.Logins && { Logins: smithyClient.SENSITIVE_STRING }),
289
- });
290
- const GetOpenIdTokenResponseFilterSensitiveLog = (obj) => ({
291
- ...obj,
292
- ...(obj.Token && { Token: smithyClient.SENSITIVE_STRING }),
293
- });
294
- const GetOpenIdTokenForDeveloperIdentityInputFilterSensitiveLog = (obj) => ({
295
- ...obj,
296
- ...(obj.Logins && { Logins: smithyClient.SENSITIVE_STRING }),
297
- });
298
- const GetOpenIdTokenForDeveloperIdentityResponseFilterSensitiveLog = (obj) => ({
299
- ...obj,
300
- ...(obj.Token && { Token: smithyClient.SENSITIVE_STRING }),
301
- });
302
- const UnlinkIdentityInputFilterSensitiveLog = (obj) => ({
303
- ...obj,
304
- ...(obj.Logins && { Logins: smithyClient.SENSITIVE_STRING }),
305
- });
306
-
307
- const se_CreateIdentityPoolCommand = async (input, context) => {
308
- const headers = sharedHeaders("CreateIdentityPool");
309
- let body;
310
- body = JSON.stringify(smithyClient._json(input));
311
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
312
- };
313
- const se_DeleteIdentitiesCommand = async (input, context) => {
314
- const headers = sharedHeaders("DeleteIdentities");
315
- let body;
316
- body = JSON.stringify(smithyClient._json(input));
317
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
318
- };
319
- const se_DeleteIdentityPoolCommand = async (input, context) => {
320
- const headers = sharedHeaders("DeleteIdentityPool");
321
- let body;
322
- body = JSON.stringify(smithyClient._json(input));
323
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
324
- };
325
- const se_DescribeIdentityCommand = async (input, context) => {
326
- const headers = sharedHeaders("DescribeIdentity");
327
- let body;
328
- body = JSON.stringify(smithyClient._json(input));
329
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
330
- };
331
- const se_DescribeIdentityPoolCommand = async (input, context) => {
332
- const headers = sharedHeaders("DescribeIdentityPool");
333
- let body;
334
- body = JSON.stringify(smithyClient._json(input));
335
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
336
- };
337
- const se_GetCredentialsForIdentityCommand = async (input, context) => {
338
- const headers = sharedHeaders("GetCredentialsForIdentity");
339
- let body;
340
- body = JSON.stringify(smithyClient._json(input));
341
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
342
- };
343
- const se_GetIdCommand = async (input, context) => {
344
- const headers = sharedHeaders("GetId");
345
- let body;
346
- body = JSON.stringify(smithyClient._json(input));
347
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
348
- };
349
- const se_GetIdentityPoolRolesCommand = async (input, context) => {
350
- const headers = sharedHeaders("GetIdentityPoolRoles");
351
- let body;
352
- body = JSON.stringify(smithyClient._json(input));
353
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
354
- };
355
- const se_GetOpenIdTokenCommand = async (input, context) => {
356
- const headers = sharedHeaders("GetOpenIdToken");
357
- let body;
358
- body = JSON.stringify(smithyClient._json(input));
359
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
360
- };
361
- const se_GetOpenIdTokenForDeveloperIdentityCommand = async (input, context) => {
362
- const headers = sharedHeaders("GetOpenIdTokenForDeveloperIdentity");
363
- let body;
364
- body = JSON.stringify(smithyClient._json(input));
365
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
366
- };
367
- const se_GetPrincipalTagAttributeMapCommand = async (input, context) => {
368
- const headers = sharedHeaders("GetPrincipalTagAttributeMap");
369
- let body;
370
- body = JSON.stringify(smithyClient._json(input));
371
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
372
- };
373
- const se_ListIdentitiesCommand = async (input, context) => {
374
- const headers = sharedHeaders("ListIdentities");
375
- let body;
376
- body = JSON.stringify(smithyClient._json(input));
377
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
378
- };
379
- const se_ListIdentityPoolsCommand = async (input, context) => {
380
- const headers = sharedHeaders("ListIdentityPools");
381
- let body;
382
- body = JSON.stringify(smithyClient._json(input));
383
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
384
- };
385
- const se_ListTagsForResourceCommand = async (input, context) => {
386
- const headers = sharedHeaders("ListTagsForResource");
387
- let body;
388
- body = JSON.stringify(smithyClient._json(input));
389
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
390
- };
391
- const se_LookupDeveloperIdentityCommand = async (input, context) => {
392
- const headers = sharedHeaders("LookupDeveloperIdentity");
393
- let body;
394
- body = JSON.stringify(smithyClient._json(input));
395
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
396
- };
397
- const se_MergeDeveloperIdentitiesCommand = async (input, context) => {
398
- const headers = sharedHeaders("MergeDeveloperIdentities");
399
- let body;
400
- body = JSON.stringify(smithyClient._json(input));
401
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
402
- };
403
- const se_SetIdentityPoolRolesCommand = async (input, context) => {
404
- const headers = sharedHeaders("SetIdentityPoolRoles");
405
- let body;
406
- body = JSON.stringify(smithyClient._json(input));
407
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
408
- };
409
- const se_SetPrincipalTagAttributeMapCommand = async (input, context) => {
410
- const headers = sharedHeaders("SetPrincipalTagAttributeMap");
411
- let body;
412
- body = JSON.stringify(smithyClient._json(input));
413
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
414
- };
415
- const se_TagResourceCommand = async (input, context) => {
416
- const headers = sharedHeaders("TagResource");
417
- let body;
418
- body = JSON.stringify(smithyClient._json(input));
419
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
420
- };
421
- const se_UnlinkDeveloperIdentityCommand = async (input, context) => {
422
- const headers = sharedHeaders("UnlinkDeveloperIdentity");
423
- let body;
424
- body = JSON.stringify(smithyClient._json(input));
425
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
426
- };
427
- const se_UnlinkIdentityCommand = async (input, context) => {
428
- const headers = sharedHeaders("UnlinkIdentity");
429
- let body;
430
- body = JSON.stringify(smithyClient._json(input));
431
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
432
- };
433
- const se_UntagResourceCommand = async (input, context) => {
434
- const headers = sharedHeaders("UntagResource");
435
- let body;
436
- body = JSON.stringify(smithyClient._json(input));
437
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
438
- };
439
- const se_UpdateIdentityPoolCommand = async (input, context) => {
440
- const headers = sharedHeaders("UpdateIdentityPool");
441
- let body;
442
- body = JSON.stringify(smithyClient._json(input));
443
- return buildHttpRpcRequest(context, headers, "/", undefined, body);
444
- };
445
- const de_CreateIdentityPoolCommand = async (output, context) => {
446
- if (output.statusCode >= 300) {
447
- return de_CommandError(output, context);
448
- }
449
- const data = await core$1.parseJsonBody(output.body, context);
450
- let contents = {};
451
- contents = smithyClient._json(data);
452
- const response = {
453
- $metadata: deserializeMetadata(output),
454
- ...contents,
455
- };
456
- return response;
457
- };
458
- const de_DeleteIdentitiesCommand = async (output, context) => {
459
- if (output.statusCode >= 300) {
460
- return de_CommandError(output, context);
461
- }
462
- const data = await core$1.parseJsonBody(output.body, context);
463
- let contents = {};
464
- contents = smithyClient._json(data);
465
- const response = {
466
- $metadata: deserializeMetadata(output),
467
- ...contents,
468
- };
469
- return response;
470
- };
471
- const de_DeleteIdentityPoolCommand = async (output, context) => {
472
- if (output.statusCode >= 300) {
473
- return de_CommandError(output, context);
474
- }
475
- await smithyClient.collectBody(output.body, context);
476
- const response = {
477
- $metadata: deserializeMetadata(output),
478
- };
479
- return response;
480
- };
481
- const de_DescribeIdentityCommand = async (output, context) => {
482
- if (output.statusCode >= 300) {
483
- return de_CommandError(output, context);
484
- }
485
- const data = await core$1.parseJsonBody(output.body, context);
486
- let contents = {};
487
- contents = de_IdentityDescription(data);
488
- const response = {
489
- $metadata: deserializeMetadata(output),
490
- ...contents,
491
- };
492
- return response;
493
269
  };
494
- const de_DescribeIdentityPoolCommand = async (output, context) => {
495
- if (output.statusCode >= 300) {
496
- return de_CommandError(output, context);
497
- }
498
- const data = await core$1.parseJsonBody(output.body, context);
499
- let contents = {};
500
- contents = smithyClient._json(data);
501
- const response = {
502
- $metadata: deserializeMetadata(output),
503
- ...contents,
504
- };
505
- return response;
506
- };
507
- const de_GetCredentialsForIdentityCommand = async (output, context) => {
508
- if (output.statusCode >= 300) {
509
- return de_CommandError(output, context);
510
- }
511
- const data = await core$1.parseJsonBody(output.body, context);
512
- let contents = {};
513
- contents = de_GetCredentialsForIdentityResponse(data);
514
- const response = {
515
- $metadata: deserializeMetadata(output),
516
- ...contents,
517
- };
518
- return response;
519
- };
520
- const de_GetIdCommand = async (output, context) => {
521
- if (output.statusCode >= 300) {
522
- return de_CommandError(output, context);
523
- }
524
- const data = await core$1.parseJsonBody(output.body, context);
525
- let contents = {};
526
- contents = smithyClient._json(data);
527
- const response = {
528
- $metadata: deserializeMetadata(output),
529
- ...contents,
530
- };
531
- return response;
532
- };
533
- const de_GetIdentityPoolRolesCommand = async (output, context) => {
534
- if (output.statusCode >= 300) {
535
- return de_CommandError(output, context);
536
- }
537
- const data = await core$1.parseJsonBody(output.body, context);
538
- let contents = {};
539
- contents = smithyClient._json(data);
540
- const response = {
541
- $metadata: deserializeMetadata(output),
542
- ...contents,
543
- };
544
- return response;
545
- };
546
- const de_GetOpenIdTokenCommand = async (output, context) => {
547
- if (output.statusCode >= 300) {
548
- return de_CommandError(output, context);
549
- }
550
- const data = await core$1.parseJsonBody(output.body, context);
551
- let contents = {};
552
- contents = smithyClient._json(data);
553
- const response = {
554
- $metadata: deserializeMetadata(output),
555
- ...contents,
556
- };
557
- return response;
558
- };
559
- const de_GetOpenIdTokenForDeveloperIdentityCommand = async (output, context) => {
560
- if (output.statusCode >= 300) {
561
- return de_CommandError(output, context);
562
- }
563
- const data = await core$1.parseJsonBody(output.body, context);
564
- let contents = {};
565
- contents = smithyClient._json(data);
566
- const response = {
567
- $metadata: deserializeMetadata(output),
568
- ...contents,
569
- };
570
- return response;
571
- };
572
- const de_GetPrincipalTagAttributeMapCommand = async (output, context) => {
573
- if (output.statusCode >= 300) {
574
- return de_CommandError(output, context);
575
- }
576
- const data = await core$1.parseJsonBody(output.body, context);
577
- let contents = {};
578
- contents = smithyClient._json(data);
579
- const response = {
580
- $metadata: deserializeMetadata(output),
581
- ...contents,
582
- };
583
- return response;
584
- };
585
- const de_ListIdentitiesCommand = async (output, context) => {
586
- if (output.statusCode >= 300) {
587
- return de_CommandError(output, context);
588
- }
589
- const data = await core$1.parseJsonBody(output.body, context);
590
- let contents = {};
591
- contents = de_ListIdentitiesResponse(data);
592
- const response = {
593
- $metadata: deserializeMetadata(output),
594
- ...contents,
595
- };
596
- return response;
597
- };
598
- const de_ListIdentityPoolsCommand = async (output, context) => {
599
- if (output.statusCode >= 300) {
600
- return de_CommandError(output, context);
601
- }
602
- const data = await core$1.parseJsonBody(output.body, context);
603
- let contents = {};
604
- contents = smithyClient._json(data);
605
- const response = {
606
- $metadata: deserializeMetadata(output),
607
- ...contents,
608
- };
609
- return response;
610
- };
611
- const de_ListTagsForResourceCommand = async (output, context) => {
612
- if (output.statusCode >= 300) {
613
- return de_CommandError(output, context);
614
- }
615
- const data = await core$1.parseJsonBody(output.body, context);
616
- let contents = {};
617
- contents = smithyClient._json(data);
618
- const response = {
619
- $metadata: deserializeMetadata(output),
620
- ...contents,
621
- };
622
- return response;
623
- };
624
- const de_LookupDeveloperIdentityCommand = async (output, context) => {
625
- if (output.statusCode >= 300) {
626
- return de_CommandError(output, context);
627
- }
628
- const data = await core$1.parseJsonBody(output.body, context);
629
- let contents = {};
630
- contents = smithyClient._json(data);
631
- const response = {
632
- $metadata: deserializeMetadata(output),
633
- ...contents,
634
- };
635
- return response;
636
- };
637
- const de_MergeDeveloperIdentitiesCommand = async (output, context) => {
638
- if (output.statusCode >= 300) {
639
- return de_CommandError(output, context);
640
- }
641
- const data = await core$1.parseJsonBody(output.body, context);
642
- let contents = {};
643
- contents = smithyClient._json(data);
644
- const response = {
645
- $metadata: deserializeMetadata(output),
646
- ...contents,
647
- };
648
- return response;
649
- };
650
- const de_SetIdentityPoolRolesCommand = async (output, context) => {
651
- if (output.statusCode >= 300) {
652
- return de_CommandError(output, context);
653
- }
654
- await smithyClient.collectBody(output.body, context);
655
- const response = {
656
- $metadata: deserializeMetadata(output),
657
- };
658
- return response;
659
- };
660
- const de_SetPrincipalTagAttributeMapCommand = async (output, context) => {
661
- if (output.statusCode >= 300) {
662
- return de_CommandError(output, context);
663
- }
664
- const data = await core$1.parseJsonBody(output.body, context);
665
- let contents = {};
666
- contents = smithyClient._json(data);
667
- const response = {
668
- $metadata: deserializeMetadata(output),
669
- ...contents,
670
- };
671
- return response;
672
- };
673
- const de_TagResourceCommand = async (output, context) => {
674
- if (output.statusCode >= 300) {
675
- return de_CommandError(output, context);
676
- }
677
- const data = await core$1.parseJsonBody(output.body, context);
678
- let contents = {};
679
- contents = smithyClient._json(data);
680
- const response = {
681
- $metadata: deserializeMetadata(output),
682
- ...contents,
683
- };
684
- return response;
685
- };
686
- const de_UnlinkDeveloperIdentityCommand = async (output, context) => {
687
- if (output.statusCode >= 300) {
688
- return de_CommandError(output, context);
689
- }
690
- await smithyClient.collectBody(output.body, context);
691
- const response = {
692
- $metadata: deserializeMetadata(output),
693
- };
694
- return response;
695
- };
696
- const de_UnlinkIdentityCommand = async (output, context) => {
697
- if (output.statusCode >= 300) {
698
- return de_CommandError(output, context);
699
- }
700
- await smithyClient.collectBody(output.body, context);
701
- const response = {
702
- $metadata: deserializeMetadata(output),
703
- };
704
- return response;
705
- };
706
- const de_UntagResourceCommand = async (output, context) => {
707
- if (output.statusCode >= 300) {
708
- return de_CommandError(output, context);
709
- }
710
- const data = await core$1.parseJsonBody(output.body, context);
711
- let contents = {};
712
- contents = smithyClient._json(data);
713
- const response = {
714
- $metadata: deserializeMetadata(output),
715
- ...contents,
716
- };
717
- return response;
718
- };
719
- const de_UpdateIdentityPoolCommand = async (output, context) => {
720
- if (output.statusCode >= 300) {
721
- return de_CommandError(output, context);
722
- }
723
- const data = await core$1.parseJsonBody(output.body, context);
724
- let contents = {};
725
- contents = smithyClient._json(data);
726
- const response = {
727
- $metadata: deserializeMetadata(output),
728
- ...contents,
729
- };
730
- return response;
731
- };
732
- const de_CommandError = async (output, context) => {
733
- const parsedOutput = {
734
- ...output,
735
- body: await core$1.parseJsonErrorBody(output.body, context),
736
- };
737
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
738
- switch (errorCode) {
739
- case "InternalErrorException":
740
- case "com.amazonaws.cognitoidentity#InternalErrorException":
741
- throw await de_InternalErrorExceptionRes(parsedOutput);
742
- case "InvalidParameterException":
743
- case "com.amazonaws.cognitoidentity#InvalidParameterException":
744
- throw await de_InvalidParameterExceptionRes(parsedOutput);
745
- case "LimitExceededException":
746
- case "com.amazonaws.cognitoidentity#LimitExceededException":
747
- throw await de_LimitExceededExceptionRes(parsedOutput);
748
- case "NotAuthorizedException":
749
- case "com.amazonaws.cognitoidentity#NotAuthorizedException":
750
- throw await de_NotAuthorizedExceptionRes(parsedOutput);
751
- case "ResourceConflictException":
752
- case "com.amazonaws.cognitoidentity#ResourceConflictException":
753
- throw await de_ResourceConflictExceptionRes(parsedOutput);
754
- case "TooManyRequestsException":
755
- case "com.amazonaws.cognitoidentity#TooManyRequestsException":
756
- throw await de_TooManyRequestsExceptionRes(parsedOutput);
757
- case "ResourceNotFoundException":
758
- case "com.amazonaws.cognitoidentity#ResourceNotFoundException":
759
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
760
- case "ExternalServiceException":
761
- case "com.amazonaws.cognitoidentity#ExternalServiceException":
762
- throw await de_ExternalServiceExceptionRes(parsedOutput);
763
- case "InvalidIdentityPoolConfigurationException":
764
- case "com.amazonaws.cognitoidentity#InvalidIdentityPoolConfigurationException":
765
- throw await de_InvalidIdentityPoolConfigurationExceptionRes(parsedOutput);
766
- case "DeveloperUserAlreadyRegisteredException":
767
- case "com.amazonaws.cognitoidentity#DeveloperUserAlreadyRegisteredException":
768
- throw await de_DeveloperUserAlreadyRegisteredExceptionRes(parsedOutput);
769
- case "ConcurrentModificationException":
770
- case "com.amazonaws.cognitoidentity#ConcurrentModificationException":
771
- throw await de_ConcurrentModificationExceptionRes(parsedOutput);
772
- default:
773
- const parsedBody = parsedOutput.body;
774
- return throwDefaultError({
775
- output,
776
- parsedBody,
777
- errorCode,
778
- });
779
- }
780
- };
781
- const de_ConcurrentModificationExceptionRes = async (parsedOutput, context) => {
782
- const body = parsedOutput.body;
783
- const deserialized = smithyClient._json(body);
784
- const exception = new ConcurrentModificationException({
785
- $metadata: deserializeMetadata(parsedOutput),
786
- ...deserialized,
787
- });
788
- return smithyClient.decorateServiceException(exception, body);
789
- };
790
- const de_DeveloperUserAlreadyRegisteredExceptionRes = async (parsedOutput, context) => {
791
- const body = parsedOutput.body;
792
- const deserialized = smithyClient._json(body);
793
- const exception = new DeveloperUserAlreadyRegisteredException({
794
- $metadata: deserializeMetadata(parsedOutput),
795
- ...deserialized,
796
- });
797
- return smithyClient.decorateServiceException(exception, body);
798
- };
799
- const de_ExternalServiceExceptionRes = async (parsedOutput, context) => {
800
- const body = parsedOutput.body;
801
- const deserialized = smithyClient._json(body);
802
- const exception = new ExternalServiceException({
803
- $metadata: deserializeMetadata(parsedOutput),
804
- ...deserialized,
805
- });
806
- return smithyClient.decorateServiceException(exception, body);
807
- };
808
- const de_InternalErrorExceptionRes = async (parsedOutput, context) => {
809
- const body = parsedOutput.body;
810
- const deserialized = smithyClient._json(body);
811
- const exception = new InternalErrorException({
812
- $metadata: deserializeMetadata(parsedOutput),
813
- ...deserialized,
814
- });
815
- return smithyClient.decorateServiceException(exception, body);
816
- };
817
- const de_InvalidIdentityPoolConfigurationExceptionRes = async (parsedOutput, context) => {
818
- const body = parsedOutput.body;
819
- const deserialized = smithyClient._json(body);
820
- const exception = new InvalidIdentityPoolConfigurationException({
821
- $metadata: deserializeMetadata(parsedOutput),
822
- ...deserialized,
823
- });
824
- return smithyClient.decorateServiceException(exception, body);
825
- };
826
- const de_InvalidParameterExceptionRes = async (parsedOutput, context) => {
827
- const body = parsedOutput.body;
828
- const deserialized = smithyClient._json(body);
829
- const exception = new InvalidParameterException({
830
- $metadata: deserializeMetadata(parsedOutput),
831
- ...deserialized,
832
- });
833
- return smithyClient.decorateServiceException(exception, body);
834
- };
835
- const de_LimitExceededExceptionRes = async (parsedOutput, context) => {
836
- const body = parsedOutput.body;
837
- const deserialized = smithyClient._json(body);
838
- const exception = new LimitExceededException({
839
- $metadata: deserializeMetadata(parsedOutput),
840
- ...deserialized,
841
- });
842
- return smithyClient.decorateServiceException(exception, body);
843
- };
844
- const de_NotAuthorizedExceptionRes = async (parsedOutput, context) => {
845
- const body = parsedOutput.body;
846
- const deserialized = smithyClient._json(body);
847
- const exception = new NotAuthorizedException({
848
- $metadata: deserializeMetadata(parsedOutput),
849
- ...deserialized,
850
- });
851
- return smithyClient.decorateServiceException(exception, body);
852
- };
853
- const de_ResourceConflictExceptionRes = async (parsedOutput, context) => {
854
- const body = parsedOutput.body;
855
- const deserialized = smithyClient._json(body);
856
- const exception = new ResourceConflictException({
857
- $metadata: deserializeMetadata(parsedOutput),
858
- ...deserialized,
859
- });
860
- return smithyClient.decorateServiceException(exception, body);
861
- };
862
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
863
- const body = parsedOutput.body;
864
- const deserialized = smithyClient._json(body);
865
- const exception = new ResourceNotFoundException({
866
- $metadata: deserializeMetadata(parsedOutput),
867
- ...deserialized,
868
- });
869
- return smithyClient.decorateServiceException(exception, body);
870
- };
871
- const de_TooManyRequestsExceptionRes = async (parsedOutput, context) => {
872
- const body = parsedOutput.body;
873
- const deserialized = smithyClient._json(body);
874
- const exception = new TooManyRequestsException({
875
- $metadata: deserializeMetadata(parsedOutput),
876
- ...deserialized,
877
- });
878
- return smithyClient.decorateServiceException(exception, body);
879
- };
880
- const de_Credentials = (output, context) => {
881
- return smithyClient.take(output, {
882
- AccessKeyId: smithyClient.expectString,
883
- Expiration: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
884
- SecretKey: smithyClient.expectString,
885
- SessionToken: smithyClient.expectString,
886
- });
887
- };
888
- const de_GetCredentialsForIdentityResponse = (output, context) => {
889
- return smithyClient.take(output, {
890
- Credentials: (_) => de_Credentials(_),
891
- IdentityId: smithyClient.expectString,
892
- });
893
- };
894
- const de_IdentitiesList = (output, context) => {
895
- const retVal = (output || [])
896
- .filter((e) => e != null)
897
- .map((entry) => {
898
- return de_IdentityDescription(entry);
899
- });
900
- return retVal;
901
- };
902
- const de_IdentityDescription = (output, context) => {
903
- return smithyClient.take(output, {
904
- CreationDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
905
- IdentityId: smithyClient.expectString,
906
- LastModifiedDate: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
907
- Logins: smithyClient._json,
908
- });
909
- };
910
- const de_ListIdentitiesResponse = (output, context) => {
911
- return smithyClient.take(output, {
912
- Identities: (_) => de_IdentitiesList(_),
913
- IdentityPoolId: smithyClient.expectString,
914
- NextToken: smithyClient.expectString,
915
- });
916
- };
917
- const deserializeMetadata = (output) => ({
918
- httpStatusCode: output.statusCode,
919
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
920
- extendedRequestId: output.headers["x-amz-id-2"],
921
- cfId: output.headers["x-amz-cf-id"],
922
- });
923
- const throwDefaultError = smithyClient.withBaseException(CognitoIdentityServiceException);
924
- const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
925
- const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
926
- const contents = {
927
- protocol,
928
- hostname,
929
- port,
930
- method: "POST",
931
- path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
932
- headers,
933
- };
934
- if (body !== undefined) {
935
- contents.body = body;
936
- }
937
- return new protocolHttp.HttpRequest(contents);
938
- };
939
- function sharedHeaders(operation) {
940
- return {
941
- "content-type": "application/x-amz-json-1.1",
942
- "x-amz-target": `AWSCognitoIdentityService.${operation}`,
943
- };
944
- }
270
+
271
+ const _ACF = "AllowClassicFlow";
272
+ const _AI = "AccountId";
273
+ const _AKI = "AccessKeyId";
274
+ const _ARR = "AmbiguousRoleResolution";
275
+ const _AUI = "AllowUnauthenticatedIdentities";
276
+ const _C = "Credentials";
277
+ const _CD = "CreationDate";
278
+ const _CI = "ClientId";
279
+ const _CIP = "CognitoIdentityProvider";
280
+ const _CIPI = "CreateIdentityPoolInput";
281
+ const _CIPL = "CognitoIdentityProviderList";
282
+ const _CIPo = "CognitoIdentityProviders";
283
+ const _CIPr = "CreateIdentityPool";
284
+ const _CME = "ConcurrentModificationException";
285
+ const _CRA = "CustomRoleArn";
286
+ const _Cl = "Claim";
287
+ const _DI = "DeleteIdentities";
288
+ const _DII = "DeleteIdentitiesInput";
289
+ const _DIIe = "DescribeIdentityInput";
290
+ const _DIP = "DeleteIdentityPool";
291
+ const _DIPI = "DeleteIdentityPoolInput";
292
+ const _DIPIe = "DescribeIdentityPoolInput";
293
+ const _DIPe = "DescribeIdentityPool";
294
+ const _DIR = "DeleteIdentitiesResponse";
295
+ const _DIe = "DescribeIdentity";
296
+ const _DPN = "DeveloperProviderName";
297
+ const _DUARE = "DeveloperUserAlreadyRegisteredException";
298
+ const _DUI = "DeveloperUserIdentifier";
299
+ const _DUIL = "DeveloperUserIdentifierList";
300
+ const _DUIe = "DestinationUserIdentifier";
301
+ const _E = "Expiration";
302
+ const _EC = "ErrorCode";
303
+ const _ESE = "ExternalServiceException";
304
+ const _GCFI = "GetCredentialsForIdentity";
305
+ const _GCFII = "GetCredentialsForIdentityInput";
306
+ const _GCFIR = "GetCredentialsForIdentityResponse";
307
+ const _GI = "GetId";
308
+ const _GII = "GetIdInput";
309
+ const _GIPR = "GetIdentityPoolRoles";
310
+ const _GIPRI = "GetIdentityPoolRolesInput";
311
+ const _GIPRR = "GetIdentityPoolRolesResponse";
312
+ const _GIR = "GetIdResponse";
313
+ const _GOIT = "GetOpenIdToken";
314
+ const _GOITFDI = "GetOpenIdTokenForDeveloperIdentity";
315
+ const _GOITFDII = "GetOpenIdTokenForDeveloperIdentityInput";
316
+ const _GOITFDIR = "GetOpenIdTokenForDeveloperIdentityResponse";
317
+ const _GOITI = "GetOpenIdTokenInput";
318
+ const _GOITR = "GetOpenIdTokenResponse";
319
+ const _GPTAM = "GetPrincipalTagAttributeMap";
320
+ const _GPTAMI = "GetPrincipalTagAttributeMapInput";
321
+ const _GPTAMR = "GetPrincipalTagAttributeMapResponse";
322
+ const _HD = "HideDisabled";
323
+ const _I = "Identities";
324
+ const _ID = "IdentityDescription";
325
+ const _IEE = "InternalErrorException";
326
+ const _II = "IdentityId";
327
+ const _IIPCE = "InvalidIdentityPoolConfigurationException";
328
+ const _IITD = "IdentityIdsToDelete";
329
+ const _IL = "IdentitiesList";
330
+ const _IP = "IdentityPool";
331
+ const _IPE = "InvalidParameterException";
332
+ const _IPI = "IdentityPoolId";
333
+ const _IPL = "IdentityPoolsList";
334
+ const _IPN = "IdentityPoolName";
335
+ const _IPNd = "IdentityProviderName";
336
+ const _IPSD = "IdentityPoolShortDescription";
337
+ const _IPT = "IdentityProviderToken";
338
+ const _IPTd = "IdentityPoolTags";
339
+ const _IPd = "IdentityPools";
340
+ const _L = "Logins";
341
+ const _LDI = "LookupDeveloperIdentity";
342
+ const _LDII = "LookupDeveloperIdentityInput";
343
+ const _LDIR = "LookupDeveloperIdentityResponse";
344
+ const _LEE = "LimitExceededException";
345
+ const _LI = "ListIdentities";
346
+ const _LII = "ListIdentitiesInput";
347
+ const _LIP = "ListIdentityPools";
348
+ const _LIPI = "ListIdentityPoolsInput";
349
+ const _LIPR = "ListIdentityPoolsResponse";
350
+ const _LIR = "ListIdentitiesResponse";
351
+ const _LM = "LoginsMap";
352
+ const _LMD = "LastModifiedDate";
353
+ const _LTFR = "ListTagsForResource";
354
+ const _LTFRI = "ListTagsForResourceInput";
355
+ const _LTFRR = "ListTagsForResourceResponse";
356
+ const _LTR = "LoginsToRemove";
357
+ const _MDI = "MergeDeveloperIdentities";
358
+ const _MDII = "MergeDeveloperIdentitiesInput";
359
+ const _MDIR = "MergeDeveloperIdentitiesResponse";
360
+ const _MR = "MaxResults";
361
+ const _MRL = "MappingRulesList";
362
+ const _MRa = "MappingRule";
363
+ const _MT = "MatchType";
364
+ const _NAE = "NotAuthorizedException";
365
+ const _NT = "NextToken";
366
+ const _OICPARN = "OpenIdConnectProviderARNs";
367
+ const _OIDCT = "OIDCToken";
368
+ const _PN = "ProviderName";
369
+ const _PT = "PrincipalTags";
370
+ const _R = "Roles";
371
+ const _RA = "ResourceArn";
372
+ const _RARN = "RoleARN";
373
+ const _RC = "RulesConfiguration";
374
+ const _RCE = "ResourceConflictException";
375
+ const _RCT = "RulesConfigurationType";
376
+ const _RM = "RoleMappings";
377
+ const _RMM = "RoleMappingMap";
378
+ const _RMo = "RoleMapping";
379
+ const _RNFE = "ResourceNotFoundException";
380
+ const _Ru = "Rules";
381
+ const _SIPR = "SetIdentityPoolRoles";
382
+ const _SIPRI = "SetIdentityPoolRolesInput";
383
+ const _SK = "SecretKey";
384
+ const _SKS = "SecretKeyString";
385
+ const _SLP = "SupportedLoginProviders";
386
+ const _SPARN = "SamlProviderARNs";
387
+ const _SPTAM = "SetPrincipalTagAttributeMap";
388
+ const _SPTAMI = "SetPrincipalTagAttributeMapInput";
389
+ const _SPTAMR = "SetPrincipalTagAttributeMapResponse";
390
+ const _SSTC = "ServerSideTokenCheck";
391
+ const _ST = "SessionToken";
392
+ const _SUI = "SourceUserIdentifier";
393
+ const _T = "Token";
394
+ const _TD = "TokenDuration";
395
+ const _TK = "TagKeys";
396
+ const _TMRE = "TooManyRequestsException";
397
+ const _TR = "TagResource";
398
+ const _TRI = "TagResourceInput";
399
+ const _TRR = "TagResourceResponse";
400
+ const _Ta = "Tags";
401
+ const _Ty = "Type";
402
+ const _UD = "UseDefaults";
403
+ const _UDI = "UnlinkDeveloperIdentity";
404
+ const _UDII = "UnlinkDeveloperIdentityInput";
405
+ const _UI = "UnlinkIdentity";
406
+ const _UII = "UnprocessedIdentityIds";
407
+ const _UIIL = "UnprocessedIdentityIdList";
408
+ const _UIIn = "UnlinkIdentityInput";
409
+ const _UIInp = "UnprocessedIdentityId";
410
+ const _UIP = "UpdateIdentityPool";
411
+ const _UR = "UntagResource";
412
+ const _URI = "UntagResourceInput";
413
+ const _URR = "UntagResourceResponse";
414
+ const _V = "Value";
415
+ const _c = "client";
416
+ const _e = "error";
417
+ const _hE = "httpError";
418
+ const _m = "message";
419
+ const _s = "server";
420
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cognitoidentity";
421
+ const n0 = "com.amazonaws.cognitoidentity";
422
+ var IdentityProviderToken = [0, n0, _IPT, 8, 0];
423
+ var OIDCToken = [0, n0, _OIDCT, 8, 0];
424
+ var SecretKeyString = [0, n0, _SKS, 8, 0];
425
+ var CognitoIdentityProvider = [3, n0, _CIP, 0, [_PN, _CI, _SSTC], [0, 0, 2]];
426
+ var ConcurrentModificationException = [
427
+ -3,
428
+ n0,
429
+ _CME,
430
+ {
431
+ [_e]: _c,
432
+ [_hE]: 400,
433
+ },
434
+ [_m],
435
+ [0],
436
+ ];
437
+ schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException, ConcurrentModificationException$1);
438
+ var CreateIdentityPoolInput = [
439
+ 3,
440
+ n0,
441
+ _CIPI,
442
+ 0,
443
+ [_IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
444
+ [0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0],
445
+ ];
446
+ var Credentials = [
447
+ 3,
448
+ n0,
449
+ _C,
450
+ 0,
451
+ [_AKI, _SK, _ST, _E],
452
+ [0, [() => SecretKeyString, 0], 0, 4],
453
+ ];
454
+ var DeleteIdentitiesInput = [3, n0, _DII, 0, [_IITD], [64 | 0]];
455
+ var DeleteIdentitiesResponse = [
456
+ 3,
457
+ n0,
458
+ _DIR,
459
+ 0,
460
+ [_UII],
461
+ [() => UnprocessedIdentityIdList],
462
+ ];
463
+ var DeleteIdentityPoolInput = [3, n0, _DIPI, 0, [_IPI], [0]];
464
+ var DescribeIdentityInput = [3, n0, _DIIe, 0, [_II], [0]];
465
+ var DescribeIdentityPoolInput = [3, n0, _DIPIe, 0, [_IPI], [0]];
466
+ var DeveloperUserAlreadyRegisteredException = [
467
+ -3,
468
+ n0,
469
+ _DUARE,
470
+ {
471
+ [_e]: _c,
472
+ [_hE]: 400,
473
+ },
474
+ [_m],
475
+ [0],
476
+ ];
477
+ schema.TypeRegistry.for(n0).registerError(DeveloperUserAlreadyRegisteredException, DeveloperUserAlreadyRegisteredException$1);
478
+ var ExternalServiceException = [
479
+ -3,
480
+ n0,
481
+ _ESE,
482
+ {
483
+ [_e]: _c,
484
+ [_hE]: 400,
485
+ },
486
+ [_m],
487
+ [0],
488
+ ];
489
+ schema.TypeRegistry.for(n0).registerError(ExternalServiceException, ExternalServiceException$1);
490
+ var GetCredentialsForIdentityInput = [
491
+ 3,
492
+ n0,
493
+ _GCFII,
494
+ 0,
495
+ [_II, _L, _CRA],
496
+ [0, [() => LoginsMap, 0], 0],
497
+ ];
498
+ var GetCredentialsForIdentityResponse = [
499
+ 3,
500
+ n0,
501
+ _GCFIR,
502
+ 0,
503
+ [_II, _C],
504
+ [0, [() => Credentials, 0]],
505
+ ];
506
+ var GetIdentityPoolRolesInput = [3, n0, _GIPRI, 0, [_IPI], [0]];
507
+ var GetIdentityPoolRolesResponse = [
508
+ 3,
509
+ n0,
510
+ _GIPRR,
511
+ 0,
512
+ [_IPI, _R, _RM],
513
+ [0, 128 | 0, () => RoleMappingMap],
514
+ ];
515
+ var GetIdInput = [3, n0, _GII, 0, [_AI, _IPI, _L], [0, 0, [() => LoginsMap, 0]]];
516
+ var GetIdResponse = [3, n0, _GIR, 0, [_II], [0]];
517
+ var GetOpenIdTokenForDeveloperIdentityInput = [
518
+ 3,
519
+ n0,
520
+ _GOITFDII,
521
+ 0,
522
+ [_IPI, _II, _L, _PT, _TD],
523
+ [0, 0, [() => LoginsMap, 0], 128 | 0, 1],
524
+ ];
525
+ var GetOpenIdTokenForDeveloperIdentityResponse = [
526
+ 3,
527
+ n0,
528
+ _GOITFDIR,
529
+ 0,
530
+ [_II, _T],
531
+ [0, [() => OIDCToken, 0]],
532
+ ];
533
+ var GetOpenIdTokenInput = [3, n0, _GOITI, 0, [_II, _L], [0, [() => LoginsMap, 0]]];
534
+ var GetOpenIdTokenResponse = [3, n0, _GOITR, 0, [_II, _T], [0, [() => OIDCToken, 0]]];
535
+ var GetPrincipalTagAttributeMapInput = [3, n0, _GPTAMI, 0, [_IPI, _IPNd], [0, 0]];
536
+ var GetPrincipalTagAttributeMapResponse = [
537
+ 3,
538
+ n0,
539
+ _GPTAMR,
540
+ 0,
541
+ [_IPI, _IPNd, _UD, _PT],
542
+ [0, 0, 2, 128 | 0],
543
+ ];
544
+ var IdentityDescription = [3, n0, _ID, 0, [_II, _L, _CD, _LMD], [0, 64 | 0, 4, 4]];
545
+ var IdentityPool = [
546
+ 3,
547
+ n0,
548
+ _IP,
549
+ 0,
550
+ [_IPI, _IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
551
+ [0, 0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0],
552
+ ];
553
+ var IdentityPoolShortDescription = [3, n0, _IPSD, 0, [_IPI, _IPN], [0, 0]];
554
+ var InternalErrorException = [
555
+ -3,
556
+ n0,
557
+ _IEE,
558
+ {
559
+ [_e]: _s,
560
+ },
561
+ [_m],
562
+ [0],
563
+ ];
564
+ schema.TypeRegistry.for(n0).registerError(InternalErrorException, InternalErrorException$1);
565
+ var InvalidIdentityPoolConfigurationException = [
566
+ -3,
567
+ n0,
568
+ _IIPCE,
569
+ {
570
+ [_e]: _c,
571
+ [_hE]: 400,
572
+ },
573
+ [_m],
574
+ [0],
575
+ ];
576
+ schema.TypeRegistry.for(n0).registerError(InvalidIdentityPoolConfigurationException, InvalidIdentityPoolConfigurationException$1);
577
+ var InvalidParameterException = [
578
+ -3,
579
+ n0,
580
+ _IPE,
581
+ {
582
+ [_e]: _c,
583
+ [_hE]: 400,
584
+ },
585
+ [_m],
586
+ [0],
587
+ ];
588
+ schema.TypeRegistry.for(n0).registerError(InvalidParameterException, InvalidParameterException$1);
589
+ var LimitExceededException = [
590
+ -3,
591
+ n0,
592
+ _LEE,
593
+ {
594
+ [_e]: _c,
595
+ [_hE]: 400,
596
+ },
597
+ [_m],
598
+ [0],
599
+ ];
600
+ schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
601
+ var ListIdentitiesInput = [3, n0, _LII, 0, [_IPI, _MR, _NT, _HD], [0, 1, 0, 2]];
602
+ var ListIdentitiesResponse = [
603
+ 3,
604
+ n0,
605
+ _LIR,
606
+ 0,
607
+ [_IPI, _I, _NT],
608
+ [0, () => IdentitiesList, 0],
609
+ ];
610
+ var ListIdentityPoolsInput = [3, n0, _LIPI, 0, [_MR, _NT], [1, 0]];
611
+ var ListIdentityPoolsResponse = [
612
+ 3,
613
+ n0,
614
+ _LIPR,
615
+ 0,
616
+ [_IPd, _NT],
617
+ [() => IdentityPoolsList, 0],
618
+ ];
619
+ var ListTagsForResourceInput = [3, n0, _LTFRI, 0, [_RA], [0]];
620
+ var ListTagsForResourceResponse = [3, n0, _LTFRR, 0, [_Ta], [128 | 0]];
621
+ var LookupDeveloperIdentityInput = [
622
+ 3,
623
+ n0,
624
+ _LDII,
625
+ 0,
626
+ [_IPI, _II, _DUI, _MR, _NT],
627
+ [0, 0, 0, 1, 0],
628
+ ];
629
+ var LookupDeveloperIdentityResponse = [
630
+ 3,
631
+ n0,
632
+ _LDIR,
633
+ 0,
634
+ [_II, _DUIL, _NT],
635
+ [0, 64 | 0, 0],
636
+ ];
637
+ var MappingRule = [3, n0, _MRa, 0, [_Cl, _MT, _V, _RARN], [0, 0, 0, 0]];
638
+ var MergeDeveloperIdentitiesInput = [
639
+ 3,
640
+ n0,
641
+ _MDII,
642
+ 0,
643
+ [_SUI, _DUIe, _DPN, _IPI],
644
+ [0, 0, 0, 0],
645
+ ];
646
+ var MergeDeveloperIdentitiesResponse = [3, n0, _MDIR, 0, [_II], [0]];
647
+ var NotAuthorizedException = [
648
+ -3,
649
+ n0,
650
+ _NAE,
651
+ {
652
+ [_e]: _c,
653
+ [_hE]: 403,
654
+ },
655
+ [_m],
656
+ [0],
657
+ ];
658
+ schema.TypeRegistry.for(n0).registerError(NotAuthorizedException, NotAuthorizedException$1);
659
+ var ResourceConflictException = [
660
+ -3,
661
+ n0,
662
+ _RCE,
663
+ {
664
+ [_e]: _c,
665
+ [_hE]: 409,
666
+ },
667
+ [_m],
668
+ [0],
669
+ ];
670
+ schema.TypeRegistry.for(n0).registerError(ResourceConflictException, ResourceConflictException$1);
671
+ var ResourceNotFoundException = [
672
+ -3,
673
+ n0,
674
+ _RNFE,
675
+ {
676
+ [_e]: _c,
677
+ [_hE]: 404,
678
+ },
679
+ [_m],
680
+ [0],
681
+ ];
682
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
683
+ var RoleMapping = [
684
+ 3,
685
+ n0,
686
+ _RMo,
687
+ 0,
688
+ [_Ty, _ARR, _RC],
689
+ [0, 0, () => RulesConfigurationType],
690
+ ];
691
+ var RulesConfigurationType = [3, n0, _RCT, 0, [_Ru], [() => MappingRulesList]];
692
+ var SetIdentityPoolRolesInput = [
693
+ 3,
694
+ n0,
695
+ _SIPRI,
696
+ 0,
697
+ [_IPI, _R, _RM],
698
+ [0, 128 | 0, () => RoleMappingMap],
699
+ ];
700
+ var SetPrincipalTagAttributeMapInput = [
701
+ 3,
702
+ n0,
703
+ _SPTAMI,
704
+ 0,
705
+ [_IPI, _IPNd, _UD, _PT],
706
+ [0, 0, 2, 128 | 0],
707
+ ];
708
+ var SetPrincipalTagAttributeMapResponse = [
709
+ 3,
710
+ n0,
711
+ _SPTAMR,
712
+ 0,
713
+ [_IPI, _IPNd, _UD, _PT],
714
+ [0, 0, 2, 128 | 0],
715
+ ];
716
+ var TagResourceInput = [3, n0, _TRI, 0, [_RA, _Ta], [0, 128 | 0]];
717
+ var TagResourceResponse = [3, n0, _TRR, 0, [], []];
718
+ var TooManyRequestsException = [
719
+ -3,
720
+ n0,
721
+ _TMRE,
722
+ {
723
+ [_e]: _c,
724
+ [_hE]: 429,
725
+ },
726
+ [_m],
727
+ [0],
728
+ ];
729
+ schema.TypeRegistry.for(n0).registerError(TooManyRequestsException, TooManyRequestsException$1);
730
+ var UnlinkDeveloperIdentityInput = [
731
+ 3,
732
+ n0,
733
+ _UDII,
734
+ 0,
735
+ [_II, _IPI, _DPN, _DUI],
736
+ [0, 0, 0, 0],
737
+ ];
738
+ var UnlinkIdentityInput = [
739
+ 3,
740
+ n0,
741
+ _UIIn,
742
+ 0,
743
+ [_II, _L, _LTR],
744
+ [0, [() => LoginsMap, 0], 64 | 0],
745
+ ];
746
+ var UnprocessedIdentityId = [3, n0, _UIInp, 0, [_II, _EC], [0, 0]];
747
+ var UntagResourceInput = [3, n0, _URI, 0, [_RA, _TK], [0, 64 | 0]];
748
+ var UntagResourceResponse = [3, n0, _URR, 0, [], []];
749
+ var __Unit = "unit";
750
+ var CognitoIdentityServiceException = [-3, _sm, "CognitoIdentityServiceException", 0, [], []];
751
+ schema.TypeRegistry.for(_sm).registerError(CognitoIdentityServiceException, CognitoIdentityServiceException$1);
752
+ var CognitoIdentityProviderList = [1, n0, _CIPL, 0, () => CognitoIdentityProvider];
753
+ var IdentitiesList = [1, n0, _IL, 0, () => IdentityDescription];
754
+ var IdentityPoolsList = [1, n0, _IPL, 0, () => IdentityPoolShortDescription];
755
+ var MappingRulesList = [1, n0, _MRL, 0, () => MappingRule];
756
+ var UnprocessedIdentityIdList = [1, n0, _UIIL, 0, () => UnprocessedIdentityId];
757
+ var LoginsMap = [2, n0, _LM, 0, [0, 0], [() => IdentityProviderToken, 0]];
758
+ var RoleMappingMap = [2, n0, _RMM, 0, 0, () => RoleMapping];
759
+ var CreateIdentityPool = [
760
+ 9,
761
+ n0,
762
+ _CIPr,
763
+ 0,
764
+ () => CreateIdentityPoolInput,
765
+ () => IdentityPool,
766
+ ];
767
+ var DeleteIdentities = [
768
+ 9,
769
+ n0,
770
+ _DI,
771
+ 0,
772
+ () => DeleteIdentitiesInput,
773
+ () => DeleteIdentitiesResponse,
774
+ ];
775
+ var DeleteIdentityPool = [9, n0, _DIP, 0, () => DeleteIdentityPoolInput, () => __Unit];
776
+ var DescribeIdentity = [
777
+ 9,
778
+ n0,
779
+ _DIe,
780
+ 0,
781
+ () => DescribeIdentityInput,
782
+ () => IdentityDescription,
783
+ ];
784
+ var DescribeIdentityPool = [
785
+ 9,
786
+ n0,
787
+ _DIPe,
788
+ 0,
789
+ () => DescribeIdentityPoolInput,
790
+ () => IdentityPool,
791
+ ];
792
+ var GetCredentialsForIdentity = [
793
+ 9,
794
+ n0,
795
+ _GCFI,
796
+ 0,
797
+ () => GetCredentialsForIdentityInput,
798
+ () => GetCredentialsForIdentityResponse,
799
+ ];
800
+ var GetId = [9, n0, _GI, 0, () => GetIdInput, () => GetIdResponse];
801
+ var GetIdentityPoolRoles = [
802
+ 9,
803
+ n0,
804
+ _GIPR,
805
+ 0,
806
+ () => GetIdentityPoolRolesInput,
807
+ () => GetIdentityPoolRolesResponse,
808
+ ];
809
+ var GetOpenIdToken = [
810
+ 9,
811
+ n0,
812
+ _GOIT,
813
+ 0,
814
+ () => GetOpenIdTokenInput,
815
+ () => GetOpenIdTokenResponse,
816
+ ];
817
+ var GetOpenIdTokenForDeveloperIdentity = [
818
+ 9,
819
+ n0,
820
+ _GOITFDI,
821
+ 0,
822
+ () => GetOpenIdTokenForDeveloperIdentityInput,
823
+ () => GetOpenIdTokenForDeveloperIdentityResponse,
824
+ ];
825
+ var GetPrincipalTagAttributeMap = [
826
+ 9,
827
+ n0,
828
+ _GPTAM,
829
+ 0,
830
+ () => GetPrincipalTagAttributeMapInput,
831
+ () => GetPrincipalTagAttributeMapResponse,
832
+ ];
833
+ var ListIdentities = [
834
+ 9,
835
+ n0,
836
+ _LI,
837
+ 0,
838
+ () => ListIdentitiesInput,
839
+ () => ListIdentitiesResponse,
840
+ ];
841
+ var ListIdentityPools = [
842
+ 9,
843
+ n0,
844
+ _LIP,
845
+ 0,
846
+ () => ListIdentityPoolsInput,
847
+ () => ListIdentityPoolsResponse,
848
+ ];
849
+ var ListTagsForResource = [
850
+ 9,
851
+ n0,
852
+ _LTFR,
853
+ 0,
854
+ () => ListTagsForResourceInput,
855
+ () => ListTagsForResourceResponse,
856
+ ];
857
+ var LookupDeveloperIdentity = [
858
+ 9,
859
+ n0,
860
+ _LDI,
861
+ 0,
862
+ () => LookupDeveloperIdentityInput,
863
+ () => LookupDeveloperIdentityResponse,
864
+ ];
865
+ var MergeDeveloperIdentities = [
866
+ 9,
867
+ n0,
868
+ _MDI,
869
+ 0,
870
+ () => MergeDeveloperIdentitiesInput,
871
+ () => MergeDeveloperIdentitiesResponse,
872
+ ];
873
+ var SetIdentityPoolRoles = [
874
+ 9,
875
+ n0,
876
+ _SIPR,
877
+ 0,
878
+ () => SetIdentityPoolRolesInput,
879
+ () => __Unit,
880
+ ];
881
+ var SetPrincipalTagAttributeMap = [
882
+ 9,
883
+ n0,
884
+ _SPTAM,
885
+ 0,
886
+ () => SetPrincipalTagAttributeMapInput,
887
+ () => SetPrincipalTagAttributeMapResponse,
888
+ ];
889
+ var TagResource = [9, n0, _TR, 0, () => TagResourceInput, () => TagResourceResponse];
890
+ var UnlinkDeveloperIdentity = [
891
+ 9,
892
+ n0,
893
+ _UDI,
894
+ 0,
895
+ () => UnlinkDeveloperIdentityInput,
896
+ () => __Unit,
897
+ ];
898
+ var UnlinkIdentity = [9, n0, _UI, 0, () => UnlinkIdentityInput, () => __Unit];
899
+ var UntagResource = [
900
+ 9,
901
+ n0,
902
+ _UR,
903
+ 0,
904
+ () => UntagResourceInput,
905
+ () => UntagResourceResponse,
906
+ ];
907
+ var UpdateIdentityPool = [9, n0, _UIP, 0, () => IdentityPool, () => IdentityPool];
945
908
 
946
909
  class CreateIdentityPoolCommand extends smithyClient.Command
947
910
  .classBuilder()
948
911
  .ep(commonParams)
949
912
  .m(function (Command, cs, config, o) {
950
- return [
951
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
952
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
953
- ];
913
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
954
914
  })
955
915
  .s("AWSCognitoIdentityService", "CreateIdentityPool", {})
956
916
  .n("CognitoIdentityClient", "CreateIdentityPoolCommand")
957
- .f(void 0, void 0)
958
- .ser(se_CreateIdentityPoolCommand)
959
- .de(de_CreateIdentityPoolCommand)
917
+ .sc(CreateIdentityPool)
960
918
  .build() {
961
919
  }
962
920
 
@@ -964,16 +922,11 @@ class DeleteIdentitiesCommand extends smithyClient.Command
964
922
  .classBuilder()
965
923
  .ep(commonParams)
966
924
  .m(function (Command, cs, config, o) {
967
- return [
968
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
969
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
970
- ];
925
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
971
926
  })
972
927
  .s("AWSCognitoIdentityService", "DeleteIdentities", {})
973
928
  .n("CognitoIdentityClient", "DeleteIdentitiesCommand")
974
- .f(void 0, void 0)
975
- .ser(se_DeleteIdentitiesCommand)
976
- .de(de_DeleteIdentitiesCommand)
929
+ .sc(DeleteIdentities)
977
930
  .build() {
978
931
  }
979
932
 
@@ -981,16 +934,11 @@ class DeleteIdentityPoolCommand extends smithyClient.Command
981
934
  .classBuilder()
982
935
  .ep(commonParams)
983
936
  .m(function (Command, cs, config, o) {
984
- return [
985
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
986
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
987
- ];
937
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
988
938
  })
989
939
  .s("AWSCognitoIdentityService", "DeleteIdentityPool", {})
990
940
  .n("CognitoIdentityClient", "DeleteIdentityPoolCommand")
991
- .f(void 0, void 0)
992
- .ser(se_DeleteIdentityPoolCommand)
993
- .de(de_DeleteIdentityPoolCommand)
941
+ .sc(DeleteIdentityPool)
994
942
  .build() {
995
943
  }
996
944
 
@@ -998,16 +946,11 @@ class DescribeIdentityCommand extends smithyClient.Command
998
946
  .classBuilder()
999
947
  .ep(commonParams)
1000
948
  .m(function (Command, cs, config, o) {
1001
- return [
1002
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1003
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1004
- ];
949
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1005
950
  })
1006
951
  .s("AWSCognitoIdentityService", "DescribeIdentity", {})
1007
952
  .n("CognitoIdentityClient", "DescribeIdentityCommand")
1008
- .f(void 0, void 0)
1009
- .ser(se_DescribeIdentityCommand)
1010
- .de(de_DescribeIdentityCommand)
953
+ .sc(DescribeIdentity)
1011
954
  .build() {
1012
955
  }
1013
956
 
@@ -1015,16 +958,11 @@ class DescribeIdentityPoolCommand extends smithyClient.Command
1015
958
  .classBuilder()
1016
959
  .ep(commonParams)
1017
960
  .m(function (Command, cs, config, o) {
1018
- return [
1019
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1020
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1021
- ];
961
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1022
962
  })
1023
963
  .s("AWSCognitoIdentityService", "DescribeIdentityPool", {})
1024
964
  .n("CognitoIdentityClient", "DescribeIdentityPoolCommand")
1025
- .f(void 0, void 0)
1026
- .ser(se_DescribeIdentityPoolCommand)
1027
- .de(de_DescribeIdentityPoolCommand)
965
+ .sc(DescribeIdentityPool)
1028
966
  .build() {
1029
967
  }
1030
968
 
@@ -1032,16 +970,11 @@ class GetCredentialsForIdentityCommand extends smithyClient.Command
1032
970
  .classBuilder()
1033
971
  .ep(commonParams)
1034
972
  .m(function (Command, cs, config, o) {
1035
- return [
1036
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1037
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1038
- ];
973
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1039
974
  })
1040
975
  .s("AWSCognitoIdentityService", "GetCredentialsForIdentity", {})
1041
976
  .n("CognitoIdentityClient", "GetCredentialsForIdentityCommand")
1042
- .f(GetCredentialsForIdentityInputFilterSensitiveLog, GetCredentialsForIdentityResponseFilterSensitiveLog)
1043
- .ser(se_GetCredentialsForIdentityCommand)
1044
- .de(de_GetCredentialsForIdentityCommand)
977
+ .sc(GetCredentialsForIdentity)
1045
978
  .build() {
1046
979
  }
1047
980
 
@@ -1049,16 +982,11 @@ class GetIdCommand extends smithyClient.Command
1049
982
  .classBuilder()
1050
983
  .ep(commonParams)
1051
984
  .m(function (Command, cs, config, o) {
1052
- return [
1053
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1054
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1055
- ];
985
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1056
986
  })
1057
987
  .s("AWSCognitoIdentityService", "GetId", {})
1058
988
  .n("CognitoIdentityClient", "GetIdCommand")
1059
- .f(GetIdInputFilterSensitiveLog, void 0)
1060
- .ser(se_GetIdCommand)
1061
- .de(de_GetIdCommand)
989
+ .sc(GetId)
1062
990
  .build() {
1063
991
  }
1064
992
 
@@ -1066,16 +994,11 @@ class GetIdentityPoolRolesCommand extends smithyClient.Command
1066
994
  .classBuilder()
1067
995
  .ep(commonParams)
1068
996
  .m(function (Command, cs, config, o) {
1069
- return [
1070
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1071
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1072
- ];
997
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1073
998
  })
1074
999
  .s("AWSCognitoIdentityService", "GetIdentityPoolRoles", {})
1075
1000
  .n("CognitoIdentityClient", "GetIdentityPoolRolesCommand")
1076
- .f(void 0, void 0)
1077
- .ser(se_GetIdentityPoolRolesCommand)
1078
- .de(de_GetIdentityPoolRolesCommand)
1001
+ .sc(GetIdentityPoolRoles)
1079
1002
  .build() {
1080
1003
  }
1081
1004
 
@@ -1083,16 +1006,11 @@ class GetOpenIdTokenCommand extends smithyClient.Command
1083
1006
  .classBuilder()
1084
1007
  .ep(commonParams)
1085
1008
  .m(function (Command, cs, config, o) {
1086
- return [
1087
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1088
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1089
- ];
1009
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1090
1010
  })
1091
1011
  .s("AWSCognitoIdentityService", "GetOpenIdToken", {})
1092
1012
  .n("CognitoIdentityClient", "GetOpenIdTokenCommand")
1093
- .f(GetOpenIdTokenInputFilterSensitiveLog, GetOpenIdTokenResponseFilterSensitiveLog)
1094
- .ser(se_GetOpenIdTokenCommand)
1095
- .de(de_GetOpenIdTokenCommand)
1013
+ .sc(GetOpenIdToken)
1096
1014
  .build() {
1097
1015
  }
1098
1016
 
@@ -1100,16 +1018,11 @@ class GetOpenIdTokenForDeveloperIdentityCommand extends smithyClient.Command
1100
1018
  .classBuilder()
1101
1019
  .ep(commonParams)
1102
1020
  .m(function (Command, cs, config, o) {
1103
- return [
1104
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1105
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1106
- ];
1021
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1107
1022
  })
1108
1023
  .s("AWSCognitoIdentityService", "GetOpenIdTokenForDeveloperIdentity", {})
1109
1024
  .n("CognitoIdentityClient", "GetOpenIdTokenForDeveloperIdentityCommand")
1110
- .f(GetOpenIdTokenForDeveloperIdentityInputFilterSensitiveLog, GetOpenIdTokenForDeveloperIdentityResponseFilterSensitiveLog)
1111
- .ser(se_GetOpenIdTokenForDeveloperIdentityCommand)
1112
- .de(de_GetOpenIdTokenForDeveloperIdentityCommand)
1025
+ .sc(GetOpenIdTokenForDeveloperIdentity)
1113
1026
  .build() {
1114
1027
  }
1115
1028
 
@@ -1117,16 +1030,11 @@ class GetPrincipalTagAttributeMapCommand extends smithyClient.Command
1117
1030
  .classBuilder()
1118
1031
  .ep(commonParams)
1119
1032
  .m(function (Command, cs, config, o) {
1120
- return [
1121
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1122
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1123
- ];
1033
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1124
1034
  })
1125
1035
  .s("AWSCognitoIdentityService", "GetPrincipalTagAttributeMap", {})
1126
1036
  .n("CognitoIdentityClient", "GetPrincipalTagAttributeMapCommand")
1127
- .f(void 0, void 0)
1128
- .ser(se_GetPrincipalTagAttributeMapCommand)
1129
- .de(de_GetPrincipalTagAttributeMapCommand)
1037
+ .sc(GetPrincipalTagAttributeMap)
1130
1038
  .build() {
1131
1039
  }
1132
1040
 
@@ -1134,16 +1042,11 @@ class ListIdentitiesCommand extends smithyClient.Command
1134
1042
  .classBuilder()
1135
1043
  .ep(commonParams)
1136
1044
  .m(function (Command, cs, config, o) {
1137
- return [
1138
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1139
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1140
- ];
1045
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1141
1046
  })
1142
1047
  .s("AWSCognitoIdentityService", "ListIdentities", {})
1143
1048
  .n("CognitoIdentityClient", "ListIdentitiesCommand")
1144
- .f(void 0, void 0)
1145
- .ser(se_ListIdentitiesCommand)
1146
- .de(de_ListIdentitiesCommand)
1049
+ .sc(ListIdentities)
1147
1050
  .build() {
1148
1051
  }
1149
1052
 
@@ -1151,16 +1054,11 @@ class ListIdentityPoolsCommand extends smithyClient.Command
1151
1054
  .classBuilder()
1152
1055
  .ep(commonParams)
1153
1056
  .m(function (Command, cs, config, o) {
1154
- return [
1155
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1156
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1157
- ];
1057
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1158
1058
  })
1159
1059
  .s("AWSCognitoIdentityService", "ListIdentityPools", {})
1160
1060
  .n("CognitoIdentityClient", "ListIdentityPoolsCommand")
1161
- .f(void 0, void 0)
1162
- .ser(se_ListIdentityPoolsCommand)
1163
- .de(de_ListIdentityPoolsCommand)
1061
+ .sc(ListIdentityPools)
1164
1062
  .build() {
1165
1063
  }
1166
1064
 
@@ -1168,16 +1066,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1168
1066
  .classBuilder()
1169
1067
  .ep(commonParams)
1170
1068
  .m(function (Command, cs, config, o) {
1171
- return [
1172
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1173
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1174
- ];
1069
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1175
1070
  })
1176
1071
  .s("AWSCognitoIdentityService", "ListTagsForResource", {})
1177
1072
  .n("CognitoIdentityClient", "ListTagsForResourceCommand")
1178
- .f(void 0, void 0)
1179
- .ser(se_ListTagsForResourceCommand)
1180
- .de(de_ListTagsForResourceCommand)
1073
+ .sc(ListTagsForResource)
1181
1074
  .build() {
1182
1075
  }
1183
1076
 
@@ -1185,16 +1078,11 @@ class LookupDeveloperIdentityCommand extends smithyClient.Command
1185
1078
  .classBuilder()
1186
1079
  .ep(commonParams)
1187
1080
  .m(function (Command, cs, config, o) {
1188
- return [
1189
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1190
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1191
- ];
1081
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1192
1082
  })
1193
1083
  .s("AWSCognitoIdentityService", "LookupDeveloperIdentity", {})
1194
1084
  .n("CognitoIdentityClient", "LookupDeveloperIdentityCommand")
1195
- .f(void 0, void 0)
1196
- .ser(se_LookupDeveloperIdentityCommand)
1197
- .de(de_LookupDeveloperIdentityCommand)
1085
+ .sc(LookupDeveloperIdentity)
1198
1086
  .build() {
1199
1087
  }
1200
1088
 
@@ -1202,16 +1090,11 @@ class MergeDeveloperIdentitiesCommand extends smithyClient.Command
1202
1090
  .classBuilder()
1203
1091
  .ep(commonParams)
1204
1092
  .m(function (Command, cs, config, o) {
1205
- return [
1206
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1207
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1208
- ];
1093
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1209
1094
  })
1210
1095
  .s("AWSCognitoIdentityService", "MergeDeveloperIdentities", {})
1211
1096
  .n("CognitoIdentityClient", "MergeDeveloperIdentitiesCommand")
1212
- .f(void 0, void 0)
1213
- .ser(se_MergeDeveloperIdentitiesCommand)
1214
- .de(de_MergeDeveloperIdentitiesCommand)
1097
+ .sc(MergeDeveloperIdentities)
1215
1098
  .build() {
1216
1099
  }
1217
1100
 
@@ -1219,16 +1102,11 @@ class SetIdentityPoolRolesCommand extends smithyClient.Command
1219
1102
  .classBuilder()
1220
1103
  .ep(commonParams)
1221
1104
  .m(function (Command, cs, config, o) {
1222
- return [
1223
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1224
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1225
- ];
1105
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1226
1106
  })
1227
1107
  .s("AWSCognitoIdentityService", "SetIdentityPoolRoles", {})
1228
1108
  .n("CognitoIdentityClient", "SetIdentityPoolRolesCommand")
1229
- .f(void 0, void 0)
1230
- .ser(se_SetIdentityPoolRolesCommand)
1231
- .de(de_SetIdentityPoolRolesCommand)
1109
+ .sc(SetIdentityPoolRoles)
1232
1110
  .build() {
1233
1111
  }
1234
1112
 
@@ -1236,16 +1114,11 @@ class SetPrincipalTagAttributeMapCommand extends smithyClient.Command
1236
1114
  .classBuilder()
1237
1115
  .ep(commonParams)
1238
1116
  .m(function (Command, cs, config, o) {
1239
- return [
1240
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1241
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1242
- ];
1117
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1243
1118
  })
1244
1119
  .s("AWSCognitoIdentityService", "SetPrincipalTagAttributeMap", {})
1245
1120
  .n("CognitoIdentityClient", "SetPrincipalTagAttributeMapCommand")
1246
- .f(void 0, void 0)
1247
- .ser(se_SetPrincipalTagAttributeMapCommand)
1248
- .de(de_SetPrincipalTagAttributeMapCommand)
1121
+ .sc(SetPrincipalTagAttributeMap)
1249
1122
  .build() {
1250
1123
  }
1251
1124
 
@@ -1253,16 +1126,11 @@ class TagResourceCommand extends smithyClient.Command
1253
1126
  .classBuilder()
1254
1127
  .ep(commonParams)
1255
1128
  .m(function (Command, cs, config, o) {
1256
- return [
1257
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1258
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1259
- ];
1129
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1260
1130
  })
1261
1131
  .s("AWSCognitoIdentityService", "TagResource", {})
1262
1132
  .n("CognitoIdentityClient", "TagResourceCommand")
1263
- .f(void 0, void 0)
1264
- .ser(se_TagResourceCommand)
1265
- .de(de_TagResourceCommand)
1133
+ .sc(TagResource)
1266
1134
  .build() {
1267
1135
  }
1268
1136
 
@@ -1270,16 +1138,11 @@ class UnlinkDeveloperIdentityCommand extends smithyClient.Command
1270
1138
  .classBuilder()
1271
1139
  .ep(commonParams)
1272
1140
  .m(function (Command, cs, config, o) {
1273
- return [
1274
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1275
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1276
- ];
1141
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1277
1142
  })
1278
1143
  .s("AWSCognitoIdentityService", "UnlinkDeveloperIdentity", {})
1279
1144
  .n("CognitoIdentityClient", "UnlinkDeveloperIdentityCommand")
1280
- .f(void 0, void 0)
1281
- .ser(se_UnlinkDeveloperIdentityCommand)
1282
- .de(de_UnlinkDeveloperIdentityCommand)
1145
+ .sc(UnlinkDeveloperIdentity)
1283
1146
  .build() {
1284
1147
  }
1285
1148
 
@@ -1287,16 +1150,11 @@ class UnlinkIdentityCommand extends smithyClient.Command
1287
1150
  .classBuilder()
1288
1151
  .ep(commonParams)
1289
1152
  .m(function (Command, cs, config, o) {
1290
- return [
1291
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1292
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1293
- ];
1153
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1294
1154
  })
1295
1155
  .s("AWSCognitoIdentityService", "UnlinkIdentity", {})
1296
1156
  .n("CognitoIdentityClient", "UnlinkIdentityCommand")
1297
- .f(UnlinkIdentityInputFilterSensitiveLog, void 0)
1298
- .ser(se_UnlinkIdentityCommand)
1299
- .de(de_UnlinkIdentityCommand)
1157
+ .sc(UnlinkIdentity)
1300
1158
  .build() {
1301
1159
  }
1302
1160
 
@@ -1304,16 +1162,11 @@ class UntagResourceCommand extends smithyClient.Command
1304
1162
  .classBuilder()
1305
1163
  .ep(commonParams)
1306
1164
  .m(function (Command, cs, config, o) {
1307
- return [
1308
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1309
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1310
- ];
1165
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1311
1166
  })
1312
1167
  .s("AWSCognitoIdentityService", "UntagResource", {})
1313
1168
  .n("CognitoIdentityClient", "UntagResourceCommand")
1314
- .f(void 0, void 0)
1315
- .ser(se_UntagResourceCommand)
1316
- .de(de_UntagResourceCommand)
1169
+ .sc(UntagResource)
1317
1170
  .build() {
1318
1171
  }
1319
1172
 
@@ -1321,16 +1174,11 @@ class UpdateIdentityPoolCommand extends smithyClient.Command
1321
1174
  .classBuilder()
1322
1175
  .ep(commonParams)
1323
1176
  .m(function (Command, cs, config, o) {
1324
- return [
1325
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1326
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1327
- ];
1177
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1328
1178
  })
1329
1179
  .s("AWSCognitoIdentityService", "UpdateIdentityPool", {})
1330
1180
  .n("CognitoIdentityClient", "UpdateIdentityPoolCommand")
1331
- .f(void 0, void 0)
1332
- .ser(se_UpdateIdentityPoolCommand)
1333
- .de(de_UpdateIdentityPoolCommand)
1181
+ .sc(UpdateIdentityPool)
1334
1182
  .build() {
1335
1183
  }
1336
1184
 
@@ -1376,51 +1224,42 @@ Object.defineProperty(exports, "__Client", {
1376
1224
  exports.AmbiguousRoleResolutionType = AmbiguousRoleResolutionType;
1377
1225
  exports.CognitoIdentity = CognitoIdentity;
1378
1226
  exports.CognitoIdentityClient = CognitoIdentityClient;
1379
- exports.CognitoIdentityServiceException = CognitoIdentityServiceException;
1380
- exports.ConcurrentModificationException = ConcurrentModificationException;
1227
+ exports.CognitoIdentityServiceException = CognitoIdentityServiceException$1;
1228
+ exports.ConcurrentModificationException = ConcurrentModificationException$1;
1381
1229
  exports.CreateIdentityPoolCommand = CreateIdentityPoolCommand;
1382
- exports.CredentialsFilterSensitiveLog = CredentialsFilterSensitiveLog;
1383
1230
  exports.DeleteIdentitiesCommand = DeleteIdentitiesCommand;
1384
1231
  exports.DeleteIdentityPoolCommand = DeleteIdentityPoolCommand;
1385
1232
  exports.DescribeIdentityCommand = DescribeIdentityCommand;
1386
1233
  exports.DescribeIdentityPoolCommand = DescribeIdentityPoolCommand;
1387
- exports.DeveloperUserAlreadyRegisteredException = DeveloperUserAlreadyRegisteredException;
1234
+ exports.DeveloperUserAlreadyRegisteredException = DeveloperUserAlreadyRegisteredException$1;
1388
1235
  exports.ErrorCode = ErrorCode;
1389
- exports.ExternalServiceException = ExternalServiceException;
1236
+ exports.ExternalServiceException = ExternalServiceException$1;
1390
1237
  exports.GetCredentialsForIdentityCommand = GetCredentialsForIdentityCommand;
1391
- exports.GetCredentialsForIdentityInputFilterSensitiveLog = GetCredentialsForIdentityInputFilterSensitiveLog;
1392
- exports.GetCredentialsForIdentityResponseFilterSensitiveLog = GetCredentialsForIdentityResponseFilterSensitiveLog;
1393
1238
  exports.GetIdCommand = GetIdCommand;
1394
- exports.GetIdInputFilterSensitiveLog = GetIdInputFilterSensitiveLog;
1395
1239
  exports.GetIdentityPoolRolesCommand = GetIdentityPoolRolesCommand;
1396
1240
  exports.GetOpenIdTokenCommand = GetOpenIdTokenCommand;
1397
1241
  exports.GetOpenIdTokenForDeveloperIdentityCommand = GetOpenIdTokenForDeveloperIdentityCommand;
1398
- exports.GetOpenIdTokenForDeveloperIdentityInputFilterSensitiveLog = GetOpenIdTokenForDeveloperIdentityInputFilterSensitiveLog;
1399
- exports.GetOpenIdTokenForDeveloperIdentityResponseFilterSensitiveLog = GetOpenIdTokenForDeveloperIdentityResponseFilterSensitiveLog;
1400
- exports.GetOpenIdTokenInputFilterSensitiveLog = GetOpenIdTokenInputFilterSensitiveLog;
1401
- exports.GetOpenIdTokenResponseFilterSensitiveLog = GetOpenIdTokenResponseFilterSensitiveLog;
1402
1242
  exports.GetPrincipalTagAttributeMapCommand = GetPrincipalTagAttributeMapCommand;
1403
- exports.InternalErrorException = InternalErrorException;
1404
- exports.InvalidIdentityPoolConfigurationException = InvalidIdentityPoolConfigurationException;
1405
- exports.InvalidParameterException = InvalidParameterException;
1406
- exports.LimitExceededException = LimitExceededException;
1243
+ exports.InternalErrorException = InternalErrorException$1;
1244
+ exports.InvalidIdentityPoolConfigurationException = InvalidIdentityPoolConfigurationException$1;
1245
+ exports.InvalidParameterException = InvalidParameterException$1;
1246
+ exports.LimitExceededException = LimitExceededException$1;
1407
1247
  exports.ListIdentitiesCommand = ListIdentitiesCommand;
1408
1248
  exports.ListIdentityPoolsCommand = ListIdentityPoolsCommand;
1409
1249
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1410
1250
  exports.LookupDeveloperIdentityCommand = LookupDeveloperIdentityCommand;
1411
1251
  exports.MappingRuleMatchType = MappingRuleMatchType;
1412
1252
  exports.MergeDeveloperIdentitiesCommand = MergeDeveloperIdentitiesCommand;
1413
- exports.NotAuthorizedException = NotAuthorizedException;
1414
- exports.ResourceConflictException = ResourceConflictException;
1415
- exports.ResourceNotFoundException = ResourceNotFoundException;
1253
+ exports.NotAuthorizedException = NotAuthorizedException$1;
1254
+ exports.ResourceConflictException = ResourceConflictException$1;
1255
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1416
1256
  exports.RoleMappingType = RoleMappingType;
1417
1257
  exports.SetIdentityPoolRolesCommand = SetIdentityPoolRolesCommand;
1418
1258
  exports.SetPrincipalTagAttributeMapCommand = SetPrincipalTagAttributeMapCommand;
1419
1259
  exports.TagResourceCommand = TagResourceCommand;
1420
- exports.TooManyRequestsException = TooManyRequestsException;
1260
+ exports.TooManyRequestsException = TooManyRequestsException$1;
1421
1261
  exports.UnlinkDeveloperIdentityCommand = UnlinkDeveloperIdentityCommand;
1422
1262
  exports.UnlinkIdentityCommand = UnlinkIdentityCommand;
1423
- exports.UnlinkIdentityInputFilterSensitiveLog = UnlinkIdentityInputFilterSensitiveLog;
1424
1263
  exports.UntagResourceCommand = UntagResourceCommand;
1425
1264
  exports.UpdateIdentityPoolCommand = UpdateIdentityPoolCommand;
1426
1265
  exports.paginateListIdentityPools = paginateListIdentityPools;