@aws-sdk/client-cognito-identity 3.987.0 → 3.989.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 +42 -803
- package/dist-cjs/models/CognitoIdentityServiceException.js +12 -0
- package/dist-cjs/models/errors.js +147 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +569 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +76 -70
- package/dist-types/schemas/schemas_0.d.ts +19 -12
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -12
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var CognitoIdentityServiceException = require('./models/CognitoIdentityServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,693 +113,6 @@ class CognitoIdentityClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class CognitoIdentityServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, CognitoIdentityServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class InternalErrorException extends CognitoIdentityServiceException {
|
|
121
|
-
name = "InternalErrorException";
|
|
122
|
-
$fault = "server";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "InternalErrorException",
|
|
126
|
-
$fault: "server",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, InternalErrorException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InvalidParameterException extends CognitoIdentityServiceException {
|
|
133
|
-
name = "InvalidParameterException";
|
|
134
|
-
$fault = "client";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InvalidParameterException",
|
|
138
|
-
$fault: "client",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class LimitExceededException extends CognitoIdentityServiceException {
|
|
145
|
-
name = "LimitExceededException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "LimitExceededException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class NotAuthorizedException extends CognitoIdentityServiceException {
|
|
157
|
-
name = "NotAuthorizedException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "NotAuthorizedException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, NotAuthorizedException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ResourceConflictException extends CognitoIdentityServiceException {
|
|
169
|
-
name = "ResourceConflictException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ResourceConflictException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class TooManyRequestsException extends CognitoIdentityServiceException {
|
|
181
|
-
name = "TooManyRequestsException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "TooManyRequestsException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ResourceNotFoundException extends CognitoIdentityServiceException {
|
|
193
|
-
name = "ResourceNotFoundException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ResourceNotFoundException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ExternalServiceException extends CognitoIdentityServiceException {
|
|
205
|
-
name = "ExternalServiceException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ExternalServiceException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ExternalServiceException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class InvalidIdentityPoolConfigurationException extends CognitoIdentityServiceException {
|
|
217
|
-
name = "InvalidIdentityPoolConfigurationException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "InvalidIdentityPoolConfigurationException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, InvalidIdentityPoolConfigurationException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class DeveloperUserAlreadyRegisteredException extends CognitoIdentityServiceException {
|
|
229
|
-
name = "DeveloperUserAlreadyRegisteredException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "DeveloperUserAlreadyRegisteredException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, DeveloperUserAlreadyRegisteredException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
class ConcurrentModificationException extends CognitoIdentityServiceException {
|
|
241
|
-
name = "ConcurrentModificationException";
|
|
242
|
-
$fault = "client";
|
|
243
|
-
constructor(opts) {
|
|
244
|
-
super({
|
|
245
|
-
name: "ConcurrentModificationException",
|
|
246
|
-
$fault: "client",
|
|
247
|
-
...opts,
|
|
248
|
-
});
|
|
249
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
250
|
-
}
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
const _ACF = "AllowClassicFlow";
|
|
254
|
-
const _AI = "AccountId";
|
|
255
|
-
const _AKI = "AccessKeyId";
|
|
256
|
-
const _ARR = "AmbiguousRoleResolution";
|
|
257
|
-
const _AUI = "AllowUnauthenticatedIdentities";
|
|
258
|
-
const _C = "Credentials";
|
|
259
|
-
const _CD = "CreationDate";
|
|
260
|
-
const _CI = "ClientId";
|
|
261
|
-
const _CIP = "CognitoIdentityProvider";
|
|
262
|
-
const _CIPI = "CreateIdentityPoolInput";
|
|
263
|
-
const _CIPL = "CognitoIdentityProviderList";
|
|
264
|
-
const _CIPo = "CognitoIdentityProviders";
|
|
265
|
-
const _CIPr = "CreateIdentityPool";
|
|
266
|
-
const _CME = "ConcurrentModificationException";
|
|
267
|
-
const _CRA = "CustomRoleArn";
|
|
268
|
-
const _Cl = "Claim";
|
|
269
|
-
const _DI = "DeleteIdentities";
|
|
270
|
-
const _DII = "DeleteIdentitiesInput";
|
|
271
|
-
const _DIIe = "DescribeIdentityInput";
|
|
272
|
-
const _DIP = "DeleteIdentityPool";
|
|
273
|
-
const _DIPI = "DeleteIdentityPoolInput";
|
|
274
|
-
const _DIPIe = "DescribeIdentityPoolInput";
|
|
275
|
-
const _DIPe = "DescribeIdentityPool";
|
|
276
|
-
const _DIR = "DeleteIdentitiesResponse";
|
|
277
|
-
const _DIe = "DescribeIdentity";
|
|
278
|
-
const _DPN = "DeveloperProviderName";
|
|
279
|
-
const _DUARE = "DeveloperUserAlreadyRegisteredException";
|
|
280
|
-
const _DUI = "DeveloperUserIdentifier";
|
|
281
|
-
const _DUIL = "DeveloperUserIdentifierList";
|
|
282
|
-
const _DUIe = "DestinationUserIdentifier";
|
|
283
|
-
const _E = "Expiration";
|
|
284
|
-
const _EC = "ErrorCode";
|
|
285
|
-
const _ESE = "ExternalServiceException";
|
|
286
|
-
const _GCFI = "GetCredentialsForIdentity";
|
|
287
|
-
const _GCFII = "GetCredentialsForIdentityInput";
|
|
288
|
-
const _GCFIR = "GetCredentialsForIdentityResponse";
|
|
289
|
-
const _GI = "GetId";
|
|
290
|
-
const _GII = "GetIdInput";
|
|
291
|
-
const _GIPR = "GetIdentityPoolRoles";
|
|
292
|
-
const _GIPRI = "GetIdentityPoolRolesInput";
|
|
293
|
-
const _GIPRR = "GetIdentityPoolRolesResponse";
|
|
294
|
-
const _GIR = "GetIdResponse";
|
|
295
|
-
const _GOIT = "GetOpenIdToken";
|
|
296
|
-
const _GOITFDI = "GetOpenIdTokenForDeveloperIdentity";
|
|
297
|
-
const _GOITFDII = "GetOpenIdTokenForDeveloperIdentityInput";
|
|
298
|
-
const _GOITFDIR = "GetOpenIdTokenForDeveloperIdentityResponse";
|
|
299
|
-
const _GOITI = "GetOpenIdTokenInput";
|
|
300
|
-
const _GOITR = "GetOpenIdTokenResponse";
|
|
301
|
-
const _GPTAM = "GetPrincipalTagAttributeMap";
|
|
302
|
-
const _GPTAMI = "GetPrincipalTagAttributeMapInput";
|
|
303
|
-
const _GPTAMR = "GetPrincipalTagAttributeMapResponse";
|
|
304
|
-
const _HD = "HideDisabled";
|
|
305
|
-
const _I = "Identities";
|
|
306
|
-
const _ID = "IdentityDescription";
|
|
307
|
-
const _IEE = "InternalErrorException";
|
|
308
|
-
const _II = "IdentityId";
|
|
309
|
-
const _IIPCE = "InvalidIdentityPoolConfigurationException";
|
|
310
|
-
const _IITD = "IdentityIdsToDelete";
|
|
311
|
-
const _IL = "IdentitiesList";
|
|
312
|
-
const _IP = "IdentityPool";
|
|
313
|
-
const _IPE = "InvalidParameterException";
|
|
314
|
-
const _IPI = "IdentityPoolId";
|
|
315
|
-
const _IPL = "IdentityPoolsList";
|
|
316
|
-
const _IPN = "IdentityPoolName";
|
|
317
|
-
const _IPNd = "IdentityProviderName";
|
|
318
|
-
const _IPSD = "IdentityPoolShortDescription";
|
|
319
|
-
const _IPT = "IdentityProviderToken";
|
|
320
|
-
const _IPTd = "IdentityPoolTags";
|
|
321
|
-
const _IPd = "IdentityPools";
|
|
322
|
-
const _L = "Logins";
|
|
323
|
-
const _LDI = "LookupDeveloperIdentity";
|
|
324
|
-
const _LDII = "LookupDeveloperIdentityInput";
|
|
325
|
-
const _LDIR = "LookupDeveloperIdentityResponse";
|
|
326
|
-
const _LEE = "LimitExceededException";
|
|
327
|
-
const _LI = "ListIdentities";
|
|
328
|
-
const _LII = "ListIdentitiesInput";
|
|
329
|
-
const _LIP = "ListIdentityPools";
|
|
330
|
-
const _LIPI = "ListIdentityPoolsInput";
|
|
331
|
-
const _LIPR = "ListIdentityPoolsResponse";
|
|
332
|
-
const _LIR = "ListIdentitiesResponse";
|
|
333
|
-
const _LM = "LoginsMap";
|
|
334
|
-
const _LMD = "LastModifiedDate";
|
|
335
|
-
const _LTFR = "ListTagsForResource";
|
|
336
|
-
const _LTFRI = "ListTagsForResourceInput";
|
|
337
|
-
const _LTFRR = "ListTagsForResourceResponse";
|
|
338
|
-
const _LTR = "LoginsToRemove";
|
|
339
|
-
const _MDI = "MergeDeveloperIdentities";
|
|
340
|
-
const _MDII = "MergeDeveloperIdentitiesInput";
|
|
341
|
-
const _MDIR = "MergeDeveloperIdentitiesResponse";
|
|
342
|
-
const _MR = "MaxResults";
|
|
343
|
-
const _MRL = "MappingRulesList";
|
|
344
|
-
const _MRa = "MappingRule";
|
|
345
|
-
const _MT = "MatchType";
|
|
346
|
-
const _NAE = "NotAuthorizedException";
|
|
347
|
-
const _NT = "NextToken";
|
|
348
|
-
const _OICPARN = "OpenIdConnectProviderARNs";
|
|
349
|
-
const _OIDCT = "OIDCToken";
|
|
350
|
-
const _PN = "ProviderName";
|
|
351
|
-
const _PT = "PrincipalTags";
|
|
352
|
-
const _R = "Roles";
|
|
353
|
-
const _RA = "ResourceArn";
|
|
354
|
-
const _RARN = "RoleARN";
|
|
355
|
-
const _RC = "RulesConfiguration";
|
|
356
|
-
const _RCE = "ResourceConflictException";
|
|
357
|
-
const _RCT = "RulesConfigurationType";
|
|
358
|
-
const _RM = "RoleMappings";
|
|
359
|
-
const _RMM = "RoleMappingMap";
|
|
360
|
-
const _RMo = "RoleMapping";
|
|
361
|
-
const _RNFE = "ResourceNotFoundException";
|
|
362
|
-
const _Ru = "Rules";
|
|
363
|
-
const _SIPR = "SetIdentityPoolRoles";
|
|
364
|
-
const _SIPRI = "SetIdentityPoolRolesInput";
|
|
365
|
-
const _SK = "SecretKey";
|
|
366
|
-
const _SKS = "SecretKeyString";
|
|
367
|
-
const _SLP = "SupportedLoginProviders";
|
|
368
|
-
const _SPARN = "SamlProviderARNs";
|
|
369
|
-
const _SPTAM = "SetPrincipalTagAttributeMap";
|
|
370
|
-
const _SPTAMI = "SetPrincipalTagAttributeMapInput";
|
|
371
|
-
const _SPTAMR = "SetPrincipalTagAttributeMapResponse";
|
|
372
|
-
const _SSTC = "ServerSideTokenCheck";
|
|
373
|
-
const _ST = "SessionToken";
|
|
374
|
-
const _SUI = "SourceUserIdentifier";
|
|
375
|
-
const _T = "Token";
|
|
376
|
-
const _TD = "TokenDuration";
|
|
377
|
-
const _TK = "TagKeys";
|
|
378
|
-
const _TMRE = "TooManyRequestsException";
|
|
379
|
-
const _TR = "TagResource";
|
|
380
|
-
const _TRI = "TagResourceInput";
|
|
381
|
-
const _TRR = "TagResourceResponse";
|
|
382
|
-
const _Ta = "Tags";
|
|
383
|
-
const _Ty = "Type";
|
|
384
|
-
const _UD = "UseDefaults";
|
|
385
|
-
const _UDI = "UnlinkDeveloperIdentity";
|
|
386
|
-
const _UDII = "UnlinkDeveloperIdentityInput";
|
|
387
|
-
const _UI = "UnlinkIdentity";
|
|
388
|
-
const _UII = "UnprocessedIdentityIds";
|
|
389
|
-
const _UIIL = "UnprocessedIdentityIdList";
|
|
390
|
-
const _UIIn = "UnlinkIdentityInput";
|
|
391
|
-
const _UIInp = "UnprocessedIdentityId";
|
|
392
|
-
const _UIP = "UpdateIdentityPool";
|
|
393
|
-
const _UR = "UntagResource";
|
|
394
|
-
const _URI = "UntagResourceInput";
|
|
395
|
-
const _URR = "UntagResourceResponse";
|
|
396
|
-
const _V = "Value";
|
|
397
|
-
const _c = "client";
|
|
398
|
-
const _e = "error";
|
|
399
|
-
const _hE = "httpError";
|
|
400
|
-
const _m = "message";
|
|
401
|
-
const _s = "server";
|
|
402
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.cognitoidentity";
|
|
403
|
-
const n0 = "com.amazonaws.cognitoidentity";
|
|
404
|
-
var IdentityProviderToken = [0, n0, _IPT, 8, 0];
|
|
405
|
-
var OIDCToken = [0, n0, _OIDCT, 8, 0];
|
|
406
|
-
var SecretKeyString = [0, n0, _SKS, 8, 0];
|
|
407
|
-
var CognitoIdentityProvider$ = [3, n0, _CIP,
|
|
408
|
-
0,
|
|
409
|
-
[_PN, _CI, _SSTC],
|
|
410
|
-
[0, 0, 2]
|
|
411
|
-
];
|
|
412
|
-
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
413
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
414
|
-
[_m],
|
|
415
|
-
[0]
|
|
416
|
-
];
|
|
417
|
-
schema.TypeRegistry.for(n0).registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
418
|
-
var CreateIdentityPoolInput$ = [3, n0, _CIPI,
|
|
419
|
-
0,
|
|
420
|
-
[_IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
|
|
421
|
-
[0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0], 2
|
|
422
|
-
];
|
|
423
|
-
var Credentials$ = [3, n0, _C,
|
|
424
|
-
0,
|
|
425
|
-
[_AKI, _SK, _ST, _E],
|
|
426
|
-
[0, [() => SecretKeyString, 0], 0, 4]
|
|
427
|
-
];
|
|
428
|
-
var DeleteIdentitiesInput$ = [3, n0, _DII,
|
|
429
|
-
0,
|
|
430
|
-
[_IITD],
|
|
431
|
-
[64 | 0], 1
|
|
432
|
-
];
|
|
433
|
-
var DeleteIdentitiesResponse$ = [3, n0, _DIR,
|
|
434
|
-
0,
|
|
435
|
-
[_UII],
|
|
436
|
-
[() => UnprocessedIdentityIdList]
|
|
437
|
-
];
|
|
438
|
-
var DeleteIdentityPoolInput$ = [3, n0, _DIPI,
|
|
439
|
-
0,
|
|
440
|
-
[_IPI],
|
|
441
|
-
[0], 1
|
|
442
|
-
];
|
|
443
|
-
var DescribeIdentityInput$ = [3, n0, _DIIe,
|
|
444
|
-
0,
|
|
445
|
-
[_II],
|
|
446
|
-
[0], 1
|
|
447
|
-
];
|
|
448
|
-
var DescribeIdentityPoolInput$ = [3, n0, _DIPIe,
|
|
449
|
-
0,
|
|
450
|
-
[_IPI],
|
|
451
|
-
[0], 1
|
|
452
|
-
];
|
|
453
|
-
var DeveloperUserAlreadyRegisteredException$ = [-3, n0, _DUARE,
|
|
454
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
455
|
-
[_m],
|
|
456
|
-
[0]
|
|
457
|
-
];
|
|
458
|
-
schema.TypeRegistry.for(n0).registerError(DeveloperUserAlreadyRegisteredException$, DeveloperUserAlreadyRegisteredException);
|
|
459
|
-
var ExternalServiceException$ = [-3, n0, _ESE,
|
|
460
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
461
|
-
[_m],
|
|
462
|
-
[0]
|
|
463
|
-
];
|
|
464
|
-
schema.TypeRegistry.for(n0).registerError(ExternalServiceException$, ExternalServiceException);
|
|
465
|
-
var GetCredentialsForIdentityInput$ = [3, n0, _GCFII,
|
|
466
|
-
0,
|
|
467
|
-
[_II, _L, _CRA],
|
|
468
|
-
[0, [() => LoginsMap, 0], 0], 1
|
|
469
|
-
];
|
|
470
|
-
var GetCredentialsForIdentityResponse$ = [3, n0, _GCFIR,
|
|
471
|
-
0,
|
|
472
|
-
[_II, _C],
|
|
473
|
-
[0, [() => Credentials$, 0]]
|
|
474
|
-
];
|
|
475
|
-
var GetIdentityPoolRolesInput$ = [3, n0, _GIPRI,
|
|
476
|
-
0,
|
|
477
|
-
[_IPI],
|
|
478
|
-
[0], 1
|
|
479
|
-
];
|
|
480
|
-
var GetIdentityPoolRolesResponse$ = [3, n0, _GIPRR,
|
|
481
|
-
0,
|
|
482
|
-
[_IPI, _R, _RM],
|
|
483
|
-
[0, 128 | 0, () => RoleMappingMap]
|
|
484
|
-
];
|
|
485
|
-
var GetIdInput$ = [3, n0, _GII,
|
|
486
|
-
0,
|
|
487
|
-
[_IPI, _AI, _L],
|
|
488
|
-
[0, 0, [() => LoginsMap, 0]], 1
|
|
489
|
-
];
|
|
490
|
-
var GetIdResponse$ = [3, n0, _GIR,
|
|
491
|
-
0,
|
|
492
|
-
[_II],
|
|
493
|
-
[0]
|
|
494
|
-
];
|
|
495
|
-
var GetOpenIdTokenForDeveloperIdentityInput$ = [3, n0, _GOITFDII,
|
|
496
|
-
0,
|
|
497
|
-
[_IPI, _L, _II, _PT, _TD],
|
|
498
|
-
[0, [() => LoginsMap, 0], 0, 128 | 0, 1], 2
|
|
499
|
-
];
|
|
500
|
-
var GetOpenIdTokenForDeveloperIdentityResponse$ = [3, n0, _GOITFDIR,
|
|
501
|
-
0,
|
|
502
|
-
[_II, _T],
|
|
503
|
-
[0, [() => OIDCToken, 0]]
|
|
504
|
-
];
|
|
505
|
-
var GetOpenIdTokenInput$ = [3, n0, _GOITI,
|
|
506
|
-
0,
|
|
507
|
-
[_II, _L],
|
|
508
|
-
[0, [() => LoginsMap, 0]], 1
|
|
509
|
-
];
|
|
510
|
-
var GetOpenIdTokenResponse$ = [3, n0, _GOITR,
|
|
511
|
-
0,
|
|
512
|
-
[_II, _T],
|
|
513
|
-
[0, [() => OIDCToken, 0]]
|
|
514
|
-
];
|
|
515
|
-
var GetPrincipalTagAttributeMapInput$ = [3, n0, _GPTAMI,
|
|
516
|
-
0,
|
|
517
|
-
[_IPI, _IPNd],
|
|
518
|
-
[0, 0], 2
|
|
519
|
-
];
|
|
520
|
-
var GetPrincipalTagAttributeMapResponse$ = [3, n0, _GPTAMR,
|
|
521
|
-
0,
|
|
522
|
-
[_IPI, _IPNd, _UD, _PT],
|
|
523
|
-
[0, 0, 2, 128 | 0]
|
|
524
|
-
];
|
|
525
|
-
var IdentityDescription$ = [3, n0, _ID,
|
|
526
|
-
0,
|
|
527
|
-
[_II, _L, _CD, _LMD],
|
|
528
|
-
[0, 64 | 0, 4, 4]
|
|
529
|
-
];
|
|
530
|
-
var IdentityPool$ = [3, n0, _IP,
|
|
531
|
-
0,
|
|
532
|
-
[_IPI, _IPN, _AUI, _ACF, _SLP, _DPN, _OICPARN, _CIPo, _SPARN, _IPTd],
|
|
533
|
-
[0, 0, 2, 2, 128 | 0, 0, 64 | 0, () => CognitoIdentityProviderList, 64 | 0, 128 | 0], 3
|
|
534
|
-
];
|
|
535
|
-
var IdentityPoolShortDescription$ = [3, n0, _IPSD,
|
|
536
|
-
0,
|
|
537
|
-
[_IPI, _IPN],
|
|
538
|
-
[0, 0]
|
|
539
|
-
];
|
|
540
|
-
var InternalErrorException$ = [-3, n0, _IEE,
|
|
541
|
-
{ [_e]: _s },
|
|
542
|
-
[_m],
|
|
543
|
-
[0]
|
|
544
|
-
];
|
|
545
|
-
schema.TypeRegistry.for(n0).registerError(InternalErrorException$, InternalErrorException);
|
|
546
|
-
var InvalidIdentityPoolConfigurationException$ = [-3, n0, _IIPCE,
|
|
547
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
548
|
-
[_m],
|
|
549
|
-
[0]
|
|
550
|
-
];
|
|
551
|
-
schema.TypeRegistry.for(n0).registerError(InvalidIdentityPoolConfigurationException$, InvalidIdentityPoolConfigurationException);
|
|
552
|
-
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
553
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
554
|
-
[_m],
|
|
555
|
-
[0]
|
|
556
|
-
];
|
|
557
|
-
schema.TypeRegistry.for(n0).registerError(InvalidParameterException$, InvalidParameterException);
|
|
558
|
-
var LimitExceededException$ = [-3, n0, _LEE,
|
|
559
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
560
|
-
[_m],
|
|
561
|
-
[0]
|
|
562
|
-
];
|
|
563
|
-
schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
|
|
564
|
-
var ListIdentitiesInput$ = [3, n0, _LII,
|
|
565
|
-
0,
|
|
566
|
-
[_IPI, _MR, _NT, _HD],
|
|
567
|
-
[0, 1, 0, 2], 2
|
|
568
|
-
];
|
|
569
|
-
var ListIdentitiesResponse$ = [3, n0, _LIR,
|
|
570
|
-
0,
|
|
571
|
-
[_IPI, _I, _NT],
|
|
572
|
-
[0, () => IdentitiesList, 0]
|
|
573
|
-
];
|
|
574
|
-
var ListIdentityPoolsInput$ = [3, n0, _LIPI,
|
|
575
|
-
0,
|
|
576
|
-
[_MR, _NT],
|
|
577
|
-
[1, 0], 1
|
|
578
|
-
];
|
|
579
|
-
var ListIdentityPoolsResponse$ = [3, n0, _LIPR,
|
|
580
|
-
0,
|
|
581
|
-
[_IPd, _NT],
|
|
582
|
-
[() => IdentityPoolsList, 0]
|
|
583
|
-
];
|
|
584
|
-
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
585
|
-
0,
|
|
586
|
-
[_RA],
|
|
587
|
-
[0], 1
|
|
588
|
-
];
|
|
589
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRR,
|
|
590
|
-
0,
|
|
591
|
-
[_Ta],
|
|
592
|
-
[128 | 0]
|
|
593
|
-
];
|
|
594
|
-
var LookupDeveloperIdentityInput$ = [3, n0, _LDII,
|
|
595
|
-
0,
|
|
596
|
-
[_IPI, _II, _DUI, _MR, _NT],
|
|
597
|
-
[0, 0, 0, 1, 0], 1
|
|
598
|
-
];
|
|
599
|
-
var LookupDeveloperIdentityResponse$ = [3, n0, _LDIR,
|
|
600
|
-
0,
|
|
601
|
-
[_II, _DUIL, _NT],
|
|
602
|
-
[0, 64 | 0, 0]
|
|
603
|
-
];
|
|
604
|
-
var MappingRule$ = [3, n0, _MRa,
|
|
605
|
-
0,
|
|
606
|
-
[_Cl, _MT, _V, _RARN],
|
|
607
|
-
[0, 0, 0, 0], 4
|
|
608
|
-
];
|
|
609
|
-
var MergeDeveloperIdentitiesInput$ = [3, n0, _MDII,
|
|
610
|
-
0,
|
|
611
|
-
[_SUI, _DUIe, _DPN, _IPI],
|
|
612
|
-
[0, 0, 0, 0], 4
|
|
613
|
-
];
|
|
614
|
-
var MergeDeveloperIdentitiesResponse$ = [3, n0, _MDIR,
|
|
615
|
-
0,
|
|
616
|
-
[_II],
|
|
617
|
-
[0]
|
|
618
|
-
];
|
|
619
|
-
var NotAuthorizedException$ = [-3, n0, _NAE,
|
|
620
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
621
|
-
[_m],
|
|
622
|
-
[0]
|
|
623
|
-
];
|
|
624
|
-
schema.TypeRegistry.for(n0).registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
625
|
-
var ResourceConflictException$ = [-3, n0, _RCE,
|
|
626
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
627
|
-
[_m],
|
|
628
|
-
[0]
|
|
629
|
-
];
|
|
630
|
-
schema.TypeRegistry.for(n0).registerError(ResourceConflictException$, ResourceConflictException);
|
|
631
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
632
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
633
|
-
[_m],
|
|
634
|
-
[0]
|
|
635
|
-
];
|
|
636
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
637
|
-
var RoleMapping$ = [3, n0, _RMo,
|
|
638
|
-
0,
|
|
639
|
-
[_Ty, _ARR, _RC],
|
|
640
|
-
[0, 0, () => RulesConfigurationType$], 1
|
|
641
|
-
];
|
|
642
|
-
var RulesConfigurationType$ = [3, n0, _RCT,
|
|
643
|
-
0,
|
|
644
|
-
[_Ru],
|
|
645
|
-
[() => MappingRulesList], 1
|
|
646
|
-
];
|
|
647
|
-
var SetIdentityPoolRolesInput$ = [3, n0, _SIPRI,
|
|
648
|
-
0,
|
|
649
|
-
[_IPI, _R, _RM],
|
|
650
|
-
[0, 128 | 0, () => RoleMappingMap], 2
|
|
651
|
-
];
|
|
652
|
-
var SetPrincipalTagAttributeMapInput$ = [3, n0, _SPTAMI,
|
|
653
|
-
0,
|
|
654
|
-
[_IPI, _IPNd, _UD, _PT],
|
|
655
|
-
[0, 0, 2, 128 | 0], 2
|
|
656
|
-
];
|
|
657
|
-
var SetPrincipalTagAttributeMapResponse$ = [3, n0, _SPTAMR,
|
|
658
|
-
0,
|
|
659
|
-
[_IPI, _IPNd, _UD, _PT],
|
|
660
|
-
[0, 0, 2, 128 | 0]
|
|
661
|
-
];
|
|
662
|
-
var TagResourceInput$ = [3, n0, _TRI,
|
|
663
|
-
0,
|
|
664
|
-
[_RA, _Ta],
|
|
665
|
-
[0, 128 | 0], 2
|
|
666
|
-
];
|
|
667
|
-
var TagResourceResponse$ = [3, n0, _TRR,
|
|
668
|
-
0,
|
|
669
|
-
[],
|
|
670
|
-
[]
|
|
671
|
-
];
|
|
672
|
-
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
673
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
674
|
-
[_m],
|
|
675
|
-
[0]
|
|
676
|
-
];
|
|
677
|
-
schema.TypeRegistry.for(n0).registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
678
|
-
var UnlinkDeveloperIdentityInput$ = [3, n0, _UDII,
|
|
679
|
-
0,
|
|
680
|
-
[_II, _IPI, _DPN, _DUI],
|
|
681
|
-
[0, 0, 0, 0], 4
|
|
682
|
-
];
|
|
683
|
-
var UnlinkIdentityInput$ = [3, n0, _UIIn,
|
|
684
|
-
0,
|
|
685
|
-
[_II, _L, _LTR],
|
|
686
|
-
[0, [() => LoginsMap, 0], 64 | 0], 3
|
|
687
|
-
];
|
|
688
|
-
var UnprocessedIdentityId$ = [3, n0, _UIInp,
|
|
689
|
-
0,
|
|
690
|
-
[_II, _EC],
|
|
691
|
-
[0, 0]
|
|
692
|
-
];
|
|
693
|
-
var UntagResourceInput$ = [3, n0, _URI,
|
|
694
|
-
0,
|
|
695
|
-
[_RA, _TK],
|
|
696
|
-
[0, 64 | 0], 2
|
|
697
|
-
];
|
|
698
|
-
var UntagResourceResponse$ = [3, n0, _URR,
|
|
699
|
-
0,
|
|
700
|
-
[],
|
|
701
|
-
[]
|
|
702
|
-
];
|
|
703
|
-
var __Unit = "unit";
|
|
704
|
-
var CognitoIdentityServiceException$ = [-3, _sm, "CognitoIdentityServiceException", 0, [], []];
|
|
705
|
-
schema.TypeRegistry.for(_sm).registerError(CognitoIdentityServiceException$, CognitoIdentityServiceException);
|
|
706
|
-
var CognitoIdentityProviderList = [1, n0, _CIPL,
|
|
707
|
-
0, () => CognitoIdentityProvider$
|
|
708
|
-
];
|
|
709
|
-
var IdentitiesList = [1, n0, _IL,
|
|
710
|
-
0, () => IdentityDescription$
|
|
711
|
-
];
|
|
712
|
-
var IdentityPoolsList = [1, n0, _IPL,
|
|
713
|
-
0, () => IdentityPoolShortDescription$
|
|
714
|
-
];
|
|
715
|
-
var MappingRulesList = [1, n0, _MRL,
|
|
716
|
-
0, () => MappingRule$
|
|
717
|
-
];
|
|
718
|
-
var UnprocessedIdentityIdList = [1, n0, _UIIL,
|
|
719
|
-
0, () => UnprocessedIdentityId$
|
|
720
|
-
];
|
|
721
|
-
var LoginsMap = [2, n0, _LM,
|
|
722
|
-
0, [0,
|
|
723
|
-
0],
|
|
724
|
-
[() => IdentityProviderToken,
|
|
725
|
-
0]
|
|
726
|
-
];
|
|
727
|
-
var RoleMappingMap = [2, n0, _RMM,
|
|
728
|
-
0, 0, () => RoleMapping$
|
|
729
|
-
];
|
|
730
|
-
var CreateIdentityPool$ = [9, n0, _CIPr,
|
|
731
|
-
0, () => CreateIdentityPoolInput$, () => IdentityPool$
|
|
732
|
-
];
|
|
733
|
-
var DeleteIdentities$ = [9, n0, _DI,
|
|
734
|
-
0, () => DeleteIdentitiesInput$, () => DeleteIdentitiesResponse$
|
|
735
|
-
];
|
|
736
|
-
var DeleteIdentityPool$ = [9, n0, _DIP,
|
|
737
|
-
0, () => DeleteIdentityPoolInput$, () => __Unit
|
|
738
|
-
];
|
|
739
|
-
var DescribeIdentity$ = [9, n0, _DIe,
|
|
740
|
-
0, () => DescribeIdentityInput$, () => IdentityDescription$
|
|
741
|
-
];
|
|
742
|
-
var DescribeIdentityPool$ = [9, n0, _DIPe,
|
|
743
|
-
0, () => DescribeIdentityPoolInput$, () => IdentityPool$
|
|
744
|
-
];
|
|
745
|
-
var GetCredentialsForIdentity$ = [9, n0, _GCFI,
|
|
746
|
-
0, () => GetCredentialsForIdentityInput$, () => GetCredentialsForIdentityResponse$
|
|
747
|
-
];
|
|
748
|
-
var GetId$ = [9, n0, _GI,
|
|
749
|
-
0, () => GetIdInput$, () => GetIdResponse$
|
|
750
|
-
];
|
|
751
|
-
var GetIdentityPoolRoles$ = [9, n0, _GIPR,
|
|
752
|
-
0, () => GetIdentityPoolRolesInput$, () => GetIdentityPoolRolesResponse$
|
|
753
|
-
];
|
|
754
|
-
var GetOpenIdToken$ = [9, n0, _GOIT,
|
|
755
|
-
0, () => GetOpenIdTokenInput$, () => GetOpenIdTokenResponse$
|
|
756
|
-
];
|
|
757
|
-
var GetOpenIdTokenForDeveloperIdentity$ = [9, n0, _GOITFDI,
|
|
758
|
-
0, () => GetOpenIdTokenForDeveloperIdentityInput$, () => GetOpenIdTokenForDeveloperIdentityResponse$
|
|
759
|
-
];
|
|
760
|
-
var GetPrincipalTagAttributeMap$ = [9, n0, _GPTAM,
|
|
761
|
-
0, () => GetPrincipalTagAttributeMapInput$, () => GetPrincipalTagAttributeMapResponse$
|
|
762
|
-
];
|
|
763
|
-
var ListIdentities$ = [9, n0, _LI,
|
|
764
|
-
0, () => ListIdentitiesInput$, () => ListIdentitiesResponse$
|
|
765
|
-
];
|
|
766
|
-
var ListIdentityPools$ = [9, n0, _LIP,
|
|
767
|
-
0, () => ListIdentityPoolsInput$, () => ListIdentityPoolsResponse$
|
|
768
|
-
];
|
|
769
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
770
|
-
0, () => ListTagsForResourceInput$, () => ListTagsForResourceResponse$
|
|
771
|
-
];
|
|
772
|
-
var LookupDeveloperIdentity$ = [9, n0, _LDI,
|
|
773
|
-
0, () => LookupDeveloperIdentityInput$, () => LookupDeveloperIdentityResponse$
|
|
774
|
-
];
|
|
775
|
-
var MergeDeveloperIdentities$ = [9, n0, _MDI,
|
|
776
|
-
0, () => MergeDeveloperIdentitiesInput$, () => MergeDeveloperIdentitiesResponse$
|
|
777
|
-
];
|
|
778
|
-
var SetIdentityPoolRoles$ = [9, n0, _SIPR,
|
|
779
|
-
0, () => SetIdentityPoolRolesInput$, () => __Unit
|
|
780
|
-
];
|
|
781
|
-
var SetPrincipalTagAttributeMap$ = [9, n0, _SPTAM,
|
|
782
|
-
0, () => SetPrincipalTagAttributeMapInput$, () => SetPrincipalTagAttributeMapResponse$
|
|
783
|
-
];
|
|
784
|
-
var TagResource$ = [9, n0, _TR,
|
|
785
|
-
0, () => TagResourceInput$, () => TagResourceResponse$
|
|
786
|
-
];
|
|
787
|
-
var UnlinkDeveloperIdentity$ = [9, n0, _UDI,
|
|
788
|
-
0, () => UnlinkDeveloperIdentityInput$, () => __Unit
|
|
789
|
-
];
|
|
790
|
-
var UnlinkIdentity$ = [9, n0, _UI,
|
|
791
|
-
0, () => UnlinkIdentityInput$, () => __Unit
|
|
792
|
-
];
|
|
793
|
-
var UntagResource$ = [9, n0, _UR,
|
|
794
|
-
0, () => UntagResourceInput$, () => UntagResourceResponse$
|
|
795
|
-
];
|
|
796
|
-
var UpdateIdentityPool$ = [9, n0, _UIP,
|
|
797
|
-
0, () => IdentityPool$, () => IdentityPool$
|
|
798
|
-
];
|
|
799
|
-
|
|
800
116
|
class CreateIdentityPoolCommand extends smithyClient.Command
|
|
801
117
|
.classBuilder()
|
|
802
118
|
.ep(commonParams)
|
|
@@ -805,7 +121,7 @@ class CreateIdentityPoolCommand extends smithyClient.Command
|
|
|
805
121
|
})
|
|
806
122
|
.s("AWSCognitoIdentityService", "CreateIdentityPool", {})
|
|
807
123
|
.n("CognitoIdentityClient", "CreateIdentityPoolCommand")
|
|
808
|
-
.sc(CreateIdentityPool$)
|
|
124
|
+
.sc(schemas_0.CreateIdentityPool$)
|
|
809
125
|
.build() {
|
|
810
126
|
}
|
|
811
127
|
|
|
@@ -817,7 +133,7 @@ class DeleteIdentitiesCommand extends smithyClient.Command
|
|
|
817
133
|
})
|
|
818
134
|
.s("AWSCognitoIdentityService", "DeleteIdentities", {})
|
|
819
135
|
.n("CognitoIdentityClient", "DeleteIdentitiesCommand")
|
|
820
|
-
.sc(DeleteIdentities$)
|
|
136
|
+
.sc(schemas_0.DeleteIdentities$)
|
|
821
137
|
.build() {
|
|
822
138
|
}
|
|
823
139
|
|
|
@@ -829,7 +145,7 @@ class DeleteIdentityPoolCommand extends smithyClient.Command
|
|
|
829
145
|
})
|
|
830
146
|
.s("AWSCognitoIdentityService", "DeleteIdentityPool", {})
|
|
831
147
|
.n("CognitoIdentityClient", "DeleteIdentityPoolCommand")
|
|
832
|
-
.sc(DeleteIdentityPool$)
|
|
148
|
+
.sc(schemas_0.DeleteIdentityPool$)
|
|
833
149
|
.build() {
|
|
834
150
|
}
|
|
835
151
|
|
|
@@ -841,7 +157,7 @@ class DescribeIdentityCommand extends smithyClient.Command
|
|
|
841
157
|
})
|
|
842
158
|
.s("AWSCognitoIdentityService", "DescribeIdentity", {})
|
|
843
159
|
.n("CognitoIdentityClient", "DescribeIdentityCommand")
|
|
844
|
-
.sc(DescribeIdentity$)
|
|
160
|
+
.sc(schemas_0.DescribeIdentity$)
|
|
845
161
|
.build() {
|
|
846
162
|
}
|
|
847
163
|
|
|
@@ -853,7 +169,7 @@ class DescribeIdentityPoolCommand extends smithyClient.Command
|
|
|
853
169
|
})
|
|
854
170
|
.s("AWSCognitoIdentityService", "DescribeIdentityPool", {})
|
|
855
171
|
.n("CognitoIdentityClient", "DescribeIdentityPoolCommand")
|
|
856
|
-
.sc(DescribeIdentityPool$)
|
|
172
|
+
.sc(schemas_0.DescribeIdentityPool$)
|
|
857
173
|
.build() {
|
|
858
174
|
}
|
|
859
175
|
|
|
@@ -865,7 +181,7 @@ class GetCredentialsForIdentityCommand extends smithyClient.Command
|
|
|
865
181
|
})
|
|
866
182
|
.s("AWSCognitoIdentityService", "GetCredentialsForIdentity", {})
|
|
867
183
|
.n("CognitoIdentityClient", "GetCredentialsForIdentityCommand")
|
|
868
|
-
.sc(GetCredentialsForIdentity$)
|
|
184
|
+
.sc(schemas_0.GetCredentialsForIdentity$)
|
|
869
185
|
.build() {
|
|
870
186
|
}
|
|
871
187
|
|
|
@@ -877,7 +193,7 @@ class GetIdCommand extends smithyClient.Command
|
|
|
877
193
|
})
|
|
878
194
|
.s("AWSCognitoIdentityService", "GetId", {})
|
|
879
195
|
.n("CognitoIdentityClient", "GetIdCommand")
|
|
880
|
-
.sc(GetId$)
|
|
196
|
+
.sc(schemas_0.GetId$)
|
|
881
197
|
.build() {
|
|
882
198
|
}
|
|
883
199
|
|
|
@@ -889,7 +205,7 @@ class GetIdentityPoolRolesCommand extends smithyClient.Command
|
|
|
889
205
|
})
|
|
890
206
|
.s("AWSCognitoIdentityService", "GetIdentityPoolRoles", {})
|
|
891
207
|
.n("CognitoIdentityClient", "GetIdentityPoolRolesCommand")
|
|
892
|
-
.sc(GetIdentityPoolRoles$)
|
|
208
|
+
.sc(schemas_0.GetIdentityPoolRoles$)
|
|
893
209
|
.build() {
|
|
894
210
|
}
|
|
895
211
|
|
|
@@ -901,7 +217,7 @@ class GetOpenIdTokenCommand extends smithyClient.Command
|
|
|
901
217
|
})
|
|
902
218
|
.s("AWSCognitoIdentityService", "GetOpenIdToken", {})
|
|
903
219
|
.n("CognitoIdentityClient", "GetOpenIdTokenCommand")
|
|
904
|
-
.sc(GetOpenIdToken$)
|
|
220
|
+
.sc(schemas_0.GetOpenIdToken$)
|
|
905
221
|
.build() {
|
|
906
222
|
}
|
|
907
223
|
|
|
@@ -913,7 +229,7 @@ class GetOpenIdTokenForDeveloperIdentityCommand extends smithyClient.Command
|
|
|
913
229
|
})
|
|
914
230
|
.s("AWSCognitoIdentityService", "GetOpenIdTokenForDeveloperIdentity", {})
|
|
915
231
|
.n("CognitoIdentityClient", "GetOpenIdTokenForDeveloperIdentityCommand")
|
|
916
|
-
.sc(GetOpenIdTokenForDeveloperIdentity$)
|
|
232
|
+
.sc(schemas_0.GetOpenIdTokenForDeveloperIdentity$)
|
|
917
233
|
.build() {
|
|
918
234
|
}
|
|
919
235
|
|
|
@@ -925,7 +241,7 @@ class GetPrincipalTagAttributeMapCommand extends smithyClient.Command
|
|
|
925
241
|
})
|
|
926
242
|
.s("AWSCognitoIdentityService", "GetPrincipalTagAttributeMap", {})
|
|
927
243
|
.n("CognitoIdentityClient", "GetPrincipalTagAttributeMapCommand")
|
|
928
|
-
.sc(GetPrincipalTagAttributeMap$)
|
|
244
|
+
.sc(schemas_0.GetPrincipalTagAttributeMap$)
|
|
929
245
|
.build() {
|
|
930
246
|
}
|
|
931
247
|
|
|
@@ -937,7 +253,7 @@ class ListIdentitiesCommand extends smithyClient.Command
|
|
|
937
253
|
})
|
|
938
254
|
.s("AWSCognitoIdentityService", "ListIdentities", {})
|
|
939
255
|
.n("CognitoIdentityClient", "ListIdentitiesCommand")
|
|
940
|
-
.sc(ListIdentities$)
|
|
256
|
+
.sc(schemas_0.ListIdentities$)
|
|
941
257
|
.build() {
|
|
942
258
|
}
|
|
943
259
|
|
|
@@ -949,7 +265,7 @@ class ListIdentityPoolsCommand extends smithyClient.Command
|
|
|
949
265
|
})
|
|
950
266
|
.s("AWSCognitoIdentityService", "ListIdentityPools", {})
|
|
951
267
|
.n("CognitoIdentityClient", "ListIdentityPoolsCommand")
|
|
952
|
-
.sc(ListIdentityPools$)
|
|
268
|
+
.sc(schemas_0.ListIdentityPools$)
|
|
953
269
|
.build() {
|
|
954
270
|
}
|
|
955
271
|
|
|
@@ -961,7 +277,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
961
277
|
})
|
|
962
278
|
.s("AWSCognitoIdentityService", "ListTagsForResource", {})
|
|
963
279
|
.n("CognitoIdentityClient", "ListTagsForResourceCommand")
|
|
964
|
-
.sc(ListTagsForResource$)
|
|
280
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
965
281
|
.build() {
|
|
966
282
|
}
|
|
967
283
|
|
|
@@ -973,7 +289,7 @@ class LookupDeveloperIdentityCommand extends smithyClient.Command
|
|
|
973
289
|
})
|
|
974
290
|
.s("AWSCognitoIdentityService", "LookupDeveloperIdentity", {})
|
|
975
291
|
.n("CognitoIdentityClient", "LookupDeveloperIdentityCommand")
|
|
976
|
-
.sc(LookupDeveloperIdentity$)
|
|
292
|
+
.sc(schemas_0.LookupDeveloperIdentity$)
|
|
977
293
|
.build() {
|
|
978
294
|
}
|
|
979
295
|
|
|
@@ -985,7 +301,7 @@ class MergeDeveloperIdentitiesCommand extends smithyClient.Command
|
|
|
985
301
|
})
|
|
986
302
|
.s("AWSCognitoIdentityService", "MergeDeveloperIdentities", {})
|
|
987
303
|
.n("CognitoIdentityClient", "MergeDeveloperIdentitiesCommand")
|
|
988
|
-
.sc(MergeDeveloperIdentities$)
|
|
304
|
+
.sc(schemas_0.MergeDeveloperIdentities$)
|
|
989
305
|
.build() {
|
|
990
306
|
}
|
|
991
307
|
|
|
@@ -997,7 +313,7 @@ class SetIdentityPoolRolesCommand extends smithyClient.Command
|
|
|
997
313
|
})
|
|
998
314
|
.s("AWSCognitoIdentityService", "SetIdentityPoolRoles", {})
|
|
999
315
|
.n("CognitoIdentityClient", "SetIdentityPoolRolesCommand")
|
|
1000
|
-
.sc(SetIdentityPoolRoles$)
|
|
316
|
+
.sc(schemas_0.SetIdentityPoolRoles$)
|
|
1001
317
|
.build() {
|
|
1002
318
|
}
|
|
1003
319
|
|
|
@@ -1009,7 +325,7 @@ class SetPrincipalTagAttributeMapCommand extends smithyClient.Command
|
|
|
1009
325
|
})
|
|
1010
326
|
.s("AWSCognitoIdentityService", "SetPrincipalTagAttributeMap", {})
|
|
1011
327
|
.n("CognitoIdentityClient", "SetPrincipalTagAttributeMapCommand")
|
|
1012
|
-
.sc(SetPrincipalTagAttributeMap$)
|
|
328
|
+
.sc(schemas_0.SetPrincipalTagAttributeMap$)
|
|
1013
329
|
.build() {
|
|
1014
330
|
}
|
|
1015
331
|
|
|
@@ -1021,7 +337,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1021
337
|
})
|
|
1022
338
|
.s("AWSCognitoIdentityService", "TagResource", {})
|
|
1023
339
|
.n("CognitoIdentityClient", "TagResourceCommand")
|
|
1024
|
-
.sc(TagResource$)
|
|
340
|
+
.sc(schemas_0.TagResource$)
|
|
1025
341
|
.build() {
|
|
1026
342
|
}
|
|
1027
343
|
|
|
@@ -1033,7 +349,7 @@ class UnlinkDeveloperIdentityCommand extends smithyClient.Command
|
|
|
1033
349
|
})
|
|
1034
350
|
.s("AWSCognitoIdentityService", "UnlinkDeveloperIdentity", {})
|
|
1035
351
|
.n("CognitoIdentityClient", "UnlinkDeveloperIdentityCommand")
|
|
1036
|
-
.sc(UnlinkDeveloperIdentity$)
|
|
352
|
+
.sc(schemas_0.UnlinkDeveloperIdentity$)
|
|
1037
353
|
.build() {
|
|
1038
354
|
}
|
|
1039
355
|
|
|
@@ -1045,7 +361,7 @@ class UnlinkIdentityCommand extends smithyClient.Command
|
|
|
1045
361
|
})
|
|
1046
362
|
.s("AWSCognitoIdentityService", "UnlinkIdentity", {})
|
|
1047
363
|
.n("CognitoIdentityClient", "UnlinkIdentityCommand")
|
|
1048
|
-
.sc(UnlinkIdentity$)
|
|
364
|
+
.sc(schemas_0.UnlinkIdentity$)
|
|
1049
365
|
.build() {
|
|
1050
366
|
}
|
|
1051
367
|
|
|
@@ -1057,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1057
373
|
})
|
|
1058
374
|
.s("AWSCognitoIdentityService", "UntagResource", {})
|
|
1059
375
|
.n("CognitoIdentityClient", "UntagResourceCommand")
|
|
1060
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
1061
377
|
.build() {
|
|
1062
378
|
}
|
|
1063
379
|
|
|
@@ -1069,7 +385,7 @@ class UpdateIdentityPoolCommand extends smithyClient.Command
|
|
|
1069
385
|
})
|
|
1070
386
|
.s("AWSCognitoIdentityService", "UpdateIdentityPool", {})
|
|
1071
387
|
.n("CognitoIdentityClient", "UpdateIdentityPoolCommand")
|
|
1072
|
-
.sc(UpdateIdentityPool$)
|
|
388
|
+
.sc(schemas_0.UpdateIdentityPool$)
|
|
1073
389
|
.build() {
|
|
1074
390
|
}
|
|
1075
391
|
|
|
@@ -1134,126 +450,49 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1134
450
|
enumerable: true,
|
|
1135
451
|
get: function () { return smithyClient.Client; }
|
|
1136
452
|
});
|
|
453
|
+
Object.defineProperty(exports, "CognitoIdentityServiceException", {
|
|
454
|
+
enumerable: true,
|
|
455
|
+
get: function () { return CognitoIdentityServiceException.CognitoIdentityServiceException; }
|
|
456
|
+
});
|
|
1137
457
|
exports.AmbiguousRoleResolutionType = AmbiguousRoleResolutionType;
|
|
1138
458
|
exports.CognitoIdentity = CognitoIdentity;
|
|
1139
459
|
exports.CognitoIdentityClient = CognitoIdentityClient;
|
|
1140
|
-
exports.CognitoIdentityProvider$ = CognitoIdentityProvider$;
|
|
1141
|
-
exports.CognitoIdentityServiceException = CognitoIdentityServiceException;
|
|
1142
|
-
exports.CognitoIdentityServiceException$ = CognitoIdentityServiceException$;
|
|
1143
|
-
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
1144
|
-
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
1145
|
-
exports.CreateIdentityPool$ = CreateIdentityPool$;
|
|
1146
460
|
exports.CreateIdentityPoolCommand = CreateIdentityPoolCommand;
|
|
1147
|
-
exports.CreateIdentityPoolInput$ = CreateIdentityPoolInput$;
|
|
1148
|
-
exports.Credentials$ = Credentials$;
|
|
1149
|
-
exports.DeleteIdentities$ = DeleteIdentities$;
|
|
1150
461
|
exports.DeleteIdentitiesCommand = DeleteIdentitiesCommand;
|
|
1151
|
-
exports.DeleteIdentitiesInput$ = DeleteIdentitiesInput$;
|
|
1152
|
-
exports.DeleteIdentitiesResponse$ = DeleteIdentitiesResponse$;
|
|
1153
|
-
exports.DeleteIdentityPool$ = DeleteIdentityPool$;
|
|
1154
462
|
exports.DeleteIdentityPoolCommand = DeleteIdentityPoolCommand;
|
|
1155
|
-
exports.DeleteIdentityPoolInput$ = DeleteIdentityPoolInput$;
|
|
1156
|
-
exports.DescribeIdentity$ = DescribeIdentity$;
|
|
1157
463
|
exports.DescribeIdentityCommand = DescribeIdentityCommand;
|
|
1158
|
-
exports.DescribeIdentityInput$ = DescribeIdentityInput$;
|
|
1159
|
-
exports.DescribeIdentityPool$ = DescribeIdentityPool$;
|
|
1160
464
|
exports.DescribeIdentityPoolCommand = DescribeIdentityPoolCommand;
|
|
1161
|
-
exports.DescribeIdentityPoolInput$ = DescribeIdentityPoolInput$;
|
|
1162
|
-
exports.DeveloperUserAlreadyRegisteredException = DeveloperUserAlreadyRegisteredException;
|
|
1163
|
-
exports.DeveloperUserAlreadyRegisteredException$ = DeveloperUserAlreadyRegisteredException$;
|
|
1164
465
|
exports.ErrorCode = ErrorCode;
|
|
1165
|
-
exports.ExternalServiceException = ExternalServiceException;
|
|
1166
|
-
exports.ExternalServiceException$ = ExternalServiceException$;
|
|
1167
|
-
exports.GetCredentialsForIdentity$ = GetCredentialsForIdentity$;
|
|
1168
466
|
exports.GetCredentialsForIdentityCommand = GetCredentialsForIdentityCommand;
|
|
1169
|
-
exports.GetCredentialsForIdentityInput$ = GetCredentialsForIdentityInput$;
|
|
1170
|
-
exports.GetCredentialsForIdentityResponse$ = GetCredentialsForIdentityResponse$;
|
|
1171
|
-
exports.GetId$ = GetId$;
|
|
1172
467
|
exports.GetIdCommand = GetIdCommand;
|
|
1173
|
-
exports.GetIdInput$ = GetIdInput$;
|
|
1174
|
-
exports.GetIdResponse$ = GetIdResponse$;
|
|
1175
|
-
exports.GetIdentityPoolRoles$ = GetIdentityPoolRoles$;
|
|
1176
468
|
exports.GetIdentityPoolRolesCommand = GetIdentityPoolRolesCommand;
|
|
1177
|
-
exports.GetIdentityPoolRolesInput$ = GetIdentityPoolRolesInput$;
|
|
1178
|
-
exports.GetIdentityPoolRolesResponse$ = GetIdentityPoolRolesResponse$;
|
|
1179
|
-
exports.GetOpenIdToken$ = GetOpenIdToken$;
|
|
1180
469
|
exports.GetOpenIdTokenCommand = GetOpenIdTokenCommand;
|
|
1181
|
-
exports.GetOpenIdTokenForDeveloperIdentity$ = GetOpenIdTokenForDeveloperIdentity$;
|
|
1182
470
|
exports.GetOpenIdTokenForDeveloperIdentityCommand = GetOpenIdTokenForDeveloperIdentityCommand;
|
|
1183
|
-
exports.GetOpenIdTokenForDeveloperIdentityInput$ = GetOpenIdTokenForDeveloperIdentityInput$;
|
|
1184
|
-
exports.GetOpenIdTokenForDeveloperIdentityResponse$ = GetOpenIdTokenForDeveloperIdentityResponse$;
|
|
1185
|
-
exports.GetOpenIdTokenInput$ = GetOpenIdTokenInput$;
|
|
1186
|
-
exports.GetOpenIdTokenResponse$ = GetOpenIdTokenResponse$;
|
|
1187
|
-
exports.GetPrincipalTagAttributeMap$ = GetPrincipalTagAttributeMap$;
|
|
1188
471
|
exports.GetPrincipalTagAttributeMapCommand = GetPrincipalTagAttributeMapCommand;
|
|
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$;
|
|
1203
472
|
exports.ListIdentitiesCommand = ListIdentitiesCommand;
|
|
1204
|
-
exports.ListIdentitiesInput$ = ListIdentitiesInput$;
|
|
1205
|
-
exports.ListIdentitiesResponse$ = ListIdentitiesResponse$;
|
|
1206
|
-
exports.ListIdentityPools$ = ListIdentityPools$;
|
|
1207
473
|
exports.ListIdentityPoolsCommand = ListIdentityPoolsCommand;
|
|
1208
|
-
exports.ListIdentityPoolsInput$ = ListIdentityPoolsInput$;
|
|
1209
|
-
exports.ListIdentityPoolsResponse$ = ListIdentityPoolsResponse$;
|
|
1210
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1211
474
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1212
|
-
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
1213
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1214
|
-
exports.LookupDeveloperIdentity$ = LookupDeveloperIdentity$;
|
|
1215
475
|
exports.LookupDeveloperIdentityCommand = LookupDeveloperIdentityCommand;
|
|
1216
|
-
exports.LookupDeveloperIdentityInput$ = LookupDeveloperIdentityInput$;
|
|
1217
|
-
exports.LookupDeveloperIdentityResponse$ = LookupDeveloperIdentityResponse$;
|
|
1218
|
-
exports.MappingRule$ = MappingRule$;
|
|
1219
476
|
exports.MappingRuleMatchType = MappingRuleMatchType;
|
|
1220
|
-
exports.MergeDeveloperIdentities$ = MergeDeveloperIdentities$;
|
|
1221
477
|
exports.MergeDeveloperIdentitiesCommand = MergeDeveloperIdentitiesCommand;
|
|
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$;
|
|
1231
478
|
exports.RoleMappingType = RoleMappingType;
|
|
1232
|
-
exports.RulesConfigurationType$ = RulesConfigurationType$;
|
|
1233
|
-
exports.SetIdentityPoolRoles$ = SetIdentityPoolRoles$;
|
|
1234
479
|
exports.SetIdentityPoolRolesCommand = SetIdentityPoolRolesCommand;
|
|
1235
|
-
exports.SetIdentityPoolRolesInput$ = SetIdentityPoolRolesInput$;
|
|
1236
|
-
exports.SetPrincipalTagAttributeMap$ = SetPrincipalTagAttributeMap$;
|
|
1237
480
|
exports.SetPrincipalTagAttributeMapCommand = SetPrincipalTagAttributeMapCommand;
|
|
1238
|
-
exports.SetPrincipalTagAttributeMapInput$ = SetPrincipalTagAttributeMapInput$;
|
|
1239
|
-
exports.SetPrincipalTagAttributeMapResponse$ = SetPrincipalTagAttributeMapResponse$;
|
|
1240
|
-
exports.TagResource$ = TagResource$;
|
|
1241
481
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1242
|
-
exports.TagResourceInput$ = TagResourceInput$;
|
|
1243
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1244
|
-
exports.TooManyRequestsException = TooManyRequestsException;
|
|
1245
|
-
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
1246
|
-
exports.UnlinkDeveloperIdentity$ = UnlinkDeveloperIdentity$;
|
|
1247
482
|
exports.UnlinkDeveloperIdentityCommand = UnlinkDeveloperIdentityCommand;
|
|
1248
|
-
exports.UnlinkDeveloperIdentityInput$ = UnlinkDeveloperIdentityInput$;
|
|
1249
|
-
exports.UnlinkIdentity$ = UnlinkIdentity$;
|
|
1250
483
|
exports.UnlinkIdentityCommand = UnlinkIdentityCommand;
|
|
1251
|
-
exports.UnlinkIdentityInput$ = UnlinkIdentityInput$;
|
|
1252
|
-
exports.UnprocessedIdentityId$ = UnprocessedIdentityId$;
|
|
1253
|
-
exports.UntagResource$ = UntagResource$;
|
|
1254
484
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1255
|
-
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
1256
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1257
|
-
exports.UpdateIdentityPool$ = UpdateIdentityPool$;
|
|
1258
485
|
exports.UpdateIdentityPoolCommand = UpdateIdentityPoolCommand;
|
|
1259
486
|
exports.paginateListIdentityPools = paginateListIdentityPools;
|
|
487
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
488
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
489
|
+
enumerable: true,
|
|
490
|
+
get: function () { return schemas_0[k]; }
|
|
491
|
+
});
|
|
492
|
+
});
|
|
493
|
+
Object.keys(errors).forEach(function (k) {
|
|
494
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
495
|
+
enumerable: true,
|
|
496
|
+
get: function () { return errors[k]; }
|
|
497
|
+
});
|
|
498
|
+
});
|