@aws-sdk/client-identitystore 3.168.0 → 3.170.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Identitystore.d.ts +346 -100
- package/dist-types/ts3.4/IdentitystoreClient.d.ts +244 -92
- package/dist-types/ts3.4/commands/CreateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeGroupCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeGroupMembershipCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetGroupMembershipIdCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetUserIdCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/IsMemberInGroupsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupMembershipsForMemberCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListGroupsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListUsersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateGroupCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateUserCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IdentitystoreServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +739 -696
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListGroupMembershipsForMemberPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupMembershipsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListGroupsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListUsersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,696 +1,739 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
|
-
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
|
-
|
|
5
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
export interface UniqueAttribute {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export declare
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
export
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
export interface
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
export interface
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
export
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { DocumentType as __DocumentType } from "@aws-sdk/types";
|
|
3
|
+
import { IdentitystoreServiceException as __BaseException } from "./IdentitystoreServiceException";
|
|
4
|
+
|
|
5
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
6
|
+
readonly name: "AccessDeniedException";
|
|
7
|
+
readonly $fault: "client";
|
|
8
|
+
Message?: string;
|
|
9
|
+
|
|
10
|
+
RequestId?: string;
|
|
11
|
+
|
|
12
|
+
constructor(
|
|
13
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface Address {
|
|
18
|
+
StreetAddress?: string;
|
|
19
|
+
|
|
20
|
+
Locality?: string;
|
|
21
|
+
|
|
22
|
+
Region?: string;
|
|
23
|
+
|
|
24
|
+
PostalCode?: string;
|
|
25
|
+
|
|
26
|
+
Country?: string;
|
|
27
|
+
|
|
28
|
+
Formatted?: string;
|
|
29
|
+
|
|
30
|
+
Type?: string;
|
|
31
|
+
|
|
32
|
+
Primary?: boolean;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface ExternalId {
|
|
36
|
+
Issuer: string | undefined;
|
|
37
|
+
|
|
38
|
+
Id: string | undefined;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface UniqueAttribute {
|
|
42
|
+
AttributePath: string | undefined;
|
|
43
|
+
|
|
44
|
+
AttributeValue: __DocumentType | undefined;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export declare type AlternateIdentifier =
|
|
48
|
+
| AlternateIdentifier.ExternalIdMember
|
|
49
|
+
| AlternateIdentifier.UniqueAttributeMember
|
|
50
|
+
| AlternateIdentifier.$UnknownMember;
|
|
51
|
+
export declare namespace AlternateIdentifier {
|
|
52
|
+
interface ExternalIdMember {
|
|
53
|
+
ExternalId: ExternalId;
|
|
54
|
+
UniqueAttribute?: never;
|
|
55
|
+
$unknown?: never;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
interface UniqueAttributeMember {
|
|
59
|
+
ExternalId?: never;
|
|
60
|
+
UniqueAttribute: UniqueAttribute;
|
|
61
|
+
$unknown?: never;
|
|
62
|
+
}
|
|
63
|
+
interface $UnknownMember {
|
|
64
|
+
ExternalId?: never;
|
|
65
|
+
UniqueAttribute?: never;
|
|
66
|
+
$unknown: [string, any];
|
|
67
|
+
}
|
|
68
|
+
interface Visitor<T> {
|
|
69
|
+
ExternalId: (value: ExternalId) => T;
|
|
70
|
+
UniqueAttribute: (value: UniqueAttribute) => T;
|
|
71
|
+
_: (name: string, value: any) => T;
|
|
72
|
+
}
|
|
73
|
+
const visit: <T>(value: AlternateIdentifier, visitor: Visitor<T>) => T;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export interface AttributeOperation {
|
|
77
|
+
AttributePath: string | undefined;
|
|
78
|
+
|
|
79
|
+
AttributeValue?: __DocumentType;
|
|
80
|
+
}
|
|
81
|
+
export interface GetGroupIdRequest {
|
|
82
|
+
IdentityStoreId: string | undefined;
|
|
83
|
+
|
|
84
|
+
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface GetGroupIdResponse {
|
|
87
|
+
GroupId: string | undefined;
|
|
88
|
+
|
|
89
|
+
IdentityStoreId: string | undefined;
|
|
90
|
+
}
|
|
91
|
+
export declare enum ResourceType {
|
|
92
|
+
GROUP = "GROUP",
|
|
93
|
+
GROUP_MEMBERSHIP = "GROUP_MEMBERSHIP",
|
|
94
|
+
IDENTITY_STORE = "IDENTITY_STORE",
|
|
95
|
+
USER = "USER",
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
99
|
+
readonly name: "ResourceNotFoundException";
|
|
100
|
+
readonly $fault: "client";
|
|
101
|
+
|
|
102
|
+
ResourceType?: ResourceType | string;
|
|
103
|
+
|
|
104
|
+
ResourceId?: string;
|
|
105
|
+
Message?: string;
|
|
106
|
+
|
|
107
|
+
RequestId?: string;
|
|
108
|
+
|
|
109
|
+
constructor(
|
|
110
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export declare class ValidationException extends __BaseException {
|
|
115
|
+
readonly name: "ValidationException";
|
|
116
|
+
readonly $fault: "client";
|
|
117
|
+
Message?: string;
|
|
118
|
+
|
|
119
|
+
RequestId?: string;
|
|
120
|
+
|
|
121
|
+
constructor(
|
|
122
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
123
|
+
);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export declare type MemberId = MemberId.UserIdMember | MemberId.$UnknownMember;
|
|
127
|
+
export declare namespace MemberId {
|
|
128
|
+
interface UserIdMember {
|
|
129
|
+
UserId: string;
|
|
130
|
+
$unknown?: never;
|
|
131
|
+
}
|
|
132
|
+
interface $UnknownMember {
|
|
133
|
+
UserId?: never;
|
|
134
|
+
$unknown: [string, any];
|
|
135
|
+
}
|
|
136
|
+
interface Visitor<T> {
|
|
137
|
+
UserId: (value: string) => T;
|
|
138
|
+
_: (name: string, value: any) => T;
|
|
139
|
+
}
|
|
140
|
+
const visit: <T>(value: MemberId, visitor: Visitor<T>) => T;
|
|
141
|
+
}
|
|
142
|
+
export interface GetGroupMembershipIdRequest {
|
|
143
|
+
IdentityStoreId: string | undefined;
|
|
144
|
+
|
|
145
|
+
GroupId: string | undefined;
|
|
146
|
+
|
|
147
|
+
MemberId: MemberId | undefined;
|
|
148
|
+
}
|
|
149
|
+
export interface GetGroupMembershipIdResponse {
|
|
150
|
+
MembershipId: string | undefined;
|
|
151
|
+
|
|
152
|
+
IdentityStoreId: string | undefined;
|
|
153
|
+
}
|
|
154
|
+
export interface GetUserIdRequest {
|
|
155
|
+
IdentityStoreId: string | undefined;
|
|
156
|
+
|
|
157
|
+
AlternateIdentifier: AlternateIdentifier | undefined;
|
|
158
|
+
}
|
|
159
|
+
export interface GetUserIdResponse {
|
|
160
|
+
UserId: string | undefined;
|
|
161
|
+
|
|
162
|
+
IdentityStoreId: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export declare enum ConflictExceptionReason {
|
|
165
|
+
CONCURRENT_MODIFICATION = "CONCURRENT_MODIFICATION",
|
|
166
|
+
UNIQUENESS_CONSTRAINT_VIOLATION = "UNIQUENESS_CONSTRAINT_VIOLATION",
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export declare class ConflictException extends __BaseException {
|
|
170
|
+
readonly name: "ConflictException";
|
|
171
|
+
readonly $fault: "client";
|
|
172
|
+
Message?: string;
|
|
173
|
+
|
|
174
|
+
RequestId?: string;
|
|
175
|
+
|
|
176
|
+
Reason?: ConflictExceptionReason | string;
|
|
177
|
+
|
|
178
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
179
|
+
}
|
|
180
|
+
export interface CreateGroupMembershipRequest {
|
|
181
|
+
IdentityStoreId: string | undefined;
|
|
182
|
+
|
|
183
|
+
GroupId: string | undefined;
|
|
184
|
+
|
|
185
|
+
MemberId: MemberId | undefined;
|
|
186
|
+
}
|
|
187
|
+
export interface CreateGroupMembershipResponse {
|
|
188
|
+
MembershipId: string | undefined;
|
|
189
|
+
|
|
190
|
+
IdentityStoreId: string | undefined;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
194
|
+
readonly name: "ServiceQuotaExceededException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
Message?: string;
|
|
197
|
+
|
|
198
|
+
RequestId?: string;
|
|
199
|
+
|
|
200
|
+
constructor(
|
|
201
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
202
|
+
);
|
|
203
|
+
}
|
|
204
|
+
export interface DeleteGroupMembershipRequest {
|
|
205
|
+
IdentityStoreId: string | undefined;
|
|
206
|
+
|
|
207
|
+
MembershipId: string | undefined;
|
|
208
|
+
}
|
|
209
|
+
export interface DeleteGroupMembershipResponse {}
|
|
210
|
+
export interface DescribeGroupMembershipRequest {
|
|
211
|
+
IdentityStoreId: string | undefined;
|
|
212
|
+
|
|
213
|
+
MembershipId: string | undefined;
|
|
214
|
+
}
|
|
215
|
+
export interface DescribeGroupMembershipResponse {
|
|
216
|
+
IdentityStoreId: string | undefined;
|
|
217
|
+
|
|
218
|
+
MembershipId: string | undefined;
|
|
219
|
+
|
|
220
|
+
GroupId: string | undefined;
|
|
221
|
+
|
|
222
|
+
MemberId: MemberId | undefined;
|
|
223
|
+
}
|
|
224
|
+
export interface ListGroupMembershipsRequest {
|
|
225
|
+
IdentityStoreId: string | undefined;
|
|
226
|
+
|
|
227
|
+
GroupId: string | undefined;
|
|
228
|
+
|
|
229
|
+
MaxResults?: number;
|
|
230
|
+
|
|
231
|
+
NextToken?: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
export interface GroupMembership {
|
|
235
|
+
IdentityStoreId: string | undefined;
|
|
236
|
+
|
|
237
|
+
MembershipId?: string;
|
|
238
|
+
|
|
239
|
+
GroupId?: string;
|
|
240
|
+
|
|
241
|
+
MemberId?: MemberId;
|
|
242
|
+
}
|
|
243
|
+
export interface ListGroupMembershipsResponse {
|
|
244
|
+
GroupMemberships: GroupMembership[] | undefined;
|
|
245
|
+
|
|
246
|
+
NextToken?: string;
|
|
247
|
+
}
|
|
248
|
+
export interface CreateGroupRequest {
|
|
249
|
+
IdentityStoreId: string | undefined;
|
|
250
|
+
|
|
251
|
+
DisplayName?: string;
|
|
252
|
+
|
|
253
|
+
Description?: string;
|
|
254
|
+
}
|
|
255
|
+
export interface CreateGroupResponse {
|
|
256
|
+
GroupId: string | undefined;
|
|
257
|
+
|
|
258
|
+
IdentityStoreId: string | undefined;
|
|
259
|
+
}
|
|
260
|
+
export interface DeleteGroupRequest {
|
|
261
|
+
IdentityStoreId: string | undefined;
|
|
262
|
+
|
|
263
|
+
GroupId: string | undefined;
|
|
264
|
+
}
|
|
265
|
+
export interface DeleteGroupResponse {}
|
|
266
|
+
export interface DescribeGroupRequest {
|
|
267
|
+
IdentityStoreId: string | undefined;
|
|
268
|
+
|
|
269
|
+
GroupId: string | undefined;
|
|
270
|
+
}
|
|
271
|
+
export interface DescribeGroupResponse {
|
|
272
|
+
GroupId: string | undefined;
|
|
273
|
+
|
|
274
|
+
DisplayName?: string;
|
|
275
|
+
|
|
276
|
+
ExternalIds?: ExternalId[];
|
|
277
|
+
|
|
278
|
+
Description?: string;
|
|
279
|
+
|
|
280
|
+
IdentityStoreId: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
export interface Filter {
|
|
284
|
+
AttributePath: string | undefined;
|
|
285
|
+
|
|
286
|
+
AttributeValue: string | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface ListGroupsRequest {
|
|
289
|
+
IdentityStoreId: string | undefined;
|
|
290
|
+
|
|
291
|
+
MaxResults?: number;
|
|
292
|
+
|
|
293
|
+
NextToken?: string;
|
|
294
|
+
|
|
295
|
+
Filters?: Filter[];
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
export interface Group {
|
|
299
|
+
GroupId: string | undefined;
|
|
300
|
+
|
|
301
|
+
DisplayName?: string;
|
|
302
|
+
|
|
303
|
+
ExternalIds?: ExternalId[];
|
|
304
|
+
|
|
305
|
+
Description?: string;
|
|
306
|
+
|
|
307
|
+
IdentityStoreId: string | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface ListGroupsResponse {
|
|
310
|
+
Groups: Group[] | undefined;
|
|
311
|
+
|
|
312
|
+
NextToken?: string;
|
|
313
|
+
}
|
|
314
|
+
export interface UpdateGroupRequest {
|
|
315
|
+
IdentityStoreId: string | undefined;
|
|
316
|
+
|
|
317
|
+
GroupId: string | undefined;
|
|
318
|
+
|
|
319
|
+
Operations: AttributeOperation[] | undefined;
|
|
320
|
+
}
|
|
321
|
+
export interface UpdateGroupResponse {}
|
|
322
|
+
|
|
323
|
+
export declare class InternalServerException extends __BaseException {
|
|
324
|
+
readonly name: "InternalServerException";
|
|
325
|
+
readonly $fault: "server";
|
|
326
|
+
$retryable: {};
|
|
327
|
+
Message?: string;
|
|
328
|
+
|
|
329
|
+
RequestId?: string;
|
|
330
|
+
|
|
331
|
+
RetryAfterSeconds?: number;
|
|
332
|
+
|
|
333
|
+
constructor(
|
|
334
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
335
|
+
);
|
|
336
|
+
}
|
|
337
|
+
export interface IsMemberInGroupsRequest {
|
|
338
|
+
IdentityStoreId: string | undefined;
|
|
339
|
+
|
|
340
|
+
MemberId: MemberId | undefined;
|
|
341
|
+
|
|
342
|
+
GroupIds: string[] | undefined;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
export interface GroupMembershipExistenceResult {
|
|
346
|
+
GroupId?: string;
|
|
347
|
+
|
|
348
|
+
MemberId?: MemberId;
|
|
349
|
+
|
|
350
|
+
MembershipExists?: boolean;
|
|
351
|
+
}
|
|
352
|
+
export interface IsMemberInGroupsResponse {
|
|
353
|
+
Results: GroupMembershipExistenceResult[] | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface ListGroupMembershipsForMemberRequest {
|
|
356
|
+
IdentityStoreId: string | undefined;
|
|
357
|
+
|
|
358
|
+
MemberId: MemberId | undefined;
|
|
359
|
+
|
|
360
|
+
MaxResults?: number;
|
|
361
|
+
|
|
362
|
+
NextToken?: string;
|
|
363
|
+
}
|
|
364
|
+
export interface ListGroupMembershipsForMemberResponse {
|
|
365
|
+
GroupMemberships: GroupMembership[] | undefined;
|
|
366
|
+
|
|
367
|
+
NextToken?: string;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export declare class ThrottlingException extends __BaseException {
|
|
371
|
+
readonly name: "ThrottlingException";
|
|
372
|
+
readonly $fault: "client";
|
|
373
|
+
$retryable: {
|
|
374
|
+
throttling: boolean;
|
|
375
|
+
};
|
|
376
|
+
Message?: string;
|
|
377
|
+
|
|
378
|
+
RequestId?: string;
|
|
379
|
+
|
|
380
|
+
RetryAfterSeconds?: number;
|
|
381
|
+
|
|
382
|
+
constructor(
|
|
383
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
384
|
+
);
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
export interface Email {
|
|
388
|
+
Value?: string;
|
|
389
|
+
|
|
390
|
+
Type?: string;
|
|
391
|
+
|
|
392
|
+
Primary?: boolean;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
export interface Name {
|
|
396
|
+
Formatted?: string;
|
|
397
|
+
|
|
398
|
+
FamilyName?: string;
|
|
399
|
+
|
|
400
|
+
GivenName?: string;
|
|
401
|
+
|
|
402
|
+
MiddleName?: string;
|
|
403
|
+
|
|
404
|
+
HonorificPrefix?: string;
|
|
405
|
+
|
|
406
|
+
HonorificSuffix?: string;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
export interface PhoneNumber {
|
|
410
|
+
Value?: string;
|
|
411
|
+
|
|
412
|
+
Type?: string;
|
|
413
|
+
|
|
414
|
+
Primary?: boolean;
|
|
415
|
+
}
|
|
416
|
+
export interface CreateUserRequest {
|
|
417
|
+
IdentityStoreId: string | undefined;
|
|
418
|
+
|
|
419
|
+
UserName?: string;
|
|
420
|
+
|
|
421
|
+
Name?: Name;
|
|
422
|
+
|
|
423
|
+
DisplayName?: string;
|
|
424
|
+
|
|
425
|
+
NickName?: string;
|
|
426
|
+
|
|
427
|
+
ProfileUrl?: string;
|
|
428
|
+
|
|
429
|
+
Emails?: Email[];
|
|
430
|
+
|
|
431
|
+
Addresses?: Address[];
|
|
432
|
+
|
|
433
|
+
PhoneNumbers?: PhoneNumber[];
|
|
434
|
+
|
|
435
|
+
UserType?: string;
|
|
436
|
+
|
|
437
|
+
Title?: string;
|
|
438
|
+
|
|
439
|
+
PreferredLanguage?: string;
|
|
440
|
+
|
|
441
|
+
Locale?: string;
|
|
442
|
+
|
|
443
|
+
Timezone?: string;
|
|
444
|
+
}
|
|
445
|
+
export interface CreateUserResponse {
|
|
446
|
+
UserId: string | undefined;
|
|
447
|
+
|
|
448
|
+
IdentityStoreId: string | undefined;
|
|
449
|
+
}
|
|
450
|
+
export interface DeleteUserRequest {
|
|
451
|
+
IdentityStoreId: string | undefined;
|
|
452
|
+
|
|
453
|
+
UserId: string | undefined;
|
|
454
|
+
}
|
|
455
|
+
export interface DeleteUserResponse {}
|
|
456
|
+
export interface DescribeUserRequest {
|
|
457
|
+
IdentityStoreId: string | undefined;
|
|
458
|
+
|
|
459
|
+
UserId: string | undefined;
|
|
460
|
+
}
|
|
461
|
+
export interface DescribeUserResponse {
|
|
462
|
+
UserName?: string;
|
|
463
|
+
|
|
464
|
+
UserId: string | undefined;
|
|
465
|
+
|
|
466
|
+
ExternalIds?: ExternalId[];
|
|
467
|
+
|
|
468
|
+
Name?: Name;
|
|
469
|
+
|
|
470
|
+
DisplayName?: string;
|
|
471
|
+
|
|
472
|
+
NickName?: string;
|
|
473
|
+
|
|
474
|
+
ProfileUrl?: string;
|
|
475
|
+
|
|
476
|
+
Emails?: Email[];
|
|
477
|
+
|
|
478
|
+
Addresses?: Address[];
|
|
479
|
+
|
|
480
|
+
PhoneNumbers?: PhoneNumber[];
|
|
481
|
+
|
|
482
|
+
UserType?: string;
|
|
483
|
+
|
|
484
|
+
Title?: string;
|
|
485
|
+
|
|
486
|
+
PreferredLanguage?: string;
|
|
487
|
+
|
|
488
|
+
Locale?: string;
|
|
489
|
+
|
|
490
|
+
Timezone?: string;
|
|
491
|
+
|
|
492
|
+
IdentityStoreId: string | undefined;
|
|
493
|
+
}
|
|
494
|
+
export interface ListUsersRequest {
|
|
495
|
+
IdentityStoreId: string | undefined;
|
|
496
|
+
|
|
497
|
+
MaxResults?: number;
|
|
498
|
+
|
|
499
|
+
NextToken?: string;
|
|
500
|
+
|
|
501
|
+
Filters?: Filter[];
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
export interface User {
|
|
505
|
+
UserName?: string;
|
|
506
|
+
|
|
507
|
+
UserId: string | undefined;
|
|
508
|
+
|
|
509
|
+
ExternalIds?: ExternalId[];
|
|
510
|
+
|
|
511
|
+
Name?: Name;
|
|
512
|
+
|
|
513
|
+
DisplayName?: string;
|
|
514
|
+
|
|
515
|
+
NickName?: string;
|
|
516
|
+
|
|
517
|
+
ProfileUrl?: string;
|
|
518
|
+
|
|
519
|
+
Emails?: Email[];
|
|
520
|
+
|
|
521
|
+
Addresses?: Address[];
|
|
522
|
+
|
|
523
|
+
PhoneNumbers?: PhoneNumber[];
|
|
524
|
+
|
|
525
|
+
UserType?: string;
|
|
526
|
+
|
|
527
|
+
Title?: string;
|
|
528
|
+
|
|
529
|
+
PreferredLanguage?: string;
|
|
530
|
+
|
|
531
|
+
Locale?: string;
|
|
532
|
+
|
|
533
|
+
Timezone?: string;
|
|
534
|
+
|
|
535
|
+
IdentityStoreId: string | undefined;
|
|
536
|
+
}
|
|
537
|
+
export interface ListUsersResponse {
|
|
538
|
+
Users: User[] | undefined;
|
|
539
|
+
|
|
540
|
+
NextToken?: string;
|
|
541
|
+
}
|
|
542
|
+
export interface UpdateUserRequest {
|
|
543
|
+
IdentityStoreId: string | undefined;
|
|
544
|
+
|
|
545
|
+
UserId: string | undefined;
|
|
546
|
+
|
|
547
|
+
Operations: AttributeOperation[] | undefined;
|
|
548
|
+
}
|
|
549
|
+
export interface UpdateUserResponse {}
|
|
550
|
+
|
|
551
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
552
|
+
|
|
553
|
+
export declare const ExternalIdFilterSensitiveLog: (obj: ExternalId) => any;
|
|
554
|
+
|
|
555
|
+
export declare const UniqueAttributeFilterSensitiveLog: (
|
|
556
|
+
obj: UniqueAttribute
|
|
557
|
+
) => any;
|
|
558
|
+
|
|
559
|
+
export declare const AlternateIdentifierFilterSensitiveLog: (
|
|
560
|
+
obj: AlternateIdentifier
|
|
561
|
+
) => any;
|
|
562
|
+
|
|
563
|
+
export declare const AttributeOperationFilterSensitiveLog: (
|
|
564
|
+
obj: AttributeOperation
|
|
565
|
+
) => any;
|
|
566
|
+
|
|
567
|
+
export declare const GetGroupIdRequestFilterSensitiveLog: (
|
|
568
|
+
obj: GetGroupIdRequest
|
|
569
|
+
) => any;
|
|
570
|
+
|
|
571
|
+
export declare const GetGroupIdResponseFilterSensitiveLog: (
|
|
572
|
+
obj: GetGroupIdResponse
|
|
573
|
+
) => any;
|
|
574
|
+
|
|
575
|
+
export declare const MemberIdFilterSensitiveLog: (obj: MemberId) => any;
|
|
576
|
+
|
|
577
|
+
export declare const GetGroupMembershipIdRequestFilterSensitiveLog: (
|
|
578
|
+
obj: GetGroupMembershipIdRequest
|
|
579
|
+
) => any;
|
|
580
|
+
|
|
581
|
+
export declare const GetGroupMembershipIdResponseFilterSensitiveLog: (
|
|
582
|
+
obj: GetGroupMembershipIdResponse
|
|
583
|
+
) => any;
|
|
584
|
+
|
|
585
|
+
export declare const GetUserIdRequestFilterSensitiveLog: (
|
|
586
|
+
obj: GetUserIdRequest
|
|
587
|
+
) => any;
|
|
588
|
+
|
|
589
|
+
export declare const GetUserIdResponseFilterSensitiveLog: (
|
|
590
|
+
obj: GetUserIdResponse
|
|
591
|
+
) => any;
|
|
592
|
+
|
|
593
|
+
export declare const CreateGroupMembershipRequestFilterSensitiveLog: (
|
|
594
|
+
obj: CreateGroupMembershipRequest
|
|
595
|
+
) => any;
|
|
596
|
+
|
|
597
|
+
export declare const CreateGroupMembershipResponseFilterSensitiveLog: (
|
|
598
|
+
obj: CreateGroupMembershipResponse
|
|
599
|
+
) => any;
|
|
600
|
+
|
|
601
|
+
export declare const DeleteGroupMembershipRequestFilterSensitiveLog: (
|
|
602
|
+
obj: DeleteGroupMembershipRequest
|
|
603
|
+
) => any;
|
|
604
|
+
|
|
605
|
+
export declare const DeleteGroupMembershipResponseFilterSensitiveLog: (
|
|
606
|
+
obj: DeleteGroupMembershipResponse
|
|
607
|
+
) => any;
|
|
608
|
+
|
|
609
|
+
export declare const DescribeGroupMembershipRequestFilterSensitiveLog: (
|
|
610
|
+
obj: DescribeGroupMembershipRequest
|
|
611
|
+
) => any;
|
|
612
|
+
|
|
613
|
+
export declare const DescribeGroupMembershipResponseFilterSensitiveLog: (
|
|
614
|
+
obj: DescribeGroupMembershipResponse
|
|
615
|
+
) => any;
|
|
616
|
+
|
|
617
|
+
export declare const ListGroupMembershipsRequestFilterSensitiveLog: (
|
|
618
|
+
obj: ListGroupMembershipsRequest
|
|
619
|
+
) => any;
|
|
620
|
+
|
|
621
|
+
export declare const GroupMembershipFilterSensitiveLog: (
|
|
622
|
+
obj: GroupMembership
|
|
623
|
+
) => any;
|
|
624
|
+
|
|
625
|
+
export declare const ListGroupMembershipsResponseFilterSensitiveLog: (
|
|
626
|
+
obj: ListGroupMembershipsResponse
|
|
627
|
+
) => any;
|
|
628
|
+
|
|
629
|
+
export declare const CreateGroupRequestFilterSensitiveLog: (
|
|
630
|
+
obj: CreateGroupRequest
|
|
631
|
+
) => any;
|
|
632
|
+
|
|
633
|
+
export declare const CreateGroupResponseFilterSensitiveLog: (
|
|
634
|
+
obj: CreateGroupResponse
|
|
635
|
+
) => any;
|
|
636
|
+
|
|
637
|
+
export declare const DeleteGroupRequestFilterSensitiveLog: (
|
|
638
|
+
obj: DeleteGroupRequest
|
|
639
|
+
) => any;
|
|
640
|
+
|
|
641
|
+
export declare const DeleteGroupResponseFilterSensitiveLog: (
|
|
642
|
+
obj: DeleteGroupResponse
|
|
643
|
+
) => any;
|
|
644
|
+
|
|
645
|
+
export declare const DescribeGroupRequestFilterSensitiveLog: (
|
|
646
|
+
obj: DescribeGroupRequest
|
|
647
|
+
) => any;
|
|
648
|
+
|
|
649
|
+
export declare const DescribeGroupResponseFilterSensitiveLog: (
|
|
650
|
+
obj: DescribeGroupResponse
|
|
651
|
+
) => any;
|
|
652
|
+
|
|
653
|
+
export declare const FilterFilterSensitiveLog: (obj: Filter) => any;
|
|
654
|
+
|
|
655
|
+
export declare const ListGroupsRequestFilterSensitiveLog: (
|
|
656
|
+
obj: ListGroupsRequest
|
|
657
|
+
) => any;
|
|
658
|
+
|
|
659
|
+
export declare const GroupFilterSensitiveLog: (obj: Group) => any;
|
|
660
|
+
|
|
661
|
+
export declare const ListGroupsResponseFilterSensitiveLog: (
|
|
662
|
+
obj: ListGroupsResponse
|
|
663
|
+
) => any;
|
|
664
|
+
|
|
665
|
+
export declare const UpdateGroupRequestFilterSensitiveLog: (
|
|
666
|
+
obj: UpdateGroupRequest
|
|
667
|
+
) => any;
|
|
668
|
+
|
|
669
|
+
export declare const UpdateGroupResponseFilterSensitiveLog: (
|
|
670
|
+
obj: UpdateGroupResponse
|
|
671
|
+
) => any;
|
|
672
|
+
|
|
673
|
+
export declare const IsMemberInGroupsRequestFilterSensitiveLog: (
|
|
674
|
+
obj: IsMemberInGroupsRequest
|
|
675
|
+
) => any;
|
|
676
|
+
|
|
677
|
+
export declare const GroupMembershipExistenceResultFilterSensitiveLog: (
|
|
678
|
+
obj: GroupMembershipExistenceResult
|
|
679
|
+
) => any;
|
|
680
|
+
|
|
681
|
+
export declare const IsMemberInGroupsResponseFilterSensitiveLog: (
|
|
682
|
+
obj: IsMemberInGroupsResponse
|
|
683
|
+
) => any;
|
|
684
|
+
|
|
685
|
+
export declare const ListGroupMembershipsForMemberRequestFilterSensitiveLog: (
|
|
686
|
+
obj: ListGroupMembershipsForMemberRequest
|
|
687
|
+
) => any;
|
|
688
|
+
|
|
689
|
+
export declare const ListGroupMembershipsForMemberResponseFilterSensitiveLog: (
|
|
690
|
+
obj: ListGroupMembershipsForMemberResponse
|
|
691
|
+
) => any;
|
|
692
|
+
|
|
693
|
+
export declare const EmailFilterSensitiveLog: (obj: Email) => any;
|
|
694
|
+
|
|
695
|
+
export declare const NameFilterSensitiveLog: (obj: Name) => any;
|
|
696
|
+
|
|
697
|
+
export declare const PhoneNumberFilterSensitiveLog: (obj: PhoneNumber) => any;
|
|
698
|
+
|
|
699
|
+
export declare const CreateUserRequestFilterSensitiveLog: (
|
|
700
|
+
obj: CreateUserRequest
|
|
701
|
+
) => any;
|
|
702
|
+
|
|
703
|
+
export declare const CreateUserResponseFilterSensitiveLog: (
|
|
704
|
+
obj: CreateUserResponse
|
|
705
|
+
) => any;
|
|
706
|
+
|
|
707
|
+
export declare const DeleteUserRequestFilterSensitiveLog: (
|
|
708
|
+
obj: DeleteUserRequest
|
|
709
|
+
) => any;
|
|
710
|
+
|
|
711
|
+
export declare const DeleteUserResponseFilterSensitiveLog: (
|
|
712
|
+
obj: DeleteUserResponse
|
|
713
|
+
) => any;
|
|
714
|
+
|
|
715
|
+
export declare const DescribeUserRequestFilterSensitiveLog: (
|
|
716
|
+
obj: DescribeUserRequest
|
|
717
|
+
) => any;
|
|
718
|
+
|
|
719
|
+
export declare const DescribeUserResponseFilterSensitiveLog: (
|
|
720
|
+
obj: DescribeUserResponse
|
|
721
|
+
) => any;
|
|
722
|
+
|
|
723
|
+
export declare const ListUsersRequestFilterSensitiveLog: (
|
|
724
|
+
obj: ListUsersRequest
|
|
725
|
+
) => any;
|
|
726
|
+
|
|
727
|
+
export declare const UserFilterSensitiveLog: (obj: User) => any;
|
|
728
|
+
|
|
729
|
+
export declare const ListUsersResponseFilterSensitiveLog: (
|
|
730
|
+
obj: ListUsersResponse
|
|
731
|
+
) => any;
|
|
732
|
+
|
|
733
|
+
export declare const UpdateUserRequestFilterSensitiveLog: (
|
|
734
|
+
obj: UpdateUserRequest
|
|
735
|
+
) => any;
|
|
736
|
+
|
|
737
|
+
export declare const UpdateUserResponseFilterSensitiveLog: (
|
|
738
|
+
obj: UpdateUserResponse
|
|
739
|
+
) => any;
|