@aws-sdk/client-chime-sdk-identity 3.170.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/ChimeSDKIdentity.d.ts +0 -24
  3. package/dist-types/ts3.4/ChimeSDKIdentityClient.d.ts +0 -25
  4. package/dist-types/ts3.4/commands/CreateAppInstanceAdminCommand.d.ts +0 -2
  5. package/dist-types/ts3.4/commands/CreateAppInstanceCommand.d.ts +0 -2
  6. package/dist-types/ts3.4/commands/CreateAppInstanceUserCommand.d.ts +0 -2
  7. package/dist-types/ts3.4/commands/DeleteAppInstanceAdminCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/DeleteAppInstanceCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/DeleteAppInstanceUserCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DescribeAppInstanceAdminCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DescribeAppInstanceCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DescribeAppInstanceUserCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DescribeAppInstanceUserEndpointCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetAppInstanceRetentionSettingsCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/ListAppInstanceAdminsCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/ListAppInstanceUserEndpointsCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/ListAppInstanceUsersCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/ListAppInstancesCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/PutAppInstanceRetentionSettingsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/RegisterAppInstanceUserEndpointCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/UpdateAppInstanceCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/UpdateAppInstanceUserCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/UpdateAppInstanceUserEndpointCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/models/ChimeSDKIdentityServiceException.d.ts +0 -1
  29. package/dist-types/ts3.4/models/models_0.d.ts +0 -165
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -1
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +0 -1
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -1
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  34. package/package.json +26 -26
@@ -19,7 +19,6 @@ export interface UpdateAppInstanceUserEndpointCommandInput
19
19
  export interface UpdateAppInstanceUserEndpointCommandOutput
20
20
  extends UpdateAppInstanceUserEndpointResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class UpdateAppInstanceUserEndpointCommand extends $Command<
24
23
  UpdateAppInstanceUserEndpointCommandInput,
25
24
  UpdateAppInstanceUserEndpointCommandOutput,
@@ -27,7 +26,6 @@ export declare class UpdateAppInstanceUserEndpointCommand extends $Command<
27
26
  > {
28
27
  readonly input: UpdateAppInstanceUserEndpointCommandInput;
29
28
  constructor(input: UpdateAppInstanceUserEndpointCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: ChimeSDKIdentityClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class ChimeSDKIdentityServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -4,68 +4,45 @@ export declare enum AllowMessages {
4
4
  ALL = "ALL",
5
5
  NONE = "NONE",
6
6
  }
7
-
8
7
  export interface AppInstance {
9
8
  AppInstanceArn?: string;
10
-
11
9
  Name?: string;
12
-
13
10
  CreatedTimestamp?: Date;
14
-
15
11
  LastUpdatedTimestamp?: Date;
16
-
17
12
  Metadata?: string;
18
13
  }
19
-
20
14
  export interface Identity {
21
15
  Arn?: string;
22
-
23
16
  Name?: string;
24
17
  }
25
-
26
18
  export interface AppInstanceAdmin {
27
19
  Admin?: Identity;
28
-
29
20
  AppInstanceArn?: string;
30
-
31
21
  CreatedTimestamp?: Date;
32
22
  }
33
-
34
23
  export interface AppInstanceAdminSummary {
35
24
  Admin?: Identity;
36
25
  }
37
-
38
26
  export interface AppInstanceSummary {
39
27
  AppInstanceArn?: string;
40
-
41
28
  Name?: string;
42
-
43
29
  Metadata?: string;
44
30
  }
45
-
46
31
  export interface ChannelRetentionSettings {
47
32
  RetentionDays?: number;
48
33
  }
49
-
50
34
  export interface AppInstanceRetentionSettings {
51
35
  ChannelRetentionSettings?: ChannelRetentionSettings;
52
36
  }
53
-
54
37
  export interface AppInstanceUser {
55
38
  AppInstanceUserArn?: string;
56
-
57
39
  Name?: string;
58
-
59
40
  Metadata?: string;
60
-
61
41
  CreatedTimestamp?: Date;
62
-
63
42
  LastUpdatedTimestamp?: Date;
64
43
  }
65
-
66
44
  export interface EndpointAttributes {
67
45
  DeviceToken: string | undefined;
68
-
69
46
  VoipDeviceToken?: string;
70
47
  }
71
48
  export declare enum EndpointStatus {
@@ -76,10 +53,8 @@ export declare enum EndpointStatusReason {
76
53
  INVALID_DEVICE_TOKEN = "INVALID_DEVICE_TOKEN",
77
54
  INVALID_PINPOINT_ARN = "INVALID_PINPOINT_ARN",
78
55
  }
79
-
80
56
  export interface EndpointState {
81
57
  Status: EndpointStatus | string | undefined;
82
-
83
58
  StatusReason?: EndpointStatusReason | string;
84
59
  }
85
60
  export declare enum AppInstanceUserEndpointType {
@@ -87,48 +62,29 @@ export declare enum AppInstanceUserEndpointType {
87
62
  APNS_SANDBOX = "APNS_SANDBOX",
88
63
  GCM = "GCM",
89
64
  }
90
-
91
65
  export interface AppInstanceUserEndpoint {
92
66
  AppInstanceUserArn?: string;
93
-
94
67
  EndpointId?: string;
95
-
96
68
  Name?: string;
97
-
98
69
  Type?: AppInstanceUserEndpointType | string;
99
-
100
70
  ResourceArn?: string;
101
-
102
71
  EndpointAttributes?: EndpointAttributes;
103
-
104
72
  CreatedTimestamp?: Date;
105
-
106
73
  LastUpdatedTimestamp?: Date;
107
-
108
74
  AllowMessages?: AllowMessages | string;
109
-
110
75
  EndpointState?: EndpointState;
111
76
  }
112
-
113
77
  export interface AppInstanceUserEndpointSummary {
114
78
  AppInstanceUserArn?: string;
115
-
116
79
  EndpointId?: string;
117
-
118
80
  Name?: string;
119
-
120
81
  Type?: AppInstanceUserEndpointType | string;
121
-
122
82
  AllowMessages?: AllowMessages | string;
123
-
124
83
  EndpointState?: EndpointState;
125
84
  }
126
-
127
85
  export interface AppInstanceUserSummary {
128
86
  AppInstanceUserArn?: string;
129
-
130
87
  Name?: string;
131
-
132
88
  Metadata?: string;
133
89
  }
134
90
  export declare enum ErrorCode {
@@ -148,129 +104,101 @@ export declare enum ErrorCode {
148
104
  Unprocessable = "Unprocessable",
149
105
  VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist",
150
106
  }
151
-
152
107
  export declare class BadRequestException extends __BaseException {
153
108
  readonly name: "BadRequestException";
154
109
  readonly $fault: "client";
155
110
  Code?: ErrorCode | string;
156
111
  Message?: string;
157
-
158
112
  constructor(
159
113
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
160
114
  );
161
115
  }
162
-
163
116
  export declare class ConflictException extends __BaseException {
164
117
  readonly name: "ConflictException";
165
118
  readonly $fault: "client";
166
119
  Code?: ErrorCode | string;
167
120
  Message?: string;
168
-
169
121
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
170
122
  }
171
-
172
123
  export interface Tag {
173
124
  Key: string | undefined;
174
-
175
125
  Value: string | undefined;
176
126
  }
177
127
  export interface CreateAppInstanceRequest {
178
128
  Name: string | undefined;
179
-
180
129
  Metadata?: string;
181
-
182
130
  ClientRequestToken?: string;
183
-
184
131
  Tags?: Tag[];
185
132
  }
186
133
  export interface CreateAppInstanceResponse {
187
134
  AppInstanceArn?: string;
188
135
  }
189
-
190
136
  export declare class ForbiddenException extends __BaseException {
191
137
  readonly name: "ForbiddenException";
192
138
  readonly $fault: "client";
193
139
  Code?: ErrorCode | string;
194
140
  Message?: string;
195
-
196
141
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
197
142
  }
198
-
199
143
  export declare class ResourceLimitExceededException extends __BaseException {
200
144
  readonly name: "ResourceLimitExceededException";
201
145
  readonly $fault: "client";
202
146
  Code?: ErrorCode | string;
203
147
  Message?: string;
204
-
205
148
  constructor(
206
149
  opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>
207
150
  );
208
151
  }
209
-
210
152
  export declare class ServiceFailureException extends __BaseException {
211
153
  readonly name: "ServiceFailureException";
212
154
  readonly $fault: "server";
213
155
  Code?: ErrorCode | string;
214
156
  Message?: string;
215
-
216
157
  constructor(
217
158
  opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
218
159
  );
219
160
  }
220
-
221
161
  export declare class ServiceUnavailableException extends __BaseException {
222
162
  readonly name: "ServiceUnavailableException";
223
163
  readonly $fault: "server";
224
164
  Code?: ErrorCode | string;
225
165
  Message?: string;
226
-
227
166
  constructor(
228
167
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
229
168
  );
230
169
  }
231
-
232
170
  export declare class ThrottledClientException extends __BaseException {
233
171
  readonly name: "ThrottledClientException";
234
172
  readonly $fault: "client";
235
173
  Code?: ErrorCode | string;
236
174
  Message?: string;
237
-
238
175
  constructor(
239
176
  opts: __ExceptionOptionType<ThrottledClientException, __BaseException>
240
177
  );
241
178
  }
242
-
243
179
  export declare class UnauthorizedClientException extends __BaseException {
244
180
  readonly name: "UnauthorizedClientException";
245
181
  readonly $fault: "client";
246
182
  Code?: ErrorCode | string;
247
183
  Message?: string;
248
-
249
184
  constructor(
250
185
  opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
251
186
  );
252
187
  }
253
188
  export interface CreateAppInstanceAdminRequest {
254
189
  AppInstanceAdminArn: string | undefined;
255
-
256
190
  AppInstanceArn: string | undefined;
257
191
  }
258
192
  export interface CreateAppInstanceAdminResponse {
259
193
  AppInstanceAdmin?: Identity;
260
-
261
194
  AppInstanceArn?: string;
262
195
  }
263
196
  export interface CreateAppInstanceUserRequest {
264
197
  AppInstanceArn: string | undefined;
265
-
266
198
  AppInstanceUserId: string | undefined;
267
-
268
199
  Name: string | undefined;
269
-
270
200
  Metadata?: string;
271
-
272
201
  ClientRequestToken?: string;
273
-
274
202
  Tags?: Tag[];
275
203
  }
276
204
  export interface CreateAppInstanceUserResponse {
@@ -281,7 +209,6 @@ export interface DeleteAppInstanceRequest {
281
209
  }
282
210
  export interface DeleteAppInstanceAdminRequest {
283
211
  AppInstanceAdminArn: string | undefined;
284
-
285
212
  AppInstanceArn: string | undefined;
286
213
  }
287
214
  export interface DeleteAppInstanceUserRequest {
@@ -289,7 +216,6 @@ export interface DeleteAppInstanceUserRequest {
289
216
  }
290
217
  export interface DeregisterAppInstanceUserEndpointRequest {
291
218
  AppInstanceUserArn: string | undefined;
292
-
293
219
  EndpointId: string | undefined;
294
220
  }
295
221
  export interface DescribeAppInstanceRequest {
@@ -300,7 +226,6 @@ export interface DescribeAppInstanceResponse {
300
226
  }
301
227
  export interface DescribeAppInstanceAdminRequest {
302
228
  AppInstanceAdminArn: string | undefined;
303
-
304
229
  AppInstanceArn: string | undefined;
305
230
  }
306
231
  export interface DescribeAppInstanceAdminResponse {
@@ -314,7 +239,6 @@ export interface DescribeAppInstanceUserResponse {
314
239
  }
315
240
  export interface DescribeAppInstanceUserEndpointRequest {
316
241
  AppInstanceUserArn: string | undefined;
317
-
318
242
  EndpointId: string | undefined;
319
243
  }
320
244
  export interface DescribeAppInstanceUserEndpointResponse {
@@ -325,57 +249,43 @@ export interface GetAppInstanceRetentionSettingsRequest {
325
249
  }
326
250
  export interface GetAppInstanceRetentionSettingsResponse {
327
251
  AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
328
-
329
252
  InitiateDeletionTimestamp?: Date;
330
253
  }
331
254
  export interface ListAppInstanceAdminsRequest {
332
255
  AppInstanceArn: string | undefined;
333
-
334
256
  MaxResults?: number;
335
-
336
257
  NextToken?: string;
337
258
  }
338
259
  export interface ListAppInstanceAdminsResponse {
339
260
  AppInstanceArn?: string;
340
-
341
261
  AppInstanceAdmins?: AppInstanceAdminSummary[];
342
-
343
262
  NextToken?: string;
344
263
  }
345
264
  export interface ListAppInstancesRequest {
346
265
  MaxResults?: number;
347
-
348
266
  NextToken?: string;
349
267
  }
350
268
  export interface ListAppInstancesResponse {
351
269
  AppInstances?: AppInstanceSummary[];
352
-
353
270
  NextToken?: string;
354
271
  }
355
272
  export interface ListAppInstanceUserEndpointsRequest {
356
273
  AppInstanceUserArn: string | undefined;
357
-
358
274
  MaxResults?: number;
359
-
360
275
  NextToken?: string;
361
276
  }
362
277
  export interface ListAppInstanceUserEndpointsResponse {
363
278
  AppInstanceUserEndpoints?: AppInstanceUserEndpointSummary[];
364
-
365
279
  NextToken?: string;
366
280
  }
367
281
  export interface ListAppInstanceUsersRequest {
368
282
  AppInstanceArn: string | undefined;
369
-
370
283
  MaxResults?: number;
371
-
372
284
  NextToken?: string;
373
285
  }
374
286
  export interface ListAppInstanceUsersResponse {
375
287
  AppInstanceArn?: string;
376
-
377
288
  AppInstanceUsers?: AppInstanceUserSummary[];
378
-
379
289
  NextToken?: string;
380
290
  }
381
291
  export interface ListTagsForResourceRequest {
@@ -386,49 +296,36 @@ export interface ListTagsForResourceResponse {
386
296
  }
387
297
  export interface PutAppInstanceRetentionSettingsRequest {
388
298
  AppInstanceArn: string | undefined;
389
-
390
299
  AppInstanceRetentionSettings: AppInstanceRetentionSettings | undefined;
391
300
  }
392
301
  export interface PutAppInstanceRetentionSettingsResponse {
393
302
  AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
394
-
395
303
  InitiateDeletionTimestamp?: Date;
396
304
  }
397
305
  export interface RegisterAppInstanceUserEndpointRequest {
398
306
  AppInstanceUserArn: string | undefined;
399
-
400
307
  Name?: string;
401
-
402
308
  Type: AppInstanceUserEndpointType | string | undefined;
403
-
404
309
  ResourceArn: string | undefined;
405
-
406
310
  EndpointAttributes: EndpointAttributes | undefined;
407
-
408
311
  ClientRequestToken?: string;
409
-
410
312
  AllowMessages?: AllowMessages | string;
411
313
  }
412
314
  export interface RegisterAppInstanceUserEndpointResponse {
413
315
  AppInstanceUserArn?: string;
414
-
415
316
  EndpointId?: string;
416
317
  }
417
318
  export interface TagResourceRequest {
418
319
  ResourceARN: string | undefined;
419
-
420
320
  Tags: Tag[] | undefined;
421
321
  }
422
322
  export interface UntagResourceRequest {
423
323
  ResourceARN: string | undefined;
424
-
425
324
  TagKeys: string[] | undefined;
426
325
  }
427
326
  export interface UpdateAppInstanceRequest {
428
327
  AppInstanceArn: string | undefined;
429
-
430
328
  Name: string | undefined;
431
-
432
329
  Metadata: string | undefined;
433
330
  }
434
331
  export interface UpdateAppInstanceResponse {
@@ -436,9 +333,7 @@ export interface UpdateAppInstanceResponse {
436
333
  }
437
334
  export interface UpdateAppInstanceUserRequest {
438
335
  AppInstanceUserArn: string | undefined;
439
-
440
336
  Name: string | undefined;
441
-
442
337
  Metadata: string | undefined;
443
338
  }
444
339
  export interface UpdateAppInstanceUserResponse {
@@ -446,233 +341,173 @@ export interface UpdateAppInstanceUserResponse {
446
341
  }
447
342
  export interface UpdateAppInstanceUserEndpointRequest {
448
343
  AppInstanceUserArn: string | undefined;
449
-
450
344
  EndpointId: string | undefined;
451
-
452
345
  Name?: string;
453
-
454
346
  AllowMessages?: AllowMessages | string;
455
347
  }
456
348
  export interface UpdateAppInstanceUserEndpointResponse {
457
349
  AppInstanceUserArn?: string;
458
-
459
350
  EndpointId?: string;
460
351
  }
461
-
462
352
  export declare const AppInstanceFilterSensitiveLog: (obj: AppInstance) => any;
463
-
464
353
  export declare const IdentityFilterSensitiveLog: (obj: Identity) => any;
465
-
466
354
  export declare const AppInstanceAdminFilterSensitiveLog: (
467
355
  obj: AppInstanceAdmin
468
356
  ) => any;
469
-
470
357
  export declare const AppInstanceAdminSummaryFilterSensitiveLog: (
471
358
  obj: AppInstanceAdminSummary
472
359
  ) => any;
473
-
474
360
  export declare const AppInstanceSummaryFilterSensitiveLog: (
475
361
  obj: AppInstanceSummary
476
362
  ) => any;
477
-
478
363
  export declare const ChannelRetentionSettingsFilterSensitiveLog: (
479
364
  obj: ChannelRetentionSettings
480
365
  ) => any;
481
-
482
366
  export declare const AppInstanceRetentionSettingsFilterSensitiveLog: (
483
367
  obj: AppInstanceRetentionSettings
484
368
  ) => any;
485
-
486
369
  export declare const AppInstanceUserFilterSensitiveLog: (
487
370
  obj: AppInstanceUser
488
371
  ) => any;
489
-
490
372
  export declare const EndpointAttributesFilterSensitiveLog: (
491
373
  obj: EndpointAttributes
492
374
  ) => any;
493
-
494
375
  export declare const EndpointStateFilterSensitiveLog: (
495
376
  obj: EndpointState
496
377
  ) => any;
497
-
498
378
  export declare const AppInstanceUserEndpointFilterSensitiveLog: (
499
379
  obj: AppInstanceUserEndpoint
500
380
  ) => any;
501
-
502
381
  export declare const AppInstanceUserEndpointSummaryFilterSensitiveLog: (
503
382
  obj: AppInstanceUserEndpointSummary
504
383
  ) => any;
505
-
506
384
  export declare const AppInstanceUserSummaryFilterSensitiveLog: (
507
385
  obj: AppInstanceUserSummary
508
386
  ) => any;
509
-
510
387
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
511
-
512
388
  export declare const CreateAppInstanceRequestFilterSensitiveLog: (
513
389
  obj: CreateAppInstanceRequest
514
390
  ) => any;
515
-
516
391
  export declare const CreateAppInstanceResponseFilterSensitiveLog: (
517
392
  obj: CreateAppInstanceResponse
518
393
  ) => any;
519
-
520
394
  export declare const CreateAppInstanceAdminRequestFilterSensitiveLog: (
521
395
  obj: CreateAppInstanceAdminRequest
522
396
  ) => any;
523
-
524
397
  export declare const CreateAppInstanceAdminResponseFilterSensitiveLog: (
525
398
  obj: CreateAppInstanceAdminResponse
526
399
  ) => any;
527
-
528
400
  export declare const CreateAppInstanceUserRequestFilterSensitiveLog: (
529
401
  obj: CreateAppInstanceUserRequest
530
402
  ) => any;
531
-
532
403
  export declare const CreateAppInstanceUserResponseFilterSensitiveLog: (
533
404
  obj: CreateAppInstanceUserResponse
534
405
  ) => any;
535
-
536
406
  export declare const DeleteAppInstanceRequestFilterSensitiveLog: (
537
407
  obj: DeleteAppInstanceRequest
538
408
  ) => any;
539
-
540
409
  export declare const DeleteAppInstanceAdminRequestFilterSensitiveLog: (
541
410
  obj: DeleteAppInstanceAdminRequest
542
411
  ) => any;
543
-
544
412
  export declare const DeleteAppInstanceUserRequestFilterSensitiveLog: (
545
413
  obj: DeleteAppInstanceUserRequest
546
414
  ) => any;
547
-
548
415
  export declare const DeregisterAppInstanceUserEndpointRequestFilterSensitiveLog: (
549
416
  obj: DeregisterAppInstanceUserEndpointRequest
550
417
  ) => any;
551
-
552
418
  export declare const DescribeAppInstanceRequestFilterSensitiveLog: (
553
419
  obj: DescribeAppInstanceRequest
554
420
  ) => any;
555
-
556
421
  export declare const DescribeAppInstanceResponseFilterSensitiveLog: (
557
422
  obj: DescribeAppInstanceResponse
558
423
  ) => any;
559
-
560
424
  export declare const DescribeAppInstanceAdminRequestFilterSensitiveLog: (
561
425
  obj: DescribeAppInstanceAdminRequest
562
426
  ) => any;
563
-
564
427
  export declare const DescribeAppInstanceAdminResponseFilterSensitiveLog: (
565
428
  obj: DescribeAppInstanceAdminResponse
566
429
  ) => any;
567
-
568
430
  export declare const DescribeAppInstanceUserRequestFilterSensitiveLog: (
569
431
  obj: DescribeAppInstanceUserRequest
570
432
  ) => any;
571
-
572
433
  export declare const DescribeAppInstanceUserResponseFilterSensitiveLog: (
573
434
  obj: DescribeAppInstanceUserResponse
574
435
  ) => any;
575
-
576
436
  export declare const DescribeAppInstanceUserEndpointRequestFilterSensitiveLog: (
577
437
  obj: DescribeAppInstanceUserEndpointRequest
578
438
  ) => any;
579
-
580
439
  export declare const DescribeAppInstanceUserEndpointResponseFilterSensitiveLog: (
581
440
  obj: DescribeAppInstanceUserEndpointResponse
582
441
  ) => any;
583
-
584
442
  export declare const GetAppInstanceRetentionSettingsRequestFilterSensitiveLog: (
585
443
  obj: GetAppInstanceRetentionSettingsRequest
586
444
  ) => any;
587
-
588
445
  export declare const GetAppInstanceRetentionSettingsResponseFilterSensitiveLog: (
589
446
  obj: GetAppInstanceRetentionSettingsResponse
590
447
  ) => any;
591
-
592
448
  export declare const ListAppInstanceAdminsRequestFilterSensitiveLog: (
593
449
  obj: ListAppInstanceAdminsRequest
594
450
  ) => any;
595
-
596
451
  export declare const ListAppInstanceAdminsResponseFilterSensitiveLog: (
597
452
  obj: ListAppInstanceAdminsResponse
598
453
  ) => any;
599
-
600
454
  export declare const ListAppInstancesRequestFilterSensitiveLog: (
601
455
  obj: ListAppInstancesRequest
602
456
  ) => any;
603
-
604
457
  export declare const ListAppInstancesResponseFilterSensitiveLog: (
605
458
  obj: ListAppInstancesResponse
606
459
  ) => any;
607
-
608
460
  export declare const ListAppInstanceUserEndpointsRequestFilterSensitiveLog: (
609
461
  obj: ListAppInstanceUserEndpointsRequest
610
462
  ) => any;
611
-
612
463
  export declare const ListAppInstanceUserEndpointsResponseFilterSensitiveLog: (
613
464
  obj: ListAppInstanceUserEndpointsResponse
614
465
  ) => any;
615
-
616
466
  export declare const ListAppInstanceUsersRequestFilterSensitiveLog: (
617
467
  obj: ListAppInstanceUsersRequest
618
468
  ) => any;
619
-
620
469
  export declare const ListAppInstanceUsersResponseFilterSensitiveLog: (
621
470
  obj: ListAppInstanceUsersResponse
622
471
  ) => any;
623
-
624
472
  export declare const ListTagsForResourceRequestFilterSensitiveLog: (
625
473
  obj: ListTagsForResourceRequest
626
474
  ) => any;
627
-
628
475
  export declare const ListTagsForResourceResponseFilterSensitiveLog: (
629
476
  obj: ListTagsForResourceResponse
630
477
  ) => any;
631
-
632
478
  export declare const PutAppInstanceRetentionSettingsRequestFilterSensitiveLog: (
633
479
  obj: PutAppInstanceRetentionSettingsRequest
634
480
  ) => any;
635
-
636
481
  export declare const PutAppInstanceRetentionSettingsResponseFilterSensitiveLog: (
637
482
  obj: PutAppInstanceRetentionSettingsResponse
638
483
  ) => any;
639
-
640
484
  export declare const RegisterAppInstanceUserEndpointRequestFilterSensitiveLog: (
641
485
  obj: RegisterAppInstanceUserEndpointRequest
642
486
  ) => any;
643
-
644
487
  export declare const RegisterAppInstanceUserEndpointResponseFilterSensitiveLog: (
645
488
  obj: RegisterAppInstanceUserEndpointResponse
646
489
  ) => any;
647
-
648
490
  export declare const TagResourceRequestFilterSensitiveLog: (
649
491
  obj: TagResourceRequest
650
492
  ) => any;
651
-
652
493
  export declare const UntagResourceRequestFilterSensitiveLog: (
653
494
  obj: UntagResourceRequest
654
495
  ) => any;
655
-
656
496
  export declare const UpdateAppInstanceRequestFilterSensitiveLog: (
657
497
  obj: UpdateAppInstanceRequest
658
498
  ) => any;
659
-
660
499
  export declare const UpdateAppInstanceResponseFilterSensitiveLog: (
661
500
  obj: UpdateAppInstanceResponse
662
501
  ) => any;
663
-
664
502
  export declare const UpdateAppInstanceUserRequestFilterSensitiveLog: (
665
503
  obj: UpdateAppInstanceUserRequest
666
504
  ) => any;
667
-
668
505
  export declare const UpdateAppInstanceUserResponseFilterSensitiveLog: (
669
506
  obj: UpdateAppInstanceUserResponse
670
507
  ) => any;
671
-
672
508
  export declare const UpdateAppInstanceUserEndpointRequestFilterSensitiveLog: (
673
509
  obj: UpdateAppInstanceUserEndpointRequest
674
510
  ) => any;
675
-
676
511
  export declare const UpdateAppInstanceUserEndpointResponseFilterSensitiveLog: (
677
512
  obj: UpdateAppInstanceUserEndpointResponse
678
513
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: ChimeSDKIdentityClientConfig
6
5
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: ChimeSDKIdentityClientConfig
6
5
  ) => {
@@ -1,5 +1,4 @@
1
1
  import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
2
-
3
2
  export declare const getRuntimeConfig: (
4
3
  config: ChimeSDKIdentityClientConfig
5
4
  ) => {
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { ChimeSDKIdentityClientConfig } from "./ChimeSDKIdentityClient";
3
-
4
3
  export declare const getRuntimeConfig: (
5
4
  config: ChimeSDKIdentityClientConfig
6
5
  ) => {