@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.
- package/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Ivschat.d.ts +220 -65
- package/dist-types/ts3.4/IvschatClient.d.ts +201 -85
- package/dist-types/ts3.4/commands/CreateChatTokenCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteRoomCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DisconnectUserCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListRoomsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/SendEventCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateRoomCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +12 -12
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/IvschatServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +406 -368
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListRoomsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- 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
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
export declare class PendingVerification extends __BaseException {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
export
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
}
|
|
175
|
-
export interface
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
}
|
|
185
|
-
export interface
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
}
|
|
189
|
-
export interface GetRoomResponse {
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
}
|
|
253
|
-
export interface
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
}
|
|
269
|
-
export interface
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
}
|
|
275
|
-
export interface
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export declare const
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
export declare const
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
export declare const
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
export declare const DeleteMessageRequestFilterSensitiveLog: (
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
export declare const
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
export declare const
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
export declare const
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
export declare const
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
export declare const
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
export declare const
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
export declare const
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
export declare const
|
|
363
|
-
|
|
364
|
-
export declare const
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
export declare const
|
|
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;
|