@aws-sdk/client-chime-sdk-identity 3.296.0 → 3.297.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/dist-types/ChimeSDKIdentity.d.ts +25 -0
  2. package/dist-types/ChimeSDKIdentityClient.d.ts +24 -4
  3. package/dist-types/commands/CreateAppInstanceAdminCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateAppInstanceCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateAppInstanceUserCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteAppInstanceAdminCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteAppInstanceCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAppInstanceUserCommand.d.ts +16 -0
  9. package/dist-types/commands/DeregisterAppInstanceUserEndpointCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeAppInstanceAdminCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeAppInstanceCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeAppInstanceUserCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeAppInstanceUserEndpointCommand.d.ts +16 -0
  14. package/dist-types/commands/GetAppInstanceRetentionSettingsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListAppInstanceAdminsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAppInstanceUserEndpointsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListAppInstanceUsersCommand.d.ts +16 -0
  18. package/dist-types/commands/ListAppInstancesCommand.d.ts +16 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  20. package/dist-types/commands/PutAppInstanceRetentionSettingsCommand.d.ts +16 -0
  21. package/dist-types/commands/RegisterAppInstanceUserEndpointCommand.d.ts +16 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/UpdateAppInstanceCommand.d.ts +16 -0
  25. package/dist-types/commands/UpdateAppInstanceUserCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateAppInstanceUserEndpointCommand.d.ts +16 -0
  27. package/dist-types/models/ChimeSDKIdentityServiceException.d.ts +2 -0
  28. package/dist-types/models/models_0.d.ts +163 -0
  29. package/dist-types/pagination/Interfaces.d.ts +3 -0
  30. package/dist-types/pagination/ListAppInstanceAdminsPaginator.d.ts +3 -0
  31. package/dist-types/pagination/ListAppInstanceUserEndpointsPaginator.d.ts +3 -0
  32. package/dist-types/pagination/ListAppInstanceUsersPaginator.d.ts +3 -0
  33. package/dist-types/pagination/ListAppInstancesPaginator.d.ts +3 -0
  34. package/package.json +3 -3
@@ -1,10 +1,14 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { ChimeSDKIdentityServiceException as __BaseException } from "./ChimeSDKIdentityServiceException";
3
+ /**
4
+ * @public
5
+ */
3
6
  export declare enum AllowMessages {
4
7
  ALL = "ALL",
5
8
  NONE = "NONE"
6
9
  }
7
10
  /**
11
+ * @public
8
12
  * <p>The details of an <code>AppInstance</code>, an instance of an Amazon Chime SDK messaging
9
13
  * application.</p>
10
14
  */
@@ -31,6 +35,7 @@ export interface AppInstance {
31
35
  Metadata?: string;
32
36
  }
33
37
  /**
38
+ * @public
34
39
  * <p>The details of a user.</p>
35
40
  */
36
41
  export interface Identity {
@@ -44,6 +49,7 @@ export interface Identity {
44
49
  Name?: string;
45
50
  }
46
51
  /**
52
+ * @public
47
53
  * <p>The details of an <code>AppInstanceAdmin</code>.</p>
48
54
  */
49
55
  export interface AppInstanceAdmin {
@@ -61,6 +67,7 @@ export interface AppInstanceAdmin {
61
67
  CreatedTimestamp?: Date;
62
68
  }
63
69
  /**
70
+ * @public
64
71
  * <p>Summary of the details of an <code>AppInstanceAdmin</code>.</p>
65
72
  */
66
73
  export interface AppInstanceAdminSummary {
@@ -70,6 +77,7 @@ export interface AppInstanceAdminSummary {
70
77
  Admin?: Identity;
71
78
  }
72
79
  /**
80
+ * @public
73
81
  * <p>Summary of the data for an <code>AppInstance</code>.</p>
74
82
  */
75
83
  export interface AppInstanceSummary {
@@ -87,6 +95,7 @@ export interface AppInstanceSummary {
87
95
  Metadata?: string;
88
96
  }
89
97
  /**
98
+ * @public
90
99
  * <p>The details of the retention settings for a channel.</p>
91
100
  */
92
101
  export interface ChannelRetentionSettings {
@@ -96,6 +105,7 @@ export interface ChannelRetentionSettings {
96
105
  RetentionDays?: number;
97
106
  }
98
107
  /**
108
+ * @public
99
109
  * <p>The details of the data-retention settings for an <code>AppInstance</code>.</p>
100
110
  */
101
111
  export interface AppInstanceRetentionSettings {
@@ -105,6 +115,7 @@ export interface AppInstanceRetentionSettings {
105
115
  ChannelRetentionSettings?: ChannelRetentionSettings;
106
116
  }
107
117
  /**
118
+ * @public
108
119
  * <p>The details of an <code>AppInstanceUser</code>.</p>
109
120
  */
110
121
  export interface AppInstanceUser {
@@ -130,6 +141,7 @@ export interface AppInstanceUser {
130
141
  LastUpdatedTimestamp?: Date;
131
142
  }
132
143
  /**
144
+ * @public
133
145
  * <p>The attributes of an <code>Endpoint</code>.</p>
134
146
  */
135
147
  export interface EndpointAttributes {
@@ -142,15 +154,22 @@ export interface EndpointAttributes {
142
154
  */
143
155
  VoipDeviceToken?: string;
144
156
  }
157
+ /**
158
+ * @public
159
+ */
145
160
  export declare enum EndpointStatus {
146
161
  ACTIVE = "ACTIVE",
147
162
  INACTIVE = "INACTIVE"
148
163
  }
164
+ /**
165
+ * @public
166
+ */
149
167
  export declare enum EndpointStatusReason {
150
168
  INVALID_DEVICE_TOKEN = "INVALID_DEVICE_TOKEN",
151
169
  INVALID_PINPOINT_ARN = "INVALID_PINPOINT_ARN"
152
170
  }
153
171
  /**
172
+ * @public
154
173
  * <p>A read-only field that represents the state of an <code>AppInstanceUserEndpoint</code>. Supported values:</p>
155
174
  * <ul>
156
175
  * <li>
@@ -183,12 +202,16 @@ export interface EndpointState {
183
202
  */
184
203
  StatusReason?: EndpointStatusReason | string;
185
204
  }
205
+ /**
206
+ * @public
207
+ */
186
208
  export declare enum AppInstanceUserEndpointType {
187
209
  APNS = "APNS",
188
210
  APNS_SANDBOX = "APNS_SANDBOX",
189
211
  GCM = "GCM"
190
212
  }
191
213
  /**
214
+ * @public
192
215
  * <p>An endpoint under an Amazon Chime <code>AppInstanceUser</code> that receives messages for a user. For push notifications, the endpoint is a mobile device used to receive mobile push notifications for a user.</p>
193
216
  */
194
217
  export interface AppInstanceUserEndpoint {
@@ -255,6 +278,7 @@ export interface AppInstanceUserEndpoint {
255
278
  EndpointState?: EndpointState;
256
279
  }
257
280
  /**
281
+ * @public
258
282
  * <p>Summary of the details of an <code>AppInstanceUserEndpoint</code>.</p>
259
283
  */
260
284
  export interface AppInstanceUserEndpointSummary {
@@ -285,6 +309,7 @@ export interface AppInstanceUserEndpointSummary {
285
309
  EndpointState?: EndpointState;
286
310
  }
287
311
  /**
312
+ * @public
288
313
  * <p>Summary of the details of an <code>AppInstanceUser</code>.</p>
289
314
  */
290
315
  export interface AppInstanceUserSummary {
@@ -301,6 +326,9 @@ export interface AppInstanceUserSummary {
301
326
  */
302
327
  Metadata?: string;
303
328
  }
329
+ /**
330
+ * @public
331
+ */
304
332
  export declare enum ErrorCode {
305
333
  AccessDenied = "AccessDenied",
306
334
  BadRequest = "BadRequest",
@@ -319,6 +347,7 @@ export declare enum ErrorCode {
319
347
  VoiceConnectorGroupAssociationsExist = "VoiceConnectorGroupAssociationsExist"
320
348
  }
321
349
  /**
350
+ * @public
322
351
  * <p>The input parameters don't match the service's restrictions.</p>
323
352
  */
324
353
  export declare class BadRequestException extends __BaseException {
@@ -332,6 +361,7 @@ export declare class BadRequestException extends __BaseException {
332
361
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
333
362
  }
334
363
  /**
364
+ * @public
335
365
  * <p>The request could not be processed because of conflict in the current state of the
336
366
  * resource.</p>
337
367
  */
@@ -346,6 +376,7 @@ export declare class ConflictException extends __BaseException {
346
376
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
347
377
  }
348
378
  /**
379
+ * @public
349
380
  * <p>A tag object containing a key-value pair.</p>
350
381
  */
351
382
  export interface Tag {
@@ -358,6 +389,9 @@ export interface Tag {
358
389
  */
359
390
  Value: string | undefined;
360
391
  }
392
+ /**
393
+ * @public
394
+ */
361
395
  export interface CreateAppInstanceRequest {
362
396
  /**
363
397
  * <p>The name of the <code>AppInstance</code>.</p>
@@ -376,6 +410,9 @@ export interface CreateAppInstanceRequest {
376
410
  */
377
411
  Tags?: Tag[];
378
412
  }
413
+ /**
414
+ * @public
415
+ */
379
416
  export interface CreateAppInstanceResponse {
380
417
  /**
381
418
  * <p>The Amazon Resource Number (ARN) of the <code>AppInstance</code>.</p>
@@ -383,6 +420,7 @@ export interface CreateAppInstanceResponse {
383
420
  AppInstanceArn?: string;
384
421
  }
385
422
  /**
423
+ * @public
386
424
  * <p>The client is permanently forbidden from making the request.</p>
387
425
  */
388
426
  export declare class ForbiddenException extends __BaseException {
@@ -396,6 +434,7 @@ export declare class ForbiddenException extends __BaseException {
396
434
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
397
435
  }
398
436
  /**
437
+ * @public
399
438
  * <p>The request exceeds the resource limit.</p>
400
439
  */
401
440
  export declare class ResourceLimitExceededException extends __BaseException {
@@ -409,6 +448,7 @@ export declare class ResourceLimitExceededException extends __BaseException {
409
448
  constructor(opts: __ExceptionOptionType<ResourceLimitExceededException, __BaseException>);
410
449
  }
411
450
  /**
451
+ * @public
412
452
  * <p>The service encountered an unexpected error.</p>
413
453
  */
414
454
  export declare class ServiceFailureException extends __BaseException {
@@ -422,6 +462,7 @@ export declare class ServiceFailureException extends __BaseException {
422
462
  constructor(opts: __ExceptionOptionType<ServiceFailureException, __BaseException>);
423
463
  }
424
464
  /**
465
+ * @public
425
466
  * <p>The service is currently unavailable.</p>
426
467
  */
427
468
  export declare class ServiceUnavailableException extends __BaseException {
@@ -435,6 +476,7 @@ export declare class ServiceUnavailableException extends __BaseException {
435
476
  constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
436
477
  }
437
478
  /**
479
+ * @public
438
480
  * <p>The client exceeded its request rate limit.</p>
439
481
  */
440
482
  export declare class ThrottledClientException extends __BaseException {
@@ -448,6 +490,7 @@ export declare class ThrottledClientException extends __BaseException {
448
490
  constructor(opts: __ExceptionOptionType<ThrottledClientException, __BaseException>);
449
491
  }
450
492
  /**
493
+ * @public
451
494
  * <p>The client is not currently authorized to make the request.</p>
452
495
  */
453
496
  export declare class UnauthorizedClientException extends __BaseException {
@@ -460,6 +503,9 @@ export declare class UnauthorizedClientException extends __BaseException {
460
503
  */
461
504
  constructor(opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>);
462
505
  }
506
+ /**
507
+ * @public
508
+ */
463
509
  export interface CreateAppInstanceAdminRequest {
464
510
  /**
465
511
  * <p>The ARN of the administrator of the current <code>AppInstance</code>.</p>
@@ -470,6 +516,9 @@ export interface CreateAppInstanceAdminRequest {
470
516
  */
471
517
  AppInstanceArn: string | undefined;
472
518
  }
519
+ /**
520
+ * @public
521
+ */
473
522
  export interface CreateAppInstanceAdminResponse {
474
523
  /**
475
524
  * <p>The name and ARN of the admin for the <code>AppInstance</code>.</p>
@@ -480,6 +529,9 @@ export interface CreateAppInstanceAdminResponse {
480
529
  */
481
530
  AppInstanceArn?: string;
482
531
  }
532
+ /**
533
+ * @public
534
+ */
483
535
  export interface CreateAppInstanceUserRequest {
484
536
  /**
485
537
  * <p>The ARN of the <code>AppInstance</code> request.</p>
@@ -506,18 +558,27 @@ export interface CreateAppInstanceUserRequest {
506
558
  */
507
559
  Tags?: Tag[];
508
560
  }
561
+ /**
562
+ * @public
563
+ */
509
564
  export interface CreateAppInstanceUserResponse {
510
565
  /**
511
566
  * <p>The user's ARN.</p>
512
567
  */
513
568
  AppInstanceUserArn?: string;
514
569
  }
570
+ /**
571
+ * @public
572
+ */
515
573
  export interface DeleteAppInstanceRequest {
516
574
  /**
517
575
  * <p>The ARN of the <code>AppInstance</code>.</p>
518
576
  */
519
577
  AppInstanceArn: string | undefined;
520
578
  }
579
+ /**
580
+ * @public
581
+ */
521
582
  export interface DeleteAppInstanceAdminRequest {
522
583
  /**
523
584
  * <p>The ARN of the <code>AppInstance</code>'s administrator.</p>
@@ -528,12 +589,18 @@ export interface DeleteAppInstanceAdminRequest {
528
589
  */
529
590
  AppInstanceArn: string | undefined;
530
591
  }
592
+ /**
593
+ * @public
594
+ */
531
595
  export interface DeleteAppInstanceUserRequest {
532
596
  /**
533
597
  * <p>The ARN of the user request being deleted.</p>
534
598
  */
535
599
  AppInstanceUserArn: string | undefined;
536
600
  }
601
+ /**
602
+ * @public
603
+ */
537
604
  export interface DeregisterAppInstanceUserEndpointRequest {
538
605
  /**
539
606
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -544,12 +611,18 @@ export interface DeregisterAppInstanceUserEndpointRequest {
544
611
  */
545
612
  EndpointId: string | undefined;
546
613
  }
614
+ /**
615
+ * @public
616
+ */
547
617
  export interface DescribeAppInstanceRequest {
548
618
  /**
549
619
  * <p>The ARN of the <code>AppInstance</code>.</p>
550
620
  */
551
621
  AppInstanceArn: string | undefined;
552
622
  }
623
+ /**
624
+ * @public
625
+ */
553
626
  export interface DescribeAppInstanceResponse {
554
627
  /**
555
628
  * <p>The ARN, metadata, created and last-updated timestamps, and the name of the
@@ -557,6 +630,9 @@ export interface DescribeAppInstanceResponse {
557
630
  */
558
631
  AppInstance?: AppInstance;
559
632
  }
633
+ /**
634
+ * @public
635
+ */
560
636
  export interface DescribeAppInstanceAdminRequest {
561
637
  /**
562
638
  * <p>The ARN of the <code>AppInstanceAdmin</code>.</p>
@@ -567,6 +643,9 @@ export interface DescribeAppInstanceAdminRequest {
567
643
  */
568
644
  AppInstanceArn: string | undefined;
569
645
  }
646
+ /**
647
+ * @public
648
+ */
570
649
  export interface DescribeAppInstanceAdminResponse {
571
650
  /**
572
651
  * <p>The ARN and name of the <code>AppInstanceUser</code>, the ARN of the
@@ -575,18 +654,27 @@ export interface DescribeAppInstanceAdminResponse {
575
654
  */
576
655
  AppInstanceAdmin?: AppInstanceAdmin;
577
656
  }
657
+ /**
658
+ * @public
659
+ */
578
660
  export interface DescribeAppInstanceUserRequest {
579
661
  /**
580
662
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
581
663
  */
582
664
  AppInstanceUserArn: string | undefined;
583
665
  }
666
+ /**
667
+ * @public
668
+ */
584
669
  export interface DescribeAppInstanceUserResponse {
585
670
  /**
586
671
  * <p>The name of the <code>AppInstanceUser</code>.</p>
587
672
  */
588
673
  AppInstanceUser?: AppInstanceUser;
589
674
  }
675
+ /**
676
+ * @public
677
+ */
590
678
  export interface DescribeAppInstanceUserEndpointRequest {
591
679
  /**
592
680
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -597,6 +685,9 @@ export interface DescribeAppInstanceUserEndpointRequest {
597
685
  */
598
686
  EndpointId: string | undefined;
599
687
  }
688
+ /**
689
+ * @public
690
+ */
600
691
  export interface DescribeAppInstanceUserEndpointResponse {
601
692
  /**
602
693
  * <p>The full details of an <code>AppInstanceUserEndpoint</code>: the <code>AppInstanceUserArn</code>, ID, name, type, resource ARN, attributes,
@@ -604,12 +695,18 @@ export interface DescribeAppInstanceUserEndpointResponse {
604
695
  */
605
696
  AppInstanceUserEndpoint?: AppInstanceUserEndpoint;
606
697
  }
698
+ /**
699
+ * @public
700
+ */
607
701
  export interface GetAppInstanceRetentionSettingsRequest {
608
702
  /**
609
703
  * <p>The ARN of the <code>AppInstance</code>.</p>
610
704
  */
611
705
  AppInstanceArn: string | undefined;
612
706
  }
707
+ /**
708
+ * @public
709
+ */
613
710
  export interface GetAppInstanceRetentionSettingsResponse {
614
711
  /**
615
712
  * <p>The retention settings for the <code>AppInstance</code>.</p>
@@ -621,6 +718,9 @@ export interface GetAppInstanceRetentionSettingsResponse {
621
718
  */
622
719
  InitiateDeletionTimestamp?: Date;
623
720
  }
721
+ /**
722
+ * @public
723
+ */
624
724
  export interface ListAppInstanceAdminsRequest {
625
725
  /**
626
726
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -636,6 +736,9 @@ export interface ListAppInstanceAdminsRequest {
636
736
  */
637
737
  NextToken?: string;
638
738
  }
739
+ /**
740
+ * @public
741
+ */
639
742
  export interface ListAppInstanceAdminsResponse {
640
743
  /**
641
744
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -651,6 +754,9 @@ export interface ListAppInstanceAdminsResponse {
651
754
  */
652
755
  NextToken?: string;
653
756
  }
757
+ /**
758
+ * @public
759
+ */
654
760
  export interface ListAppInstancesRequest {
655
761
  /**
656
762
  * <p>The maximum number of <code>AppInstance</code>s that you want to return.</p>
@@ -662,6 +768,9 @@ export interface ListAppInstancesRequest {
662
768
  */
663
769
  NextToken?: string;
664
770
  }
771
+ /**
772
+ * @public
773
+ */
665
774
  export interface ListAppInstancesResponse {
666
775
  /**
667
776
  * <p>The information for each <code>AppInstance</code>.</p>
@@ -673,6 +782,9 @@ export interface ListAppInstancesResponse {
673
782
  */
674
783
  NextToken?: string;
675
784
  }
785
+ /**
786
+ * @public
787
+ */
676
788
  export interface ListAppInstanceUserEndpointsRequest {
677
789
  /**
678
790
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -687,6 +799,9 @@ export interface ListAppInstanceUserEndpointsRequest {
687
799
  */
688
800
  NextToken?: string;
689
801
  }
802
+ /**
803
+ * @public
804
+ */
690
805
  export interface ListAppInstanceUserEndpointsResponse {
691
806
  /**
692
807
  * <p>The information for each requested <code>AppInstanceUserEndpoint</code>.</p>
@@ -697,6 +812,9 @@ export interface ListAppInstanceUserEndpointsResponse {
697
812
  */
698
813
  NextToken?: string;
699
814
  }
815
+ /**
816
+ * @public
817
+ */
700
818
  export interface ListAppInstanceUsersRequest {
701
819
  /**
702
820
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -711,6 +829,9 @@ export interface ListAppInstanceUsersRequest {
711
829
  */
712
830
  NextToken?: string;
713
831
  }
832
+ /**
833
+ * @public
834
+ */
714
835
  export interface ListAppInstanceUsersResponse {
715
836
  /**
716
837
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -725,18 +846,27 @@ export interface ListAppInstanceUsersResponse {
725
846
  */
726
847
  NextToken?: string;
727
848
  }
849
+ /**
850
+ * @public
851
+ */
728
852
  export interface ListTagsForResourceRequest {
729
853
  /**
730
854
  * <p>The ARN of the resource.</p>
731
855
  */
732
856
  ResourceARN: string | undefined;
733
857
  }
858
+ /**
859
+ * @public
860
+ */
734
861
  export interface ListTagsForResourceResponse {
735
862
  /**
736
863
  * <p>The tag key-value pairs.</p>
737
864
  */
738
865
  Tags?: Tag[];
739
866
  }
867
+ /**
868
+ * @public
869
+ */
740
870
  export interface PutAppInstanceRetentionSettingsRequest {
741
871
  /**
742
872
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -747,6 +877,9 @@ export interface PutAppInstanceRetentionSettingsRequest {
747
877
  */
748
878
  AppInstanceRetentionSettings: AppInstanceRetentionSettings | undefined;
749
879
  }
880
+ /**
881
+ * @public
882
+ */
750
883
  export interface PutAppInstanceRetentionSettingsResponse {
751
884
  /**
752
885
  * <p>The time in days to retain data. Data type: number.</p>
@@ -757,6 +890,9 @@ export interface PutAppInstanceRetentionSettingsResponse {
757
890
  */
758
891
  InitiateDeletionTimestamp?: Date;
759
892
  }
893
+ /**
894
+ * @public
895
+ */
760
896
  export interface RegisterAppInstanceUserEndpointRequest {
761
897
  /**
762
898
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -803,6 +939,9 @@ export interface RegisterAppInstanceUserEndpointRequest {
803
939
  */
804
940
  AllowMessages?: AllowMessages | string;
805
941
  }
942
+ /**
943
+ * @public
944
+ */
806
945
  export interface RegisterAppInstanceUserEndpointResponse {
807
946
  /**
808
947
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -813,6 +952,9 @@ export interface RegisterAppInstanceUserEndpointResponse {
813
952
  */
814
953
  EndpointId?: string;
815
954
  }
955
+ /**
956
+ * @public
957
+ */
816
958
  export interface TagResourceRequest {
817
959
  /**
818
960
  * <p>The resource ARN.</p>
@@ -823,6 +965,9 @@ export interface TagResourceRequest {
823
965
  */
824
966
  Tags: Tag[] | undefined;
825
967
  }
968
+ /**
969
+ * @public
970
+ */
826
971
  export interface UntagResourceRequest {
827
972
  /**
828
973
  * <p>The resource ARN.</p>
@@ -833,6 +978,9 @@ export interface UntagResourceRequest {
833
978
  */
834
979
  TagKeys: string[] | undefined;
835
980
  }
981
+ /**
982
+ * @public
983
+ */
836
984
  export interface UpdateAppInstanceRequest {
837
985
  /**
838
986
  * <p>The ARN of the <code>AppInstance</code>.</p>
@@ -847,12 +995,18 @@ export interface UpdateAppInstanceRequest {
847
995
  */
848
996
  Metadata: string | undefined;
849
997
  }
998
+ /**
999
+ * @public
1000
+ */
850
1001
  export interface UpdateAppInstanceResponse {
851
1002
  /**
852
1003
  * <p>The ARN of the <code>AppInstance</code>.</p>
853
1004
  */
854
1005
  AppInstanceArn?: string;
855
1006
  }
1007
+ /**
1008
+ * @public
1009
+ */
856
1010
  export interface UpdateAppInstanceUserRequest {
857
1011
  /**
858
1012
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -867,12 +1021,18 @@ export interface UpdateAppInstanceUserRequest {
867
1021
  */
868
1022
  Metadata: string | undefined;
869
1023
  }
1024
+ /**
1025
+ * @public
1026
+ */
870
1027
  export interface UpdateAppInstanceUserResponse {
871
1028
  /**
872
1029
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
873
1030
  */
874
1031
  AppInstanceUserArn?: string;
875
1032
  }
1033
+ /**
1034
+ * @public
1035
+ */
876
1036
  export interface UpdateAppInstanceUserEndpointRequest {
877
1037
  /**
878
1038
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -892,6 +1052,9 @@ export interface UpdateAppInstanceUserEndpointRequest {
892
1052
  */
893
1053
  AllowMessages?: AllowMessages | string;
894
1054
  }
1055
+ /**
1056
+ * @public
1057
+ */
895
1058
  export interface UpdateAppInstanceUserEndpointResponse {
896
1059
  /**
897
1060
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { ChimeSDKIdentityClient } from "../ChimeSDKIdentityClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface ChimeSDKIdentityPaginationConfiguration extends PaginationConfiguration {
4
7
  client: ChimeSDKIdentityClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAppInstanceAdminsCommandInput, ListAppInstanceAdminsCommandOutput } from "../commands/ListAppInstanceAdminsCommand";
3
3
  import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAppInstanceAdmins(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceAdminsCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceAdminsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAppInstanceUserEndpointsCommandInput, ListAppInstanceUserEndpointsCommandOutput } from "../commands/ListAppInstanceUserEndpointsCommand";
3
3
  import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAppInstanceUserEndpoints(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceUserEndpointsCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceUserEndpointsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAppInstanceUsersCommandInput, ListAppInstanceUsersCommandOutput } from "../commands/ListAppInstanceUsersCommand";
3
3
  import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAppInstanceUsers(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstanceUsersCommandInput, ...additionalArguments: any): Paginator<ListAppInstanceUsersCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListAppInstancesCommandInput, ListAppInstancesCommandOutput } from "../commands/ListAppInstancesCommand";
3
3
  import { ChimeSDKIdentityPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListAppInstances(config: ChimeSDKIdentityPaginationConfiguration, input: ListAppInstancesCommandInput, ...additionalArguments: any): Paginator<ListAppInstancesCommandOutput>;
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.296.0",
4
+ "version": "3.297.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",
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
23
+ "@aws-sdk/client-sts": "3.297.0",
24
24
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
25
+ "@aws-sdk/credential-provider-node": "3.297.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
27
  "@aws-sdk/hash-node": "3.296.0",
28
28
  "@aws-sdk/invalid-dependency": "3.296.0",