@aws-sdk/client-ivschat 3.296.0 → 3.298.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 (62) hide show
  1. package/dist-cjs/commands/CreateChatTokenCommand.js +2 -3
  2. package/dist-cjs/commands/CreateLoggingConfigurationCommand.js +2 -3
  3. package/dist-cjs/commands/CreateRoomCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteLoggingConfigurationCommand.js +2 -3
  5. package/dist-cjs/commands/DeleteMessageCommand.js +2 -3
  6. package/dist-cjs/commands/DeleteRoomCommand.js +2 -3
  7. package/dist-cjs/commands/DisconnectUserCommand.js +2 -3
  8. package/dist-cjs/commands/GetLoggingConfigurationCommand.js +2 -3
  9. package/dist-cjs/commands/GetRoomCommand.js +2 -3
  10. package/dist-cjs/commands/ListLoggingConfigurationsCommand.js +2 -3
  11. package/dist-cjs/commands/ListRoomsCommand.js +2 -3
  12. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  13. package/dist-cjs/commands/SendEventCommand.js +2 -3
  14. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  15. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  16. package/dist-cjs/commands/UpdateLoggingConfigurationCommand.js +2 -3
  17. package/dist-cjs/commands/UpdateRoomCommand.js +2 -3
  18. package/dist-cjs/models/models_0.js +1 -190
  19. package/dist-es/commands/CreateChatTokenCommand.js +2 -3
  20. package/dist-es/commands/CreateLoggingConfigurationCommand.js +2 -3
  21. package/dist-es/commands/CreateRoomCommand.js +2 -3
  22. package/dist-es/commands/DeleteLoggingConfigurationCommand.js +2 -3
  23. package/dist-es/commands/DeleteMessageCommand.js +2 -3
  24. package/dist-es/commands/DeleteRoomCommand.js +2 -3
  25. package/dist-es/commands/DisconnectUserCommand.js +2 -3
  26. package/dist-es/commands/GetLoggingConfigurationCommand.js +2 -3
  27. package/dist-es/commands/GetRoomCommand.js +2 -3
  28. package/dist-es/commands/ListLoggingConfigurationsCommand.js +2 -3
  29. package/dist-es/commands/ListRoomsCommand.js +2 -3
  30. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  31. package/dist-es/commands/SendEventCommand.js +2 -3
  32. package/dist-es/commands/TagResourceCommand.js +2 -3
  33. package/dist-es/commands/UntagResourceCommand.js +2 -3
  34. package/dist-es/commands/UpdateLoggingConfigurationCommand.js +2 -3
  35. package/dist-es/commands/UpdateRoomCommand.js +2 -3
  36. package/dist-es/models/models_0.js +0 -148
  37. package/dist-types/Ivschat.d.ts +18 -0
  38. package/dist-types/IvschatClient.d.ts +24 -4
  39. package/dist-types/commands/CreateChatTokenCommand.d.ts +16 -0
  40. package/dist-types/commands/CreateLoggingConfigurationCommand.d.ts +16 -0
  41. package/dist-types/commands/CreateRoomCommand.d.ts +16 -0
  42. package/dist-types/commands/DeleteLoggingConfigurationCommand.d.ts +16 -0
  43. package/dist-types/commands/DeleteMessageCommand.d.ts +16 -0
  44. package/dist-types/commands/DeleteRoomCommand.d.ts +16 -0
  45. package/dist-types/commands/DisconnectUserCommand.d.ts +16 -0
  46. package/dist-types/commands/GetLoggingConfigurationCommand.d.ts +16 -0
  47. package/dist-types/commands/GetRoomCommand.d.ts +16 -0
  48. package/dist-types/commands/ListLoggingConfigurationsCommand.d.ts +16 -0
  49. package/dist-types/commands/ListRoomsCommand.d.ts +16 -0
  50. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  51. package/dist-types/commands/SendEventCommand.d.ts +16 -0
  52. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  53. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  54. package/dist-types/commands/UpdateLoggingConfigurationCommand.d.ts +16 -0
  55. package/dist-types/commands/UpdateRoomCommand.d.ts +16 -0
  56. package/dist-types/models/IvschatServiceException.d.ts +2 -0
  57. package/dist-types/models/models_0.d.ts +136 -160
  58. package/dist-types/pagination/Interfaces.d.ts +3 -0
  59. package/dist-types/pagination/ListLoggingConfigurationsPaginator.d.ts +3 -0
  60. package/dist-types/pagination/ListRoomsPaginator.d.ts +3 -0
  61. package/dist-types/ts3.4/models/models_0.d.ts +0 -118
  62. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p/>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -11,11 +12,17 @@ export declare class AccessDeniedException extends __BaseException {
11
12
  */
12
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
14
  }
15
+ /**
16
+ * @public
17
+ */
14
18
  export declare enum ChatTokenCapability {
15
19
  DELETE_MESSAGE = "DELETE_MESSAGE",
16
20
  DISCONNECT_USER = "DISCONNECT_USER",
17
21
  SEND_MESSAGE = "SEND_MESSAGE"
18
22
  }
23
+ /**
24
+ * @public
25
+ */
19
26
  export interface CreateChatTokenRequest {
20
27
  /**
21
28
  * <p>Identifier of the room that the client is trying to access. Currently this must be an
@@ -44,6 +51,9 @@ export interface CreateChatTokenRequest {
44
51
  */
45
52
  attributes?: Record<string, string>;
46
53
  }
54
+ /**
55
+ * @public
56
+ */
47
57
  export interface CreateChatTokenResponse {
48
58
  /**
49
59
  * <p>The issued client token, encrypted.</p>
@@ -62,6 +72,7 @@ export interface CreateChatTokenResponse {
62
72
  sessionExpirationTime?: Date;
63
73
  }
64
74
  /**
75
+ * @public
65
76
  * <p/>
66
77
  */
67
78
  export declare class PendingVerification extends __BaseException {
@@ -72,10 +83,14 @@ export declare class PendingVerification extends __BaseException {
72
83
  */
73
84
  constructor(opts: __ExceptionOptionType<PendingVerification, __BaseException>);
74
85
  }
86
+ /**
87
+ * @public
88
+ */
75
89
  export declare enum ResourceType {
76
90
  ROOM = "ROOM"
77
91
  }
78
92
  /**
93
+ * @public
79
94
  * <p/>
80
95
  */
81
96
  export declare class ResourceNotFoundException extends __BaseException {
@@ -95,6 +110,7 @@ export declare class ResourceNotFoundException extends __BaseException {
95
110
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
96
111
  }
97
112
  /**
113
+ * @public
98
114
  * <p>This object is used in the ValidationException error.</p>
99
115
  */
100
116
  export interface ValidationExceptionField {
@@ -107,12 +123,16 @@ export interface ValidationExceptionField {
107
123
  */
108
124
  message: string | undefined;
109
125
  }
126
+ /**
127
+ * @public
128
+ */
110
129
  export declare enum ValidationExceptionReason {
111
130
  FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
112
131
  OTHER = "OTHER",
113
132
  UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
114
133
  }
115
134
  /**
135
+ * @public
116
136
  * <p/>
117
137
  */
118
138
  export declare class ValidationException extends __BaseException {
@@ -132,6 +152,7 @@ export declare class ValidationException extends __BaseException {
132
152
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
133
153
  }
134
154
  /**
155
+ * @public
135
156
  * <p/>
136
157
  */
137
158
  export declare class ConflictException extends __BaseException {
@@ -151,6 +172,7 @@ export declare class ConflictException extends __BaseException {
151
172
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
152
173
  }
153
174
  /**
175
+ * @public
154
176
  * <p>Specifies a CloudWatch Logs location where chat logs will be stored.</p>
155
177
  */
156
178
  export interface CloudWatchLogsDestinationConfiguration {
@@ -160,6 +182,7 @@ export interface CloudWatchLogsDestinationConfiguration {
160
182
  logGroupName: string | undefined;
161
183
  }
162
184
  /**
185
+ * @public
163
186
  * <p>Specifies a Kinesis Firehose location where chat logs will be stored.</p>
164
187
  */
165
188
  export interface FirehoseDestinationConfiguration {
@@ -170,6 +193,7 @@ export interface FirehoseDestinationConfiguration {
170
193
  deliveryStreamName: string | undefined;
171
194
  }
172
195
  /**
196
+ * @public
173
197
  * <p>Specifies an S3 location where chat logs will be stored.</p>
174
198
  */
175
199
  export interface S3DestinationConfiguration {
@@ -179,11 +203,15 @@ export interface S3DestinationConfiguration {
179
203
  bucketName: string | undefined;
180
204
  }
181
205
  /**
206
+ * @public
182
207
  * <p>A complex type that describes a location where chat logs will be stored. Each member
183
208
  * represents the configuration of one log destination. For logging, you define only one type of
184
209
  * destination (for CloudWatch Logs, Kinesis Firehose, or S3).</p>
185
210
  */
186
211
  export type DestinationConfiguration = DestinationConfiguration.CloudWatchLogsMember | DestinationConfiguration.FirehoseMember | DestinationConfiguration.S3Member | DestinationConfiguration.$UnknownMember;
212
+ /**
213
+ * @public
214
+ */
187
215
  export declare namespace DestinationConfiguration {
188
216
  /**
189
217
  * <p>An Amazon S3 destination configuration where chat activity will be logged.</p>
@@ -228,6 +256,9 @@ export declare namespace DestinationConfiguration {
228
256
  }
229
257
  const visit: <T>(value: DestinationConfiguration, visitor: Visitor<T>) => T;
230
258
  }
259
+ /**
260
+ * @public
261
+ */
231
262
  export interface CreateLoggingConfigurationRequest {
232
263
  /**
233
264
  * <p>Logging-configuration name. The value does not need to be unique.</p>
@@ -249,9 +280,15 @@ export interface CreateLoggingConfigurationRequest {
249
280
  */
250
281
  tags?: Record<string, string>;
251
282
  }
283
+ /**
284
+ * @public
285
+ */
252
286
  export declare enum CreateLoggingConfigurationState {
253
287
  ACTIVE = "ACTIVE"
254
288
  }
289
+ /**
290
+ * @public
291
+ */
255
292
  export interface CreateLoggingConfigurationResponse {
256
293
  /**
257
294
  * <p>Logging-configuration ARN, assigned by the system.</p>
@@ -295,6 +332,7 @@ export interface CreateLoggingConfigurationResponse {
295
332
  tags?: Record<string, string>;
296
333
  }
297
334
  /**
335
+ * @public
298
336
  * <p/>
299
337
  */
300
338
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -317,11 +355,15 @@ export declare class ServiceQuotaExceededException extends __BaseException {
317
355
  */
318
356
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
319
357
  }
358
+ /**
359
+ * @public
360
+ */
320
361
  export declare enum FallbackResult {
321
362
  ALLOW = "ALLOW",
322
363
  DENY = "DENY"
323
364
  }
324
365
  /**
366
+ * @public
325
367
  * <p>Configuration information for optional message review.</p>
326
368
  */
327
369
  export interface MessageReviewHandler {
@@ -340,6 +382,9 @@ export interface MessageReviewHandler {
340
382
  */
341
383
  fallbackResult?: FallbackResult | string;
342
384
  }
385
+ /**
386
+ * @public
387
+ */
343
388
  export interface CreateRoomRequest {
344
389
  /**
345
390
  * <p>Room name. The value does not need to be unique.</p>
@@ -373,6 +418,9 @@ export interface CreateRoomRequest {
373
418
  */
374
419
  loggingConfigurationIdentifiers?: string[];
375
420
  }
421
+ /**
422
+ * @public
423
+ */
376
424
  export interface CreateRoomResponse {
377
425
  /**
378
426
  * <p>Room ARN, assigned by the system.</p>
@@ -421,12 +469,18 @@ export interface CreateRoomResponse {
421
469
  */
422
470
  loggingConfigurationIdentifiers?: string[];
423
471
  }
472
+ /**
473
+ * @public
474
+ */
424
475
  export interface DeleteLoggingConfigurationRequest {
425
476
  /**
426
477
  * <p>Identifier of the logging configuration to be deleted.</p>
427
478
  */
428
479
  identifier: string | undefined;
429
480
  }
481
+ /**
482
+ * @public
483
+ */
430
484
  export interface DeleteMessageRequest {
431
485
  /**
432
486
  * <p>Identifier of the room where the message should be deleted. Currently this must be an
@@ -444,6 +498,9 @@ export interface DeleteMessageRequest {
444
498
  */
445
499
  reason?: string;
446
500
  }
501
+ /**
502
+ * @public
503
+ */
447
504
  export interface DeleteMessageResponse {
448
505
  /**
449
506
  * <p>Operation identifier, generated by Amazon IVS Chat.</p>
@@ -451,6 +508,7 @@ export interface DeleteMessageResponse {
451
508
  id?: string;
452
509
  }
453
510
  /**
511
+ * @public
454
512
  * <p/>
455
513
  */
456
514
  export declare class ThrottlingException extends __BaseException {
@@ -473,12 +531,18 @@ export declare class ThrottlingException extends __BaseException {
473
531
  */
474
532
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
475
533
  }
534
+ /**
535
+ * @public
536
+ */
476
537
  export interface DeleteRoomRequest {
477
538
  /**
478
539
  * <p>Identifier of the room to be deleted. Currently this must be an ARN.</p>
479
540
  */
480
541
  identifier: string | undefined;
481
542
  }
543
+ /**
544
+ * @public
545
+ */
482
546
  export interface DisconnectUserRequest {
483
547
  /**
484
548
  * <p>Identifier of the room from which the user's clients should be disconnected. Currently
@@ -494,14 +558,23 @@ export interface DisconnectUserRequest {
494
558
  */
495
559
  reason?: string;
496
560
  }
561
+ /**
562
+ * @public
563
+ */
497
564
  export interface DisconnectUserResponse {
498
565
  }
566
+ /**
567
+ * @public
568
+ */
499
569
  export interface GetLoggingConfigurationRequest {
500
570
  /**
501
571
  * <p>Identifier of the logging configuration to be retrieved.</p>
502
572
  */
503
573
  identifier: string | undefined;
504
574
  }
575
+ /**
576
+ * @public
577
+ */
505
578
  export declare enum LoggingConfigurationState {
506
579
  ACTIVE = "ACTIVE",
507
580
  CREATE_FAILED = "CREATE_FAILED",
@@ -511,6 +584,9 @@ export declare enum LoggingConfigurationState {
511
584
  UPDATE_FAILED = "UPDATE_FAILED",
512
585
  UPDATING = "UPDATING"
513
586
  }
587
+ /**
588
+ * @public
589
+ */
514
590
  export interface GetLoggingConfigurationResponse {
515
591
  /**
516
592
  * <p>Logging-configuration ARN, from the request (if <code>identifier</code> was an
@@ -554,6 +630,9 @@ export interface GetLoggingConfigurationResponse {
554
630
  */
555
631
  tags?: Record<string, string>;
556
632
  }
633
+ /**
634
+ * @public
635
+ */
557
636
  export interface GetRoomRequest {
558
637
  /**
559
638
  * <p>Identifier of the room for which the configuration is to be retrieved. Currently this
@@ -561,6 +640,9 @@ export interface GetRoomRequest {
561
640
  */
562
641
  identifier: string | undefined;
563
642
  }
643
+ /**
644
+ * @public
645
+ */
564
646
  export interface GetRoomResponse {
565
647
  /**
566
648
  * <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
@@ -610,6 +692,9 @@ export interface GetRoomResponse {
610
692
  */
611
693
  loggingConfigurationIdentifiers?: string[];
612
694
  }
695
+ /**
696
+ * @public
697
+ */
613
698
  export interface ListLoggingConfigurationsRequest {
614
699
  /**
615
700
  * <p>The first logging configurations to retrieve. This is used for pagination; see the
@@ -622,6 +707,7 @@ export interface ListLoggingConfigurationsRequest {
622
707
  maxResults?: number;
623
708
  }
624
709
  /**
710
+ * @public
625
711
  * <p>Summary information about a logging configuration.</p>
626
712
  */
627
713
  export interface LoggingConfigurationSummary {
@@ -667,6 +753,9 @@ export interface LoggingConfigurationSummary {
667
753
  */
668
754
  tags?: Record<string, string>;
669
755
  }
756
+ /**
757
+ * @public
758
+ */
670
759
  export interface ListLoggingConfigurationsResponse {
671
760
  /**
672
761
  * <p>List of the matching logging configurations (summary information only). There is only
@@ -680,6 +769,9 @@ export interface ListLoggingConfigurationsResponse {
680
769
  */
681
770
  nextToken?: string;
682
771
  }
772
+ /**
773
+ * @public
774
+ */
683
775
  export interface ListRoomsRequest {
684
776
  /**
685
777
  * <p>Filters the list to match the specified room name.</p>
@@ -704,6 +796,7 @@ export interface ListRoomsRequest {
704
796
  loggingConfigurationIdentifier?: string;
705
797
  }
706
798
  /**
799
+ * @public
707
800
  * <p>Summary information about a room.</p>
708
801
  */
709
802
  export interface RoomSummary {
@@ -747,6 +840,9 @@ export interface RoomSummary {
747
840
  */
748
841
  loggingConfigurationIdentifiers?: string[];
749
842
  }
843
+ /**
844
+ * @public
845
+ */
750
846
  export interface ListRoomsResponse {
751
847
  /**
752
848
  * <p>List of the matching rooms (summary information only).</p>
@@ -759,6 +855,7 @@ export interface ListRoomsResponse {
759
855
  nextToken?: string;
760
856
  }
761
857
  /**
858
+ * @public
762
859
  * <p/>
763
860
  */
764
861
  export declare class InternalServerException extends __BaseException {
@@ -769,12 +866,18 @@ export declare class InternalServerException extends __BaseException {
769
866
  */
770
867
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
771
868
  }
869
+ /**
870
+ * @public
871
+ */
772
872
  export interface ListTagsForResourceRequest {
773
873
  /**
774
874
  * <p>The ARN of the resource to be retrieved. The ARN must be URL-encoded.</p>
775
875
  */
776
876
  resourceArn: string | undefined;
777
877
  }
878
+ /**
879
+ * @public
880
+ */
778
881
  export interface ListTagsForResourceResponse {
779
882
  /**
780
883
  * <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
@@ -782,6 +885,9 @@ export interface ListTagsForResourceResponse {
782
885
  */
783
886
  tags: Record<string, string> | undefined;
784
887
  }
888
+ /**
889
+ * @public
890
+ */
785
891
  export interface SendEventRequest {
786
892
  /**
787
893
  * <p>Identifier of the room to which the event will be sent. Currently this must be an
@@ -798,6 +904,9 @@ export interface SendEventRequest {
798
904
  */
799
905
  attributes?: Record<string, string>;
800
906
  }
907
+ /**
908
+ * @public
909
+ */
801
910
  export interface SendEventResponse {
802
911
  /**
803
912
  * <p>An identifier generated by Amazon IVS Chat. This identifier must be used in subsequent
@@ -805,6 +914,9 @@ export interface SendEventResponse {
805
914
  */
806
915
  id?: string;
807
916
  }
917
+ /**
918
+ * @public
919
+ */
808
920
  export interface TagResourceRequest {
809
921
  /**
810
922
  * <p>The ARN of the resource to be tagged. The ARN must be URL-encoded.</p>
@@ -819,8 +931,14 @@ export interface TagResourceRequest {
819
931
  */
820
932
  tags: Record<string, string> | undefined;
821
933
  }
934
+ /**
935
+ * @public
936
+ */
822
937
  export interface TagResourceResponse {
823
938
  }
939
+ /**
940
+ * @public
941
+ */
824
942
  export interface UntagResourceRequest {
825
943
  /**
826
944
  * <p>The ARN of the resource to be untagged. The ARN must be URL-encoded.</p>
@@ -835,8 +953,14 @@ export interface UntagResourceRequest {
835
953
  */
836
954
  tagKeys: string[] | undefined;
837
955
  }
956
+ /**
957
+ * @public
958
+ */
838
959
  export interface UntagResourceResponse {
839
960
  }
961
+ /**
962
+ * @public
963
+ */
840
964
  export interface UpdateLoggingConfigurationRequest {
841
965
  /**
842
966
  * <p>Identifier of the logging configuration to be updated.</p>
@@ -854,9 +978,15 @@ export interface UpdateLoggingConfigurationRequest {
854
978
  */
855
979
  destinationConfiguration?: DestinationConfiguration;
856
980
  }
981
+ /**
982
+ * @public
983
+ */
857
984
  export declare enum UpdateLoggingConfigurationState {
858
985
  ACTIVE = "ACTIVE"
859
986
  }
987
+ /**
988
+ * @public
989
+ */
860
990
  export interface UpdateLoggingConfigurationResponse {
861
991
  /**
862
992
  * <p>Logging-configuration ARN, from the request (if <code>identifier</code> was an
@@ -900,6 +1030,9 @@ export interface UpdateLoggingConfigurationResponse {
900
1030
  */
901
1031
  tags?: Record<string, string>;
902
1032
  }
1033
+ /**
1034
+ * @public
1035
+ */
903
1036
  export interface UpdateRoomRequest {
904
1037
  /**
905
1038
  * <p>Identifier of the room to be updated. Currently this must be an ARN.</p>
@@ -931,6 +1064,9 @@ export interface UpdateRoomRequest {
931
1064
  */
932
1065
  loggingConfigurationIdentifiers?: string[];
933
1066
  }
1067
+ /**
1068
+ * @public
1069
+ */
934
1070
  export interface UpdateRoomResponse {
935
1071
  /**
936
1072
  * <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
@@ -980,163 +1116,3 @@ export interface UpdateRoomResponse {
980
1116
  */
981
1117
  loggingConfigurationIdentifiers?: string[];
982
1118
  }
983
- /**
984
- * @internal
985
- */
986
- export declare const CreateChatTokenRequestFilterSensitiveLog: (obj: CreateChatTokenRequest) => any;
987
- /**
988
- * @internal
989
- */
990
- export declare const CreateChatTokenResponseFilterSensitiveLog: (obj: CreateChatTokenResponse) => any;
991
- /**
992
- * @internal
993
- */
994
- export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
995
- /**
996
- * @internal
997
- */
998
- export declare const CloudWatchLogsDestinationConfigurationFilterSensitiveLog: (obj: CloudWatchLogsDestinationConfiguration) => any;
999
- /**
1000
- * @internal
1001
- */
1002
- export declare const FirehoseDestinationConfigurationFilterSensitiveLog: (obj: FirehoseDestinationConfiguration) => any;
1003
- /**
1004
- * @internal
1005
- */
1006
- export declare const S3DestinationConfigurationFilterSensitiveLog: (obj: S3DestinationConfiguration) => any;
1007
- /**
1008
- * @internal
1009
- */
1010
- export declare const DestinationConfigurationFilterSensitiveLog: (obj: DestinationConfiguration) => any;
1011
- /**
1012
- * @internal
1013
- */
1014
- export declare const CreateLoggingConfigurationRequestFilterSensitiveLog: (obj: CreateLoggingConfigurationRequest) => any;
1015
- /**
1016
- * @internal
1017
- */
1018
- export declare const CreateLoggingConfigurationResponseFilterSensitiveLog: (obj: CreateLoggingConfigurationResponse) => any;
1019
- /**
1020
- * @internal
1021
- */
1022
- export declare const MessageReviewHandlerFilterSensitiveLog: (obj: MessageReviewHandler) => any;
1023
- /**
1024
- * @internal
1025
- */
1026
- export declare const CreateRoomRequestFilterSensitiveLog: (obj: CreateRoomRequest) => any;
1027
- /**
1028
- * @internal
1029
- */
1030
- export declare const CreateRoomResponseFilterSensitiveLog: (obj: CreateRoomResponse) => any;
1031
- /**
1032
- * @internal
1033
- */
1034
- export declare const DeleteLoggingConfigurationRequestFilterSensitiveLog: (obj: DeleteLoggingConfigurationRequest) => any;
1035
- /**
1036
- * @internal
1037
- */
1038
- export declare const DeleteMessageRequestFilterSensitiveLog: (obj: DeleteMessageRequest) => any;
1039
- /**
1040
- * @internal
1041
- */
1042
- export declare const DeleteMessageResponseFilterSensitiveLog: (obj: DeleteMessageResponse) => any;
1043
- /**
1044
- * @internal
1045
- */
1046
- export declare const DeleteRoomRequestFilterSensitiveLog: (obj: DeleteRoomRequest) => any;
1047
- /**
1048
- * @internal
1049
- */
1050
- export declare const DisconnectUserRequestFilterSensitiveLog: (obj: DisconnectUserRequest) => any;
1051
- /**
1052
- * @internal
1053
- */
1054
- export declare const DisconnectUserResponseFilterSensitiveLog: (obj: DisconnectUserResponse) => any;
1055
- /**
1056
- * @internal
1057
- */
1058
- export declare const GetLoggingConfigurationRequestFilterSensitiveLog: (obj: GetLoggingConfigurationRequest) => any;
1059
- /**
1060
- * @internal
1061
- */
1062
- export declare const GetLoggingConfigurationResponseFilterSensitiveLog: (obj: GetLoggingConfigurationResponse) => any;
1063
- /**
1064
- * @internal
1065
- */
1066
- export declare const GetRoomRequestFilterSensitiveLog: (obj: GetRoomRequest) => any;
1067
- /**
1068
- * @internal
1069
- */
1070
- export declare const GetRoomResponseFilterSensitiveLog: (obj: GetRoomResponse) => any;
1071
- /**
1072
- * @internal
1073
- */
1074
- export declare const ListLoggingConfigurationsRequestFilterSensitiveLog: (obj: ListLoggingConfigurationsRequest) => any;
1075
- /**
1076
- * @internal
1077
- */
1078
- export declare const LoggingConfigurationSummaryFilterSensitiveLog: (obj: LoggingConfigurationSummary) => any;
1079
- /**
1080
- * @internal
1081
- */
1082
- export declare const ListLoggingConfigurationsResponseFilterSensitiveLog: (obj: ListLoggingConfigurationsResponse) => any;
1083
- /**
1084
- * @internal
1085
- */
1086
- export declare const ListRoomsRequestFilterSensitiveLog: (obj: ListRoomsRequest) => any;
1087
- /**
1088
- * @internal
1089
- */
1090
- export declare const RoomSummaryFilterSensitiveLog: (obj: RoomSummary) => any;
1091
- /**
1092
- * @internal
1093
- */
1094
- export declare const ListRoomsResponseFilterSensitiveLog: (obj: ListRoomsResponse) => any;
1095
- /**
1096
- * @internal
1097
- */
1098
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1099
- /**
1100
- * @internal
1101
- */
1102
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1103
- /**
1104
- * @internal
1105
- */
1106
- export declare const SendEventRequestFilterSensitiveLog: (obj: SendEventRequest) => any;
1107
- /**
1108
- * @internal
1109
- */
1110
- export declare const SendEventResponseFilterSensitiveLog: (obj: SendEventResponse) => any;
1111
- /**
1112
- * @internal
1113
- */
1114
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
1115
- /**
1116
- * @internal
1117
- */
1118
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
1119
- /**
1120
- * @internal
1121
- */
1122
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
1123
- /**
1124
- * @internal
1125
- */
1126
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
1127
- /**
1128
- * @internal
1129
- */
1130
- export declare const UpdateLoggingConfigurationRequestFilterSensitiveLog: (obj: UpdateLoggingConfigurationRequest) => any;
1131
- /**
1132
- * @internal
1133
- */
1134
- export declare const UpdateLoggingConfigurationResponseFilterSensitiveLog: (obj: UpdateLoggingConfigurationResponse) => any;
1135
- /**
1136
- * @internal
1137
- */
1138
- export declare const UpdateRoomRequestFilterSensitiveLog: (obj: UpdateRoomRequest) => any;
1139
- /**
1140
- * @internal
1141
- */
1142
- export declare const UpdateRoomResponseFilterSensitiveLog: (obj: UpdateRoomResponse) => any;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { IvschatClient } from "../IvschatClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface IvschatPaginationConfiguration extends PaginationConfiguration {
4
7
  client: IvschatClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListLoggingConfigurationsCommandInput, ListLoggingConfigurationsCommandOutput } from "../commands/ListLoggingConfigurationsCommand";
3
3
  import { IvschatPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListLoggingConfigurations(config: IvschatPaginationConfiguration, input: ListLoggingConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListLoggingConfigurationsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListRoomsCommandInput, ListRoomsCommandOutput } from "../commands/ListRoomsCommand";
3
3
  import { IvschatPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListRooms(config: IvschatPaginationConfiguration, input: ListRoomsCommandInput, ...additionalArguments: any): Paginator<ListRoomsCommandOutput>;