@aws-sdk/client-chime-sdk-identity 3.131.0 → 3.142.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 +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/CreateAppInstanceAdminCommand.js +2 -2
- package/dist-cjs/commands/CreateAppInstanceCommand.js +2 -2
- package/dist-cjs/commands/CreateAppInstanceUserCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppInstanceAdminCommand.js +1 -1
- package/dist-cjs/commands/DeleteAppInstanceCommand.js +1 -1
- package/dist-cjs/commands/DeleteAppInstanceUserCommand.js +1 -1
- package/dist-cjs/commands/DeregisterAppInstanceUserEndpointCommand.js +1 -1
- package/dist-cjs/commands/DescribeAppInstanceAdminCommand.js +2 -2
- package/dist-cjs/commands/DescribeAppInstanceCommand.js +2 -2
- package/dist-cjs/commands/DescribeAppInstanceUserCommand.js +2 -2
- package/dist-cjs/commands/DescribeAppInstanceUserEndpointCommand.js +2 -2
- package/dist-cjs/commands/GetAppInstanceRetentionSettingsCommand.js +2 -2
- package/dist-cjs/commands/ListAppInstanceAdminsCommand.js +2 -2
- package/dist-cjs/commands/ListAppInstanceUserEndpointsCommand.js +2 -2
- package/dist-cjs/commands/ListAppInstanceUsersCommand.js +2 -2
- package/dist-cjs/commands/ListAppInstancesCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutAppInstanceRetentionSettingsCommand.js +2 -2
- package/dist-cjs/commands/RegisterAppInstanceUserEndpointCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +1 -1
- package/dist-cjs/commands/UntagResourceCommand.js +1 -1
- package/dist-cjs/commands/UpdateAppInstanceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppInstanceUserCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppInstanceUserEndpointCommand.js +2 -2
- package/dist-cjs/models/models_0.js +307 -425
- package/dist-cjs/protocols/Aws_restJson1.js +294 -598
- package/dist-es/commands/CreateAppInstanceAdminCommand.js +3 -3
- package/dist-es/commands/CreateAppInstanceCommand.js +3 -3
- package/dist-es/commands/CreateAppInstanceUserCommand.js +3 -3
- package/dist-es/commands/DeleteAppInstanceAdminCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceCommand.js +2 -2
- package/dist-es/commands/DeleteAppInstanceUserCommand.js +2 -2
- package/dist-es/commands/DeregisterAppInstanceUserEndpointCommand.js +2 -2
- package/dist-es/commands/DescribeAppInstanceAdminCommand.js +3 -3
- package/dist-es/commands/DescribeAppInstanceCommand.js +3 -3
- package/dist-es/commands/DescribeAppInstanceUserCommand.js +3 -3
- package/dist-es/commands/DescribeAppInstanceUserEndpointCommand.js +3 -3
- package/dist-es/commands/GetAppInstanceRetentionSettingsCommand.js +3 -3
- package/dist-es/commands/ListAppInstanceAdminsCommand.js +3 -3
- package/dist-es/commands/ListAppInstanceUserEndpointsCommand.js +3 -3
- package/dist-es/commands/ListAppInstanceUsersCommand.js +3 -3
- package/dist-es/commands/ListAppInstancesCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutAppInstanceRetentionSettingsCommand.js +3 -3
- package/dist-es/commands/RegisterAppInstanceUserEndpointCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateAppInstanceCommand.js +3 -3
- package/dist-es/commands/UpdateAppInstanceUserCommand.js +3 -3
- package/dist-es/commands/UpdateAppInstanceUserEndpointCommand.js +3 -3
- package/dist-es/models/models_0.js +66 -240
- package/dist-es/protocols/Aws_restJson1.js +384 -601
- package/dist-types/models/models_0.d.ts +224 -336
- package/dist-types/ts3.4/models/models_0.d.ts +112 -224
- package/package.json +6 -6
|
@@ -17,10 +17,6 @@ export interface AppInstance {
|
|
|
17
17
|
|
|
18
18
|
Metadata?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace AppInstance {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: AppInstance) => any;
|
|
23
|
-
}
|
|
24
20
|
|
|
25
21
|
export interface Identity {
|
|
26
22
|
|
|
@@ -28,10 +24,6 @@ export interface Identity {
|
|
|
28
24
|
|
|
29
25
|
Name?: string;
|
|
30
26
|
}
|
|
31
|
-
export declare namespace Identity {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: Identity) => any;
|
|
34
|
-
}
|
|
35
27
|
|
|
36
28
|
export interface AppInstanceAdmin {
|
|
37
29
|
|
|
@@ -41,19 +33,11 @@ export interface AppInstanceAdmin {
|
|
|
41
33
|
|
|
42
34
|
CreatedTimestamp?: Date;
|
|
43
35
|
}
|
|
44
|
-
export declare namespace AppInstanceAdmin {
|
|
45
|
-
|
|
46
|
-
const filterSensitiveLog: (obj: AppInstanceAdmin) => any;
|
|
47
|
-
}
|
|
48
36
|
|
|
49
37
|
export interface AppInstanceAdminSummary {
|
|
50
38
|
|
|
51
39
|
Admin?: Identity;
|
|
52
40
|
}
|
|
53
|
-
export declare namespace AppInstanceAdminSummary {
|
|
54
|
-
|
|
55
|
-
const filterSensitiveLog: (obj: AppInstanceAdminSummary) => any;
|
|
56
|
-
}
|
|
57
41
|
|
|
58
42
|
export interface AppInstanceSummary {
|
|
59
43
|
|
|
@@ -63,28 +47,16 @@ export interface AppInstanceSummary {
|
|
|
63
47
|
|
|
64
48
|
Metadata?: string;
|
|
65
49
|
}
|
|
66
|
-
export declare namespace AppInstanceSummary {
|
|
67
|
-
|
|
68
|
-
const filterSensitiveLog: (obj: AppInstanceSummary) => any;
|
|
69
|
-
}
|
|
70
50
|
|
|
71
51
|
export interface ChannelRetentionSettings {
|
|
72
52
|
|
|
73
53
|
RetentionDays?: number;
|
|
74
54
|
}
|
|
75
|
-
export declare namespace ChannelRetentionSettings {
|
|
76
|
-
|
|
77
|
-
const filterSensitiveLog: (obj: ChannelRetentionSettings) => any;
|
|
78
|
-
}
|
|
79
55
|
|
|
80
56
|
export interface AppInstanceRetentionSettings {
|
|
81
57
|
|
|
82
58
|
ChannelRetentionSettings?: ChannelRetentionSettings;
|
|
83
59
|
}
|
|
84
|
-
export declare namespace AppInstanceRetentionSettings {
|
|
85
|
-
|
|
86
|
-
const filterSensitiveLog: (obj: AppInstanceRetentionSettings) => any;
|
|
87
|
-
}
|
|
88
60
|
|
|
89
61
|
export interface AppInstanceUser {
|
|
90
62
|
|
|
@@ -98,10 +70,6 @@ export interface AppInstanceUser {
|
|
|
98
70
|
|
|
99
71
|
LastUpdatedTimestamp?: Date;
|
|
100
72
|
}
|
|
101
|
-
export declare namespace AppInstanceUser {
|
|
102
|
-
|
|
103
|
-
const filterSensitiveLog: (obj: AppInstanceUser) => any;
|
|
104
|
-
}
|
|
105
73
|
|
|
106
74
|
export interface EndpointAttributes {
|
|
107
75
|
|
|
@@ -109,10 +77,6 @@ export interface EndpointAttributes {
|
|
|
109
77
|
|
|
110
78
|
VoipDeviceToken?: string;
|
|
111
79
|
}
|
|
112
|
-
export declare namespace EndpointAttributes {
|
|
113
|
-
|
|
114
|
-
const filterSensitiveLog: (obj: EndpointAttributes) => any;
|
|
115
|
-
}
|
|
116
80
|
export declare enum EndpointStatus {
|
|
117
81
|
ACTIVE = "ACTIVE",
|
|
118
82
|
INACTIVE = "INACTIVE"
|
|
@@ -128,10 +92,6 @@ export interface EndpointState {
|
|
|
128
92
|
|
|
129
93
|
StatusReason?: EndpointStatusReason | string;
|
|
130
94
|
}
|
|
131
|
-
export declare namespace EndpointState {
|
|
132
|
-
|
|
133
|
-
const filterSensitiveLog: (obj: EndpointState) => any;
|
|
134
|
-
}
|
|
135
95
|
export declare enum AppInstanceUserEndpointType {
|
|
136
96
|
APNS = "APNS",
|
|
137
97
|
APNS_SANDBOX = "APNS_SANDBOX",
|
|
@@ -160,10 +120,6 @@ export interface AppInstanceUserEndpoint {
|
|
|
160
120
|
|
|
161
121
|
EndpointState?: EndpointState;
|
|
162
122
|
}
|
|
163
|
-
export declare namespace AppInstanceUserEndpoint {
|
|
164
|
-
|
|
165
|
-
const filterSensitiveLog: (obj: AppInstanceUserEndpoint) => any;
|
|
166
|
-
}
|
|
167
123
|
|
|
168
124
|
export interface AppInstanceUserEndpointSummary {
|
|
169
125
|
|
|
@@ -179,10 +135,6 @@ export interface AppInstanceUserEndpointSummary {
|
|
|
179
135
|
|
|
180
136
|
EndpointState?: EndpointState;
|
|
181
137
|
}
|
|
182
|
-
export declare namespace AppInstanceUserEndpointSummary {
|
|
183
|
-
|
|
184
|
-
const filterSensitiveLog: (obj: AppInstanceUserEndpointSummary) => any;
|
|
185
|
-
}
|
|
186
138
|
|
|
187
139
|
export interface AppInstanceUserSummary {
|
|
188
140
|
|
|
@@ -192,10 +144,6 @@ export interface AppInstanceUserSummary {
|
|
|
192
144
|
|
|
193
145
|
Metadata?: string;
|
|
194
146
|
}
|
|
195
|
-
export declare namespace AppInstanceUserSummary {
|
|
196
|
-
|
|
197
|
-
const filterSensitiveLog: (obj: AppInstanceUserSummary) => any;
|
|
198
|
-
}
|
|
199
147
|
export declare enum ErrorCode {
|
|
200
148
|
AccessDenied = "AccessDenied",
|
|
201
149
|
BadRequest = "BadRequest",
|
|
@@ -238,10 +186,6 @@ export interface Tag {
|
|
|
238
186
|
|
|
239
187
|
Value: string | undefined;
|
|
240
188
|
}
|
|
241
|
-
export declare namespace Tag {
|
|
242
|
-
|
|
243
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
244
|
-
}
|
|
245
189
|
export interface CreateAppInstanceRequest {
|
|
246
190
|
|
|
247
191
|
Name: string | undefined;
|
|
@@ -252,18 +196,10 @@ export interface CreateAppInstanceRequest {
|
|
|
252
196
|
|
|
253
197
|
Tags?: Tag[];
|
|
254
198
|
}
|
|
255
|
-
export declare namespace CreateAppInstanceRequest {
|
|
256
|
-
|
|
257
|
-
const filterSensitiveLog: (obj: CreateAppInstanceRequest) => any;
|
|
258
|
-
}
|
|
259
199
|
export interface CreateAppInstanceResponse {
|
|
260
200
|
|
|
261
201
|
AppInstanceArn?: string;
|
|
262
202
|
}
|
|
263
|
-
export declare namespace CreateAppInstanceResponse {
|
|
264
|
-
|
|
265
|
-
const filterSensitiveLog: (obj: CreateAppInstanceResponse) => any;
|
|
266
|
-
}
|
|
267
203
|
|
|
268
204
|
export declare class ForbiddenException extends __BaseException {
|
|
269
205
|
readonly name: "ForbiddenException";
|
|
@@ -324,20 +260,12 @@ export interface CreateAppInstanceAdminRequest {
|
|
|
324
260
|
|
|
325
261
|
AppInstanceArn: string | undefined;
|
|
326
262
|
}
|
|
327
|
-
export declare namespace CreateAppInstanceAdminRequest {
|
|
328
|
-
|
|
329
|
-
const filterSensitiveLog: (obj: CreateAppInstanceAdminRequest) => any;
|
|
330
|
-
}
|
|
331
263
|
export interface CreateAppInstanceAdminResponse {
|
|
332
264
|
|
|
333
265
|
AppInstanceAdmin?: Identity;
|
|
334
266
|
|
|
335
267
|
AppInstanceArn?: string;
|
|
336
268
|
}
|
|
337
|
-
export declare namespace CreateAppInstanceAdminResponse {
|
|
338
|
-
|
|
339
|
-
const filterSensitiveLog: (obj: CreateAppInstanceAdminResponse) => any;
|
|
340
|
-
}
|
|
341
269
|
export interface CreateAppInstanceUserRequest {
|
|
342
270
|
|
|
343
271
|
AppInstanceArn: string | undefined;
|
|
@@ -352,140 +280,76 @@ export interface CreateAppInstanceUserRequest {
|
|
|
352
280
|
|
|
353
281
|
Tags?: Tag[];
|
|
354
282
|
}
|
|
355
|
-
export declare namespace CreateAppInstanceUserRequest {
|
|
356
|
-
|
|
357
|
-
const filterSensitiveLog: (obj: CreateAppInstanceUserRequest) => any;
|
|
358
|
-
}
|
|
359
283
|
export interface CreateAppInstanceUserResponse {
|
|
360
284
|
|
|
361
285
|
AppInstanceUserArn?: string;
|
|
362
286
|
}
|
|
363
|
-
export declare namespace CreateAppInstanceUserResponse {
|
|
364
|
-
|
|
365
|
-
const filterSensitiveLog: (obj: CreateAppInstanceUserResponse) => any;
|
|
366
|
-
}
|
|
367
287
|
export interface DeleteAppInstanceRequest {
|
|
368
288
|
|
|
369
289
|
AppInstanceArn: string | undefined;
|
|
370
290
|
}
|
|
371
|
-
export declare namespace DeleteAppInstanceRequest {
|
|
372
|
-
|
|
373
|
-
const filterSensitiveLog: (obj: DeleteAppInstanceRequest) => any;
|
|
374
|
-
}
|
|
375
291
|
export interface DeleteAppInstanceAdminRequest {
|
|
376
292
|
|
|
377
293
|
AppInstanceAdminArn: string | undefined;
|
|
378
294
|
|
|
379
295
|
AppInstanceArn: string | undefined;
|
|
380
296
|
}
|
|
381
|
-
export declare namespace DeleteAppInstanceAdminRequest {
|
|
382
|
-
|
|
383
|
-
const filterSensitiveLog: (obj: DeleteAppInstanceAdminRequest) => any;
|
|
384
|
-
}
|
|
385
297
|
export interface DeleteAppInstanceUserRequest {
|
|
386
298
|
|
|
387
299
|
AppInstanceUserArn: string | undefined;
|
|
388
300
|
}
|
|
389
|
-
export declare namespace DeleteAppInstanceUserRequest {
|
|
390
|
-
|
|
391
|
-
const filterSensitiveLog: (obj: DeleteAppInstanceUserRequest) => any;
|
|
392
|
-
}
|
|
393
301
|
export interface DeregisterAppInstanceUserEndpointRequest {
|
|
394
302
|
|
|
395
303
|
AppInstanceUserArn: string | undefined;
|
|
396
304
|
|
|
397
305
|
EndpointId: string | undefined;
|
|
398
306
|
}
|
|
399
|
-
export declare namespace DeregisterAppInstanceUserEndpointRequest {
|
|
400
|
-
|
|
401
|
-
const filterSensitiveLog: (obj: DeregisterAppInstanceUserEndpointRequest) => any;
|
|
402
|
-
}
|
|
403
307
|
export interface DescribeAppInstanceRequest {
|
|
404
308
|
|
|
405
309
|
AppInstanceArn: string | undefined;
|
|
406
310
|
}
|
|
407
|
-
export declare namespace DescribeAppInstanceRequest {
|
|
408
|
-
|
|
409
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceRequest) => any;
|
|
410
|
-
}
|
|
411
311
|
export interface DescribeAppInstanceResponse {
|
|
412
312
|
|
|
413
313
|
AppInstance?: AppInstance;
|
|
414
314
|
}
|
|
415
|
-
export declare namespace DescribeAppInstanceResponse {
|
|
416
|
-
|
|
417
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceResponse) => any;
|
|
418
|
-
}
|
|
419
315
|
export interface DescribeAppInstanceAdminRequest {
|
|
420
316
|
|
|
421
317
|
AppInstanceAdminArn: string | undefined;
|
|
422
318
|
|
|
423
319
|
AppInstanceArn: string | undefined;
|
|
424
320
|
}
|
|
425
|
-
export declare namespace DescribeAppInstanceAdminRequest {
|
|
426
|
-
|
|
427
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceAdminRequest) => any;
|
|
428
|
-
}
|
|
429
321
|
export interface DescribeAppInstanceAdminResponse {
|
|
430
322
|
|
|
431
323
|
AppInstanceAdmin?: AppInstanceAdmin;
|
|
432
324
|
}
|
|
433
|
-
export declare namespace DescribeAppInstanceAdminResponse {
|
|
434
|
-
|
|
435
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceAdminResponse) => any;
|
|
436
|
-
}
|
|
437
325
|
export interface DescribeAppInstanceUserRequest {
|
|
438
326
|
|
|
439
327
|
AppInstanceUserArn: string | undefined;
|
|
440
328
|
}
|
|
441
|
-
export declare namespace DescribeAppInstanceUserRequest {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceUserRequest) => any;
|
|
444
|
-
}
|
|
445
329
|
export interface DescribeAppInstanceUserResponse {
|
|
446
330
|
|
|
447
331
|
AppInstanceUser?: AppInstanceUser;
|
|
448
332
|
}
|
|
449
|
-
export declare namespace DescribeAppInstanceUserResponse {
|
|
450
|
-
|
|
451
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceUserResponse) => any;
|
|
452
|
-
}
|
|
453
333
|
export interface DescribeAppInstanceUserEndpointRequest {
|
|
454
334
|
|
|
455
335
|
AppInstanceUserArn: string | undefined;
|
|
456
336
|
|
|
457
337
|
EndpointId: string | undefined;
|
|
458
338
|
}
|
|
459
|
-
export declare namespace DescribeAppInstanceUserEndpointRequest {
|
|
460
|
-
|
|
461
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceUserEndpointRequest) => any;
|
|
462
|
-
}
|
|
463
339
|
export interface DescribeAppInstanceUserEndpointResponse {
|
|
464
340
|
|
|
465
341
|
AppInstanceUserEndpoint?: AppInstanceUserEndpoint;
|
|
466
342
|
}
|
|
467
|
-
export declare namespace DescribeAppInstanceUserEndpointResponse {
|
|
468
|
-
|
|
469
|
-
const filterSensitiveLog: (obj: DescribeAppInstanceUserEndpointResponse) => any;
|
|
470
|
-
}
|
|
471
343
|
export interface GetAppInstanceRetentionSettingsRequest {
|
|
472
344
|
|
|
473
345
|
AppInstanceArn: string | undefined;
|
|
474
346
|
}
|
|
475
|
-
export declare namespace GetAppInstanceRetentionSettingsRequest {
|
|
476
|
-
|
|
477
|
-
const filterSensitiveLog: (obj: GetAppInstanceRetentionSettingsRequest) => any;
|
|
478
|
-
}
|
|
479
347
|
export interface GetAppInstanceRetentionSettingsResponse {
|
|
480
348
|
|
|
481
349
|
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
482
350
|
|
|
483
351
|
InitiateDeletionTimestamp?: Date;
|
|
484
352
|
}
|
|
485
|
-
export declare namespace GetAppInstanceRetentionSettingsResponse {
|
|
486
|
-
|
|
487
|
-
const filterSensitiveLog: (obj: GetAppInstanceRetentionSettingsResponse) => any;
|
|
488
|
-
}
|
|
489
353
|
export interface ListAppInstanceAdminsRequest {
|
|
490
354
|
|
|
491
355
|
AppInstanceArn: string | undefined;
|
|
@@ -494,10 +358,6 @@ export interface ListAppInstanceAdminsRequest {
|
|
|
494
358
|
|
|
495
359
|
NextToken?: string;
|
|
496
360
|
}
|
|
497
|
-
export declare namespace ListAppInstanceAdminsRequest {
|
|
498
|
-
|
|
499
|
-
const filterSensitiveLog: (obj: ListAppInstanceAdminsRequest) => any;
|
|
500
|
-
}
|
|
501
361
|
export interface ListAppInstanceAdminsResponse {
|
|
502
362
|
|
|
503
363
|
AppInstanceArn?: string;
|
|
@@ -506,30 +366,18 @@ export interface ListAppInstanceAdminsResponse {
|
|
|
506
366
|
|
|
507
367
|
NextToken?: string;
|
|
508
368
|
}
|
|
509
|
-
export declare namespace ListAppInstanceAdminsResponse {
|
|
510
|
-
|
|
511
|
-
const filterSensitiveLog: (obj: ListAppInstanceAdminsResponse) => any;
|
|
512
|
-
}
|
|
513
369
|
export interface ListAppInstancesRequest {
|
|
514
370
|
|
|
515
371
|
MaxResults?: number;
|
|
516
372
|
|
|
517
373
|
NextToken?: string;
|
|
518
374
|
}
|
|
519
|
-
export declare namespace ListAppInstancesRequest {
|
|
520
|
-
|
|
521
|
-
const filterSensitiveLog: (obj: ListAppInstancesRequest) => any;
|
|
522
|
-
}
|
|
523
375
|
export interface ListAppInstancesResponse {
|
|
524
376
|
|
|
525
377
|
AppInstances?: AppInstanceSummary[];
|
|
526
378
|
|
|
527
379
|
NextToken?: string;
|
|
528
380
|
}
|
|
529
|
-
export declare namespace ListAppInstancesResponse {
|
|
530
|
-
|
|
531
|
-
const filterSensitiveLog: (obj: ListAppInstancesResponse) => any;
|
|
532
|
-
}
|
|
533
381
|
export interface ListAppInstanceUserEndpointsRequest {
|
|
534
382
|
|
|
535
383
|
AppInstanceUserArn: string | undefined;
|
|
@@ -538,20 +386,12 @@ export interface ListAppInstanceUserEndpointsRequest {
|
|
|
538
386
|
|
|
539
387
|
NextToken?: string;
|
|
540
388
|
}
|
|
541
|
-
export declare namespace ListAppInstanceUserEndpointsRequest {
|
|
542
|
-
|
|
543
|
-
const filterSensitiveLog: (obj: ListAppInstanceUserEndpointsRequest) => any;
|
|
544
|
-
}
|
|
545
389
|
export interface ListAppInstanceUserEndpointsResponse {
|
|
546
390
|
|
|
547
391
|
AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[];
|
|
548
392
|
|
|
549
393
|
NextToken?: string;
|
|
550
394
|
}
|
|
551
|
-
export declare namespace ListAppInstanceUserEndpointsResponse {
|
|
552
|
-
|
|
553
|
-
const filterSensitiveLog: (obj: ListAppInstanceUserEndpointsResponse) => any;
|
|
554
|
-
}
|
|
555
395
|
export interface ListAppInstanceUsersRequest {
|
|
556
396
|
|
|
557
397
|
AppInstanceArn: string | undefined;
|
|
@@ -560,10 +400,6 @@ export interface ListAppInstanceUsersRequest {
|
|
|
560
400
|
|
|
561
401
|
NextToken?: string;
|
|
562
402
|
}
|
|
563
|
-
export declare namespace ListAppInstanceUsersRequest {
|
|
564
|
-
|
|
565
|
-
const filterSensitiveLog: (obj: ListAppInstanceUsersRequest) => any;
|
|
566
|
-
}
|
|
567
403
|
export interface ListAppInstanceUsersResponse {
|
|
568
404
|
|
|
569
405
|
AppInstanceArn?: string;
|
|
@@ -572,46 +408,26 @@ export interface ListAppInstanceUsersResponse {
|
|
|
572
408
|
|
|
573
409
|
NextToken?: string;
|
|
574
410
|
}
|
|
575
|
-
export declare namespace ListAppInstanceUsersResponse {
|
|
576
|
-
|
|
577
|
-
const filterSensitiveLog: (obj: ListAppInstanceUsersResponse) => any;
|
|
578
|
-
}
|
|
579
411
|
export interface ListTagsForResourceRequest {
|
|
580
412
|
|
|
581
413
|
ResourceARN: string | undefined;
|
|
582
414
|
}
|
|
583
|
-
export declare namespace ListTagsForResourceRequest {
|
|
584
|
-
|
|
585
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
586
|
-
}
|
|
587
415
|
export interface ListTagsForResourceResponse {
|
|
588
416
|
|
|
589
417
|
Tags?: Tag[];
|
|
590
418
|
}
|
|
591
|
-
export declare namespace ListTagsForResourceResponse {
|
|
592
|
-
|
|
593
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
594
|
-
}
|
|
595
419
|
export interface PutAppInstanceRetentionSettingsRequest {
|
|
596
420
|
|
|
597
421
|
AppInstanceArn: string | undefined;
|
|
598
422
|
|
|
599
423
|
AppInstanceRetentionSettings: AppInstanceRetentionSettings | undefined;
|
|
600
424
|
}
|
|
601
|
-
export declare namespace PutAppInstanceRetentionSettingsRequest {
|
|
602
|
-
|
|
603
|
-
const filterSensitiveLog: (obj: PutAppInstanceRetentionSettingsRequest) => any;
|
|
604
|
-
}
|
|
605
425
|
export interface PutAppInstanceRetentionSettingsResponse {
|
|
606
426
|
|
|
607
427
|
AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
|
|
608
428
|
|
|
609
429
|
InitiateDeletionTimestamp?: Date;
|
|
610
430
|
}
|
|
611
|
-
export declare namespace PutAppInstanceRetentionSettingsResponse {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: PutAppInstanceRetentionSettingsResponse) => any;
|
|
614
|
-
}
|
|
615
431
|
export interface RegisterAppInstanceUserEndpointRequest {
|
|
616
432
|
|
|
617
433
|
AppInstanceUserArn: string | undefined;
|
|
@@ -628,40 +444,24 @@ export interface RegisterAppInstanceUserEndpointRequest {
|
|
|
628
444
|
|
|
629
445
|
AllowMessages?: AllowMessages | string;
|
|
630
446
|
}
|
|
631
|
-
export declare namespace RegisterAppInstanceUserEndpointRequest {
|
|
632
|
-
|
|
633
|
-
const filterSensitiveLog: (obj: RegisterAppInstanceUserEndpointRequest) => any;
|
|
634
|
-
}
|
|
635
447
|
export interface RegisterAppInstanceUserEndpointResponse {
|
|
636
448
|
|
|
637
449
|
AppInstanceUserArn?: string;
|
|
638
450
|
|
|
639
451
|
EndpointId?: string;
|
|
640
452
|
}
|
|
641
|
-
export declare namespace RegisterAppInstanceUserEndpointResponse {
|
|
642
|
-
|
|
643
|
-
const filterSensitiveLog: (obj: RegisterAppInstanceUserEndpointResponse) => any;
|
|
644
|
-
}
|
|
645
453
|
export interface TagResourceRequest {
|
|
646
454
|
|
|
647
455
|
ResourceARN: string | undefined;
|
|
648
456
|
|
|
649
457
|
Tags: Tag[] | undefined;
|
|
650
458
|
}
|
|
651
|
-
export declare namespace TagResourceRequest {
|
|
652
|
-
|
|
653
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
654
|
-
}
|
|
655
459
|
export interface UntagResourceRequest {
|
|
656
460
|
|
|
657
461
|
ResourceARN: string | undefined;
|
|
658
462
|
|
|
659
463
|
TagKeys: string[] | undefined;
|
|
660
464
|
}
|
|
661
|
-
export declare namespace UntagResourceRequest {
|
|
662
|
-
|
|
663
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
664
|
-
}
|
|
665
465
|
export interface UpdateAppInstanceRequest {
|
|
666
466
|
|
|
667
467
|
AppInstanceArn: string | undefined;
|
|
@@ -670,18 +470,10 @@ export interface UpdateAppInstanceRequest {
|
|
|
670
470
|
|
|
671
471
|
Metadata: string | undefined;
|
|
672
472
|
}
|
|
673
|
-
export declare namespace UpdateAppInstanceRequest {
|
|
674
|
-
|
|
675
|
-
const filterSensitiveLog: (obj: UpdateAppInstanceRequest) => any;
|
|
676
|
-
}
|
|
677
473
|
export interface UpdateAppInstanceResponse {
|
|
678
474
|
|
|
679
475
|
AppInstanceArn?: string;
|
|
680
476
|
}
|
|
681
|
-
export declare namespace UpdateAppInstanceResponse {
|
|
682
|
-
|
|
683
|
-
const filterSensitiveLog: (obj: UpdateAppInstanceResponse) => any;
|
|
684
|
-
}
|
|
685
477
|
export interface UpdateAppInstanceUserRequest {
|
|
686
478
|
|
|
687
479
|
AppInstanceUserArn: string | undefined;
|
|
@@ -690,18 +482,10 @@ export interface UpdateAppInstanceUserRequest {
|
|
|
690
482
|
|
|
691
483
|
Metadata: string | undefined;
|
|
692
484
|
}
|
|
693
|
-
export declare namespace UpdateAppInstanceUserRequest {
|
|
694
|
-
|
|
695
|
-
const filterSensitiveLog: (obj: UpdateAppInstanceUserRequest) => any;
|
|
696
|
-
}
|
|
697
485
|
export interface UpdateAppInstanceUserResponse {
|
|
698
486
|
|
|
699
487
|
AppInstanceUserArn?: string;
|
|
700
488
|
}
|
|
701
|
-
export declare namespace UpdateAppInstanceUserResponse {
|
|
702
|
-
|
|
703
|
-
const filterSensitiveLog: (obj: UpdateAppInstanceUserResponse) => any;
|
|
704
|
-
}
|
|
705
489
|
export interface UpdateAppInstanceUserEndpointRequest {
|
|
706
490
|
|
|
707
491
|
AppInstanceUserArn: string | undefined;
|
|
@@ -712,17 +496,121 @@ export interface UpdateAppInstanceUserEndpointRequest {
|
|
|
712
496
|
|
|
713
497
|
AllowMessages?: AllowMessages | string;
|
|
714
498
|
}
|
|
715
|
-
export declare namespace UpdateAppInstanceUserEndpointRequest {
|
|
716
|
-
|
|
717
|
-
const filterSensitiveLog: (obj: UpdateAppInstanceUserEndpointRequest) => any;
|
|
718
|
-
}
|
|
719
499
|
export interface UpdateAppInstanceUserEndpointResponse {
|
|
720
500
|
|
|
721
501
|
AppInstanceUserArn?: string;
|
|
722
502
|
|
|
723
503
|
EndpointId?: string;
|
|
724
504
|
}
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
505
|
+
|
|
506
|
+
export declare const AppInstanceFilterSensitiveLog: (obj: AppInstance) => any;
|
|
507
|
+
|
|
508
|
+
export declare const IdentityFilterSensitiveLog: (obj: Identity) => any;
|
|
509
|
+
|
|
510
|
+
export declare const AppInstanceAdminFilterSensitiveLog: (obj: AppInstanceAdmin) => any;
|
|
511
|
+
|
|
512
|
+
export declare const AppInstanceAdminSummaryFilterSensitiveLog: (obj: AppInstanceAdminSummary) => any;
|
|
513
|
+
|
|
514
|
+
export declare const AppInstanceSummaryFilterSensitiveLog: (obj: AppInstanceSummary) => any;
|
|
515
|
+
|
|
516
|
+
export declare const ChannelRetentionSettingsFilterSensitiveLog: (obj: ChannelRetentionSettings) => any;
|
|
517
|
+
|
|
518
|
+
export declare const AppInstanceRetentionSettingsFilterSensitiveLog: (obj: AppInstanceRetentionSettings) => any;
|
|
519
|
+
|
|
520
|
+
export declare const AppInstanceUserFilterSensitiveLog: (obj: AppInstanceUser) => any;
|
|
521
|
+
|
|
522
|
+
export declare const EndpointAttributesFilterSensitiveLog: (obj: EndpointAttributes) => any;
|
|
523
|
+
|
|
524
|
+
export declare const EndpointStateFilterSensitiveLog: (obj: EndpointState) => any;
|
|
525
|
+
|
|
526
|
+
export declare const AppInstanceUserEndpointFilterSensitiveLog: (obj: AppInstanceUserEndpoint) => any;
|
|
527
|
+
|
|
528
|
+
export declare const AppInstanceUserEndpointSummaryFilterSensitiveLog: (obj: AppInstanceUserEndpointSummary) => any;
|
|
529
|
+
|
|
530
|
+
export declare const AppInstanceUserSummaryFilterSensitiveLog: (obj: AppInstanceUserSummary) => any;
|
|
531
|
+
|
|
532
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
533
|
+
|
|
534
|
+
export declare const CreateAppInstanceRequestFilterSensitiveLog: (obj: CreateAppInstanceRequest) => any;
|
|
535
|
+
|
|
536
|
+
export declare const CreateAppInstanceResponseFilterSensitiveLog: (obj: CreateAppInstanceResponse) => any;
|
|
537
|
+
|
|
538
|
+
export declare const CreateAppInstanceAdminRequestFilterSensitiveLog: (obj: CreateAppInstanceAdminRequest) => any;
|
|
539
|
+
|
|
540
|
+
export declare const CreateAppInstanceAdminResponseFilterSensitiveLog: (obj: CreateAppInstanceAdminResponse) => any;
|
|
541
|
+
|
|
542
|
+
export declare const CreateAppInstanceUserRequestFilterSensitiveLog: (obj: CreateAppInstanceUserRequest) => any;
|
|
543
|
+
|
|
544
|
+
export declare const CreateAppInstanceUserResponseFilterSensitiveLog: (obj: CreateAppInstanceUserResponse) => any;
|
|
545
|
+
|
|
546
|
+
export declare const DeleteAppInstanceRequestFilterSensitiveLog: (obj: DeleteAppInstanceRequest) => any;
|
|
547
|
+
|
|
548
|
+
export declare const DeleteAppInstanceAdminRequestFilterSensitiveLog: (obj: DeleteAppInstanceAdminRequest) => any;
|
|
549
|
+
|
|
550
|
+
export declare const DeleteAppInstanceUserRequestFilterSensitiveLog: (obj: DeleteAppInstanceUserRequest) => any;
|
|
551
|
+
|
|
552
|
+
export declare const DeregisterAppInstanceUserEndpointRequestFilterSensitiveLog: (obj: DeregisterAppInstanceUserEndpointRequest) => any;
|
|
553
|
+
|
|
554
|
+
export declare const DescribeAppInstanceRequestFilterSensitiveLog: (obj: DescribeAppInstanceRequest) => any;
|
|
555
|
+
|
|
556
|
+
export declare const DescribeAppInstanceResponseFilterSensitiveLog: (obj: DescribeAppInstanceResponse) => any;
|
|
557
|
+
|
|
558
|
+
export declare const DescribeAppInstanceAdminRequestFilterSensitiveLog: (obj: DescribeAppInstanceAdminRequest) => any;
|
|
559
|
+
|
|
560
|
+
export declare const DescribeAppInstanceAdminResponseFilterSensitiveLog: (obj: DescribeAppInstanceAdminResponse) => any;
|
|
561
|
+
|
|
562
|
+
export declare const DescribeAppInstanceUserRequestFilterSensitiveLog: (obj: DescribeAppInstanceUserRequest) => any;
|
|
563
|
+
|
|
564
|
+
export declare const DescribeAppInstanceUserResponseFilterSensitiveLog: (obj: DescribeAppInstanceUserResponse) => any;
|
|
565
|
+
|
|
566
|
+
export declare const DescribeAppInstanceUserEndpointRequestFilterSensitiveLog: (obj: DescribeAppInstanceUserEndpointRequest) => any;
|
|
567
|
+
|
|
568
|
+
export declare const DescribeAppInstanceUserEndpointResponseFilterSensitiveLog: (obj: DescribeAppInstanceUserEndpointResponse) => any;
|
|
569
|
+
|
|
570
|
+
export declare const GetAppInstanceRetentionSettingsRequestFilterSensitiveLog: (obj: GetAppInstanceRetentionSettingsRequest) => any;
|
|
571
|
+
|
|
572
|
+
export declare const GetAppInstanceRetentionSettingsResponseFilterSensitiveLog: (obj: GetAppInstanceRetentionSettingsResponse) => any;
|
|
573
|
+
|
|
574
|
+
export declare const ListAppInstanceAdminsRequestFilterSensitiveLog: (obj: ListAppInstanceAdminsRequest) => any;
|
|
575
|
+
|
|
576
|
+
export declare const ListAppInstanceAdminsResponseFilterSensitiveLog: (obj: ListAppInstanceAdminsResponse) => any;
|
|
577
|
+
|
|
578
|
+
export declare const ListAppInstancesRequestFilterSensitiveLog: (obj: ListAppInstancesRequest) => any;
|
|
579
|
+
|
|
580
|
+
export declare const ListAppInstancesResponseFilterSensitiveLog: (obj: ListAppInstancesResponse) => any;
|
|
581
|
+
|
|
582
|
+
export declare const ListAppInstanceUserEndpointsRequestFilterSensitiveLog: (obj: ListAppInstanceUserEndpointsRequest) => any;
|
|
583
|
+
|
|
584
|
+
export declare const ListAppInstanceUserEndpointsResponseFilterSensitiveLog: (obj: ListAppInstanceUserEndpointsResponse) => any;
|
|
585
|
+
|
|
586
|
+
export declare const ListAppInstanceUsersRequestFilterSensitiveLog: (obj: ListAppInstanceUsersRequest) => any;
|
|
587
|
+
|
|
588
|
+
export declare const ListAppInstanceUsersResponseFilterSensitiveLog: (obj: ListAppInstanceUsersResponse) => any;
|
|
589
|
+
|
|
590
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
591
|
+
|
|
592
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
593
|
+
|
|
594
|
+
export declare const PutAppInstanceRetentionSettingsRequestFilterSensitiveLog: (obj: PutAppInstanceRetentionSettingsRequest) => any;
|
|
595
|
+
|
|
596
|
+
export declare const PutAppInstanceRetentionSettingsResponseFilterSensitiveLog: (obj: PutAppInstanceRetentionSettingsResponse) => any;
|
|
597
|
+
|
|
598
|
+
export declare const RegisterAppInstanceUserEndpointRequestFilterSensitiveLog: (obj: RegisterAppInstanceUserEndpointRequest) => any;
|
|
599
|
+
|
|
600
|
+
export declare const RegisterAppInstanceUserEndpointResponseFilterSensitiveLog: (obj: RegisterAppInstanceUserEndpointResponse) => any;
|
|
601
|
+
|
|
602
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
603
|
+
|
|
604
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
605
|
+
|
|
606
|
+
export declare const UpdateAppInstanceRequestFilterSensitiveLog: (obj: UpdateAppInstanceRequest) => any;
|
|
607
|
+
|
|
608
|
+
export declare const UpdateAppInstanceResponseFilterSensitiveLog: (obj: UpdateAppInstanceResponse) => any;
|
|
609
|
+
|
|
610
|
+
export declare const UpdateAppInstanceUserRequestFilterSensitiveLog: (obj: UpdateAppInstanceUserRequest) => any;
|
|
611
|
+
|
|
612
|
+
export declare const UpdateAppInstanceUserResponseFilterSensitiveLog: (obj: UpdateAppInstanceUserResponse) => any;
|
|
613
|
+
|
|
614
|
+
export declare const UpdateAppInstanceUserEndpointRequestFilterSensitiveLog: (obj: UpdateAppInstanceUserEndpointRequest) => any;
|
|
615
|
+
|
|
616
|
+
export declare const UpdateAppInstanceUserEndpointResponseFilterSensitiveLog: (obj: UpdateAppInstanceUserEndpointResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-chime-sdk-identity",
|
|
3
3
|
"description": "AWS SDK for JavaScript Chime Sdk Identity Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.142.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|