@aws-sdk/client-ivschat 3.168.0 → 3.170.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Ivschat.d.ts +220 -65
  3. package/dist-types/ts3.4/IvschatClient.d.ts +201 -85
  4. package/dist-types/ts3.4/commands/CreateChatTokenCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateRoomCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteRoomCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DisconnectUserCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/ListRoomsCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/UpdateRoomCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +6 -6
  19. package/dist-types/ts3.4/models/IvschatServiceException.d.ts +8 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +406 -368
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListRoomsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/index.d.ts +2 -2
  25. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  30. package/package.json +34 -34
@@ -1,368 +1,406 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum ChatTokenCapability {
11
- DELETE_MESSAGE = "DELETE_MESSAGE",
12
- DISCONNECT_USER = "DISCONNECT_USER",
13
- SEND_MESSAGE = "SEND_MESSAGE"
14
- }
15
- export interface CreateChatTokenRequest {
16
-
17
- roomIdentifier: string | undefined;
18
-
19
- userId: string | undefined;
20
-
21
- capabilities?: (ChatTokenCapability | string)[];
22
-
23
- sessionDurationInMinutes?: number;
24
-
25
- attributes?: Record<string, string>;
26
- }
27
- export interface CreateChatTokenResponse {
28
-
29
- token?: string;
30
-
31
- tokenExpirationTime?: Date;
32
-
33
- sessionExpirationTime?: Date;
34
- }
35
-
36
- export declare class PendingVerification extends __BaseException {
37
- readonly name: "PendingVerification";
38
- readonly $fault: "client";
39
-
40
- constructor(opts: __ExceptionOptionType<PendingVerification, __BaseException>);
41
- }
42
- export declare enum ResourceType {
43
- ROOM = "ROOM"
44
- }
45
-
46
- export declare class ResourceNotFoundException extends __BaseException {
47
- readonly name: "ResourceNotFoundException";
48
- readonly $fault: "client";
49
-
50
- resourceId: string | undefined;
51
-
52
- resourceType: ResourceType | string | undefined;
53
-
54
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
55
- }
56
-
57
- export interface ValidationExceptionField {
58
-
59
- name: string | undefined;
60
-
61
- message: string | undefined;
62
- }
63
- export declare enum ValidationExceptionReason {
64
- FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
65
- OTHER = "OTHER",
66
- UNKNOWN_OPERATION = "UNKNOWN_OPERATION"
67
- }
68
-
69
- export declare class ValidationException extends __BaseException {
70
- readonly name: "ValidationException";
71
- readonly $fault: "client";
72
-
73
- reason: ValidationExceptionReason | string | undefined;
74
-
75
- fieldList?: ValidationExceptionField[];
76
-
77
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
78
- }
79
-
80
- export declare class ConflictException extends __BaseException {
81
- readonly name: "ConflictException";
82
- readonly $fault: "client";
83
-
84
- resourceId: string | undefined;
85
-
86
- resourceType: ResourceType | string | undefined;
87
-
88
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
89
- }
90
- export declare enum FallbackResult {
91
- ALLOW = "ALLOW",
92
- DENY = "DENY"
93
- }
94
-
95
- export interface MessageReviewHandler {
96
-
97
- uri?: string;
98
-
99
- fallbackResult?: FallbackResult | string;
100
- }
101
- export interface CreateRoomRequest {
102
-
103
- name?: string;
104
-
105
- maximumMessageRatePerSecond?: number;
106
-
107
- maximumMessageLength?: number;
108
-
109
- messageReviewHandler?: MessageReviewHandler;
110
-
111
- tags?: Record<string, string>;
112
- }
113
- export interface CreateRoomResponse {
114
-
115
- arn?: string;
116
-
117
- id?: string;
118
-
119
- name?: string;
120
-
121
- createTime?: Date;
122
-
123
- updateTime?: Date;
124
-
125
- maximumMessageRatePerSecond?: number;
126
-
127
- maximumMessageLength?: number;
128
-
129
- messageReviewHandler?: MessageReviewHandler;
130
-
131
- tags?: Record<string, string>;
132
- }
133
-
134
- export declare class ServiceQuotaExceededException extends __BaseException {
135
- readonly name: "ServiceQuotaExceededException";
136
- readonly $fault: "client";
137
-
138
- resourceId: string | undefined;
139
-
140
- resourceType: ResourceType | string | undefined;
141
-
142
- limit: number | undefined;
143
-
144
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
145
- }
146
- export interface DeleteMessageRequest {
147
-
148
- roomIdentifier: string | undefined;
149
-
150
- id: string | undefined;
151
-
152
- reason?: string;
153
- }
154
- export interface DeleteMessageResponse {
155
-
156
- id?: string;
157
- }
158
-
159
- export declare class ThrottlingException extends __BaseException {
160
- readonly name: "ThrottlingException";
161
- readonly $fault: "client";
162
-
163
- resourceId: string | undefined;
164
-
165
- resourceType: ResourceType | string | undefined;
166
-
167
- limit: number | undefined;
168
-
169
- constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
170
- }
171
- export interface DeleteRoomRequest {
172
-
173
- identifier: string | undefined;
174
- }
175
- export interface DisconnectUserRequest {
176
-
177
- roomIdentifier: string | undefined;
178
-
179
- userId: string | undefined;
180
-
181
- reason?: string;
182
- }
183
- export interface DisconnectUserResponse {
184
- }
185
- export interface GetRoomRequest {
186
-
187
- identifier: string | undefined;
188
- }
189
- export interface GetRoomResponse {
190
-
191
- arn?: string;
192
-
193
- id?: string;
194
-
195
- name?: string;
196
-
197
- createTime?: Date;
198
-
199
- updateTime?: Date;
200
-
201
- maximumMessageRatePerSecond?: number;
202
-
203
- maximumMessageLength?: number;
204
-
205
- messageReviewHandler?: MessageReviewHandler;
206
-
207
- tags?: Record<string, string>;
208
- }
209
- export interface ListRoomsRequest {
210
-
211
- name?: string;
212
-
213
- nextToken?: string;
214
-
215
- maxResults?: number;
216
-
217
- messageReviewHandlerUri?: string;
218
- }
219
-
220
- export interface RoomSummary {
221
-
222
- arn?: string;
223
-
224
- id?: string;
225
-
226
- name?: string;
227
-
228
- messageReviewHandler?: MessageReviewHandler;
229
-
230
- createTime?: Date;
231
-
232
- updateTime?: Date;
233
-
234
- tags?: Record<string, string>;
235
- }
236
- export interface ListRoomsResponse {
237
-
238
- rooms: RoomSummary[] | undefined;
239
-
240
- nextToken?: string;
241
- }
242
-
243
- export declare class InternalServerException extends __BaseException {
244
- readonly name: "InternalServerException";
245
- readonly $fault: "server";
246
-
247
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
248
- }
249
- export interface ListTagsForResourceRequest {
250
-
251
- resourceArn: string | undefined;
252
- }
253
- export interface ListTagsForResourceResponse {
254
-
255
- tags: Record<string, string> | undefined;
256
- }
257
- export interface SendEventRequest {
258
-
259
- roomIdentifier: string | undefined;
260
-
261
- eventName: string | undefined;
262
-
263
- attributes?: Record<string, string>;
264
- }
265
- export interface SendEventResponse {
266
-
267
- id?: string;
268
- }
269
- export interface TagResourceRequest {
270
-
271
- resourceArn: string | undefined;
272
-
273
- tags: Record<string, string> | undefined;
274
- }
275
- export interface TagResourceResponse {
276
- }
277
- export interface UntagResourceRequest {
278
-
279
- resourceArn: string | undefined;
280
-
281
- tagKeys: string[] | undefined;
282
- }
283
- export interface UntagResourceResponse {
284
- }
285
- export interface UpdateRoomRequest {
286
-
287
- identifier: string | undefined;
288
-
289
- name?: string;
290
-
291
- maximumMessageRatePerSecond?: number;
292
-
293
- maximumMessageLength?: number;
294
-
295
- messageReviewHandler?: MessageReviewHandler;
296
- }
297
- export interface UpdateRoomResponse {
298
-
299
- arn?: string;
300
-
301
- id?: string;
302
-
303
- name?: string;
304
-
305
- createTime?: Date;
306
-
307
- updateTime?: Date;
308
-
309
- maximumMessageRatePerSecond?: number;
310
-
311
- maximumMessageLength?: number;
312
-
313
- messageReviewHandler?: MessageReviewHandler;
314
-
315
- tags?: Record<string, string>;
316
- }
317
-
318
- export declare const CreateChatTokenRequestFilterSensitiveLog: (obj: CreateChatTokenRequest) => any;
319
-
320
- export declare const CreateChatTokenResponseFilterSensitiveLog: (obj: CreateChatTokenResponse) => any;
321
-
322
- export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
323
-
324
- export declare const MessageReviewHandlerFilterSensitiveLog: (obj: MessageReviewHandler) => any;
325
-
326
- export declare const CreateRoomRequestFilterSensitiveLog: (obj: CreateRoomRequest) => any;
327
-
328
- export declare const CreateRoomResponseFilterSensitiveLog: (obj: CreateRoomResponse) => any;
329
-
330
- export declare const DeleteMessageRequestFilterSensitiveLog: (obj: DeleteMessageRequest) => any;
331
-
332
- export declare const DeleteMessageResponseFilterSensitiveLog: (obj: DeleteMessageResponse) => any;
333
-
334
- export declare const DeleteRoomRequestFilterSensitiveLog: (obj: DeleteRoomRequest) => any;
335
-
336
- export declare const DisconnectUserRequestFilterSensitiveLog: (obj: DisconnectUserRequest) => any;
337
-
338
- export declare const DisconnectUserResponseFilterSensitiveLog: (obj: DisconnectUserResponse) => any;
339
-
340
- export declare const GetRoomRequestFilterSensitiveLog: (obj: GetRoomRequest) => any;
341
-
342
- export declare const GetRoomResponseFilterSensitiveLog: (obj: GetRoomResponse) => any;
343
-
344
- export declare const ListRoomsRequestFilterSensitiveLog: (obj: ListRoomsRequest) => any;
345
-
346
- export declare const RoomSummaryFilterSensitiveLog: (obj: RoomSummary) => any;
347
-
348
- export declare const ListRoomsResponseFilterSensitiveLog: (obj: ListRoomsResponse) => any;
349
-
350
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
351
-
352
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
353
-
354
- export declare const SendEventRequestFilterSensitiveLog: (obj: SendEventRequest) => any;
355
-
356
- export declare const SendEventResponseFilterSensitiveLog: (obj: SendEventResponse) => any;
357
-
358
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
359
-
360
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
361
-
362
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
363
-
364
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
365
-
366
- export declare const UpdateRoomRequestFilterSensitiveLog: (obj: UpdateRoomRequest) => any;
367
-
368
- export declare const UpdateRoomResponseFilterSensitiveLog: (obj: UpdateRoomResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { IvschatServiceException as __BaseException } from "./IvschatServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare enum ChatTokenCapability {
13
+ DELETE_MESSAGE = "DELETE_MESSAGE",
14
+ DISCONNECT_USER = "DISCONNECT_USER",
15
+ SEND_MESSAGE = "SEND_MESSAGE",
16
+ }
17
+ export interface CreateChatTokenRequest {
18
+ roomIdentifier: string | undefined;
19
+
20
+ userId: string | undefined;
21
+
22
+ capabilities?: (ChatTokenCapability | string)[];
23
+
24
+ sessionDurationInMinutes?: number;
25
+
26
+ attributes?: Record<string, string>;
27
+ }
28
+ export interface CreateChatTokenResponse {
29
+ token?: string;
30
+
31
+ tokenExpirationTime?: Date;
32
+
33
+ sessionExpirationTime?: Date;
34
+ }
35
+
36
+ export declare class PendingVerification extends __BaseException {
37
+ readonly name: "PendingVerification";
38
+ readonly $fault: "client";
39
+
40
+ constructor(
41
+ opts: __ExceptionOptionType<PendingVerification, __BaseException>
42
+ );
43
+ }
44
+ export declare enum ResourceType {
45
+ ROOM = "ROOM",
46
+ }
47
+
48
+ export declare class ResourceNotFoundException extends __BaseException {
49
+ readonly name: "ResourceNotFoundException";
50
+ readonly $fault: "client";
51
+
52
+ resourceId: string | undefined;
53
+
54
+ resourceType: ResourceType | string | undefined;
55
+
56
+ constructor(
57
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
58
+ );
59
+ }
60
+
61
+ export interface ValidationExceptionField {
62
+ name: string | undefined;
63
+
64
+ message: string | undefined;
65
+ }
66
+ export declare enum ValidationExceptionReason {
67
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
68
+ OTHER = "OTHER",
69
+ UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
70
+ }
71
+
72
+ export declare class ValidationException extends __BaseException {
73
+ readonly name: "ValidationException";
74
+ readonly $fault: "client";
75
+
76
+ reason: ValidationExceptionReason | string | undefined;
77
+
78
+ fieldList?: ValidationExceptionField[];
79
+
80
+ constructor(
81
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
82
+ );
83
+ }
84
+
85
+ export declare class ConflictException extends __BaseException {
86
+ readonly name: "ConflictException";
87
+ readonly $fault: "client";
88
+
89
+ resourceId: string | undefined;
90
+
91
+ resourceType: ResourceType | string | undefined;
92
+
93
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
94
+ }
95
+ export declare enum FallbackResult {
96
+ ALLOW = "ALLOW",
97
+ DENY = "DENY",
98
+ }
99
+
100
+ export interface MessageReviewHandler {
101
+ uri?: string;
102
+
103
+ fallbackResult?: FallbackResult | string;
104
+ }
105
+ export interface CreateRoomRequest {
106
+ name?: string;
107
+
108
+ maximumMessageRatePerSecond?: number;
109
+
110
+ maximumMessageLength?: number;
111
+
112
+ messageReviewHandler?: MessageReviewHandler;
113
+
114
+ tags?: Record<string, string>;
115
+ }
116
+ export interface CreateRoomResponse {
117
+ arn?: string;
118
+
119
+ id?: string;
120
+
121
+ name?: string;
122
+
123
+ createTime?: Date;
124
+
125
+ updateTime?: Date;
126
+
127
+ maximumMessageRatePerSecond?: number;
128
+
129
+ maximumMessageLength?: number;
130
+
131
+ messageReviewHandler?: MessageReviewHandler;
132
+
133
+ tags?: Record<string, string>;
134
+ }
135
+
136
+ export declare class ServiceQuotaExceededException extends __BaseException {
137
+ readonly name: "ServiceQuotaExceededException";
138
+ readonly $fault: "client";
139
+
140
+ resourceId: string | undefined;
141
+
142
+ resourceType: ResourceType | string | undefined;
143
+
144
+ limit: number | undefined;
145
+
146
+ constructor(
147
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
148
+ );
149
+ }
150
+ export interface DeleteMessageRequest {
151
+ roomIdentifier: string | undefined;
152
+
153
+ id: string | undefined;
154
+
155
+ reason?: string;
156
+ }
157
+ export interface DeleteMessageResponse {
158
+ id?: string;
159
+ }
160
+
161
+ export declare class ThrottlingException extends __BaseException {
162
+ readonly name: "ThrottlingException";
163
+ readonly $fault: "client";
164
+
165
+ resourceId: string | undefined;
166
+
167
+ resourceType: ResourceType | string | undefined;
168
+
169
+ limit: number | undefined;
170
+
171
+ constructor(
172
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
173
+ );
174
+ }
175
+ export interface DeleteRoomRequest {
176
+ identifier: string | undefined;
177
+ }
178
+ export interface DisconnectUserRequest {
179
+ roomIdentifier: string | undefined;
180
+
181
+ userId: string | undefined;
182
+
183
+ reason?: string;
184
+ }
185
+ export interface DisconnectUserResponse {}
186
+ export interface GetRoomRequest {
187
+ identifier: string | undefined;
188
+ }
189
+ export interface GetRoomResponse {
190
+ arn?: string;
191
+
192
+ id?: string;
193
+
194
+ name?: string;
195
+
196
+ createTime?: Date;
197
+
198
+ updateTime?: Date;
199
+
200
+ maximumMessageRatePerSecond?: number;
201
+
202
+ maximumMessageLength?: number;
203
+
204
+ messageReviewHandler?: MessageReviewHandler;
205
+
206
+ tags?: Record<string, string>;
207
+ }
208
+ export interface ListRoomsRequest {
209
+ name?: string;
210
+
211
+ nextToken?: string;
212
+
213
+ maxResults?: number;
214
+
215
+ messageReviewHandlerUri?: string;
216
+ }
217
+
218
+ export interface RoomSummary {
219
+ arn?: string;
220
+
221
+ id?: string;
222
+
223
+ name?: string;
224
+
225
+ messageReviewHandler?: MessageReviewHandler;
226
+
227
+ createTime?: Date;
228
+
229
+ updateTime?: Date;
230
+
231
+ tags?: Record<string, string>;
232
+ }
233
+ export interface ListRoomsResponse {
234
+ rooms: RoomSummary[] | undefined;
235
+
236
+ nextToken?: string;
237
+ }
238
+
239
+ export declare class InternalServerException extends __BaseException {
240
+ readonly name: "InternalServerException";
241
+ readonly $fault: "server";
242
+
243
+ constructor(
244
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
245
+ );
246
+ }
247
+ export interface ListTagsForResourceRequest {
248
+ resourceArn: string | undefined;
249
+ }
250
+ export interface ListTagsForResourceResponse {
251
+ tags: Record<string, string> | undefined;
252
+ }
253
+ export interface SendEventRequest {
254
+ roomIdentifier: string | undefined;
255
+
256
+ eventName: string | undefined;
257
+
258
+ attributes?: Record<string, string>;
259
+ }
260
+ export interface SendEventResponse {
261
+ id?: string;
262
+ }
263
+ export interface TagResourceRequest {
264
+ resourceArn: string | undefined;
265
+
266
+ tags: Record<string, string> | undefined;
267
+ }
268
+ export interface TagResourceResponse {}
269
+ export interface UntagResourceRequest {
270
+ resourceArn: string | undefined;
271
+
272
+ tagKeys: string[] | undefined;
273
+ }
274
+ export interface UntagResourceResponse {}
275
+ export interface UpdateRoomRequest {
276
+ identifier: string | undefined;
277
+
278
+ name?: string;
279
+
280
+ maximumMessageRatePerSecond?: number;
281
+
282
+ maximumMessageLength?: number;
283
+
284
+ messageReviewHandler?: MessageReviewHandler;
285
+ }
286
+ export interface UpdateRoomResponse {
287
+ arn?: string;
288
+
289
+ id?: string;
290
+
291
+ name?: string;
292
+
293
+ createTime?: Date;
294
+
295
+ updateTime?: Date;
296
+
297
+ maximumMessageRatePerSecond?: number;
298
+
299
+ maximumMessageLength?: number;
300
+
301
+ messageReviewHandler?: MessageReviewHandler;
302
+
303
+ tags?: Record<string, string>;
304
+ }
305
+
306
+ export declare const CreateChatTokenRequestFilterSensitiveLog: (
307
+ obj: CreateChatTokenRequest
308
+ ) => any;
309
+
310
+ export declare const CreateChatTokenResponseFilterSensitiveLog: (
311
+ obj: CreateChatTokenResponse
312
+ ) => any;
313
+
314
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
315
+ obj: ValidationExceptionField
316
+ ) => any;
317
+
318
+ export declare const MessageReviewHandlerFilterSensitiveLog: (
319
+ obj: MessageReviewHandler
320
+ ) => any;
321
+
322
+ export declare const CreateRoomRequestFilterSensitiveLog: (
323
+ obj: CreateRoomRequest
324
+ ) => any;
325
+
326
+ export declare const CreateRoomResponseFilterSensitiveLog: (
327
+ obj: CreateRoomResponse
328
+ ) => any;
329
+
330
+ export declare const DeleteMessageRequestFilterSensitiveLog: (
331
+ obj: DeleteMessageRequest
332
+ ) => any;
333
+
334
+ export declare const DeleteMessageResponseFilterSensitiveLog: (
335
+ obj: DeleteMessageResponse
336
+ ) => any;
337
+
338
+ export declare const DeleteRoomRequestFilterSensitiveLog: (
339
+ obj: DeleteRoomRequest
340
+ ) => any;
341
+
342
+ export declare const DisconnectUserRequestFilterSensitiveLog: (
343
+ obj: DisconnectUserRequest
344
+ ) => any;
345
+
346
+ export declare const DisconnectUserResponseFilterSensitiveLog: (
347
+ obj: DisconnectUserResponse
348
+ ) => any;
349
+
350
+ export declare const GetRoomRequestFilterSensitiveLog: (
351
+ obj: GetRoomRequest
352
+ ) => any;
353
+
354
+ export declare const GetRoomResponseFilterSensitiveLog: (
355
+ obj: GetRoomResponse
356
+ ) => any;
357
+
358
+ export declare const ListRoomsRequestFilterSensitiveLog: (
359
+ obj: ListRoomsRequest
360
+ ) => any;
361
+
362
+ export declare const RoomSummaryFilterSensitiveLog: (obj: RoomSummary) => any;
363
+
364
+ export declare const ListRoomsResponseFilterSensitiveLog: (
365
+ obj: ListRoomsResponse
366
+ ) => any;
367
+
368
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
369
+ obj: ListTagsForResourceRequest
370
+ ) => any;
371
+
372
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
373
+ obj: ListTagsForResourceResponse
374
+ ) => any;
375
+
376
+ export declare const SendEventRequestFilterSensitiveLog: (
377
+ obj: SendEventRequest
378
+ ) => any;
379
+
380
+ export declare const SendEventResponseFilterSensitiveLog: (
381
+ obj: SendEventResponse
382
+ ) => any;
383
+
384
+ export declare const TagResourceRequestFilterSensitiveLog: (
385
+ obj: TagResourceRequest
386
+ ) => any;
387
+
388
+ export declare const TagResourceResponseFilterSensitiveLog: (
389
+ obj: TagResourceResponse
390
+ ) => any;
391
+
392
+ export declare const UntagResourceRequestFilterSensitiveLog: (
393
+ obj: UntagResourceRequest
394
+ ) => any;
395
+
396
+ export declare const UntagResourceResponseFilterSensitiveLog: (
397
+ obj: UntagResourceResponse
398
+ ) => any;
399
+
400
+ export declare const UpdateRoomRequestFilterSensitiveLog: (
401
+ obj: UpdateRoomRequest
402
+ ) => any;
403
+
404
+ export declare const UpdateRoomResponseFilterSensitiveLog: (
405
+ obj: UpdateRoomResponse
406
+ ) => any;