@aws-sdk/client-ivschat 3.169.0 → 3.171.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Ivschat.d.ts +208 -65
  3. package/dist-types/ts3.4/IvschatClient.d.ts +176 -85
  4. package/dist-types/ts3.4/commands/CreateChatTokenCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateRoomCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteRoomCommand.d.ts +30 -17
  8. package/dist-types/ts3.4/commands/DisconnectUserCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/GetRoomCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/ListRoomsCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/SendEventCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/UpdateRoomCommand.d.ts +32 -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 +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +291 -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 +65 -38
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  30. package/package.json +34 -34
@@ -1,368 +1,291 @@
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
+ export declare class AccessDeniedException extends __BaseException {
4
+ readonly name: "AccessDeniedException";
5
+ readonly $fault: "client";
6
+ constructor(
7
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
8
+ );
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
+ roomIdentifier: string | undefined;
17
+ userId: string | undefined;
18
+ capabilities?: (ChatTokenCapability | string)[];
19
+ sessionDurationInMinutes?: number;
20
+ attributes?: Record<string, string>;
21
+ }
22
+ export interface CreateChatTokenResponse {
23
+ token?: string;
24
+ tokenExpirationTime?: Date;
25
+ sessionExpirationTime?: Date;
26
+ }
27
+ export declare class PendingVerification extends __BaseException {
28
+ readonly name: "PendingVerification";
29
+ readonly $fault: "client";
30
+ constructor(
31
+ opts: __ExceptionOptionType<PendingVerification, __BaseException>
32
+ );
33
+ }
34
+ export declare enum ResourceType {
35
+ ROOM = "ROOM",
36
+ }
37
+ export declare class ResourceNotFoundException extends __BaseException {
38
+ readonly name: "ResourceNotFoundException";
39
+ readonly $fault: "client";
40
+ resourceId: string | undefined;
41
+ resourceType: ResourceType | string | undefined;
42
+ constructor(
43
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
+ );
45
+ }
46
+ export interface ValidationExceptionField {
47
+ name: string | undefined;
48
+ message: string | undefined;
49
+ }
50
+ export declare enum ValidationExceptionReason {
51
+ FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
52
+ OTHER = "OTHER",
53
+ UNKNOWN_OPERATION = "UNKNOWN_OPERATION",
54
+ }
55
+ export declare class ValidationException extends __BaseException {
56
+ readonly name: "ValidationException";
57
+ readonly $fault: "client";
58
+ reason: ValidationExceptionReason | string | undefined;
59
+ fieldList?: ValidationExceptionField[];
60
+ constructor(
61
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
62
+ );
63
+ }
64
+ export declare class ConflictException extends __BaseException {
65
+ readonly name: "ConflictException";
66
+ readonly $fault: "client";
67
+ resourceId: string | undefined;
68
+ resourceType: ResourceType | string | undefined;
69
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
70
+ }
71
+ export declare enum FallbackResult {
72
+ ALLOW = "ALLOW",
73
+ DENY = "DENY",
74
+ }
75
+ export interface MessageReviewHandler {
76
+ uri?: string;
77
+ fallbackResult?: FallbackResult | string;
78
+ }
79
+ export interface CreateRoomRequest {
80
+ name?: string;
81
+ maximumMessageRatePerSecond?: number;
82
+ maximumMessageLength?: number;
83
+ messageReviewHandler?: MessageReviewHandler;
84
+ tags?: Record<string, string>;
85
+ }
86
+ export interface CreateRoomResponse {
87
+ arn?: string;
88
+ id?: string;
89
+ name?: string;
90
+ createTime?: Date;
91
+ updateTime?: Date;
92
+ maximumMessageRatePerSecond?: number;
93
+ maximumMessageLength?: number;
94
+ messageReviewHandler?: MessageReviewHandler;
95
+ tags?: Record<string, string>;
96
+ }
97
+ export declare class ServiceQuotaExceededException extends __BaseException {
98
+ readonly name: "ServiceQuotaExceededException";
99
+ readonly $fault: "client";
100
+ resourceId: string | undefined;
101
+ resourceType: ResourceType | string | undefined;
102
+ limit: number | undefined;
103
+ constructor(
104
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
105
+ );
106
+ }
107
+ export interface DeleteMessageRequest {
108
+ roomIdentifier: string | undefined;
109
+ id: string | undefined;
110
+ reason?: string;
111
+ }
112
+ export interface DeleteMessageResponse {
113
+ id?: string;
114
+ }
115
+ export declare class ThrottlingException extends __BaseException {
116
+ readonly name: "ThrottlingException";
117
+ readonly $fault: "client";
118
+ resourceId: string | undefined;
119
+ resourceType: ResourceType | string | undefined;
120
+ limit: number | undefined;
121
+ constructor(
122
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
123
+ );
124
+ }
125
+ export interface DeleteRoomRequest {
126
+ identifier: string | undefined;
127
+ }
128
+ export interface DisconnectUserRequest {
129
+ roomIdentifier: string | undefined;
130
+ userId: string | undefined;
131
+ reason?: string;
132
+ }
133
+ export interface DisconnectUserResponse {}
134
+ export interface GetRoomRequest {
135
+ identifier: string | undefined;
136
+ }
137
+ export interface GetRoomResponse {
138
+ arn?: string;
139
+ id?: string;
140
+ name?: string;
141
+ createTime?: Date;
142
+ updateTime?: Date;
143
+ maximumMessageRatePerSecond?: number;
144
+ maximumMessageLength?: number;
145
+ messageReviewHandler?: MessageReviewHandler;
146
+ tags?: Record<string, string>;
147
+ }
148
+ export interface ListRoomsRequest {
149
+ name?: string;
150
+ nextToken?: string;
151
+ maxResults?: number;
152
+ messageReviewHandlerUri?: string;
153
+ }
154
+ export interface RoomSummary {
155
+ arn?: string;
156
+ id?: string;
157
+ name?: string;
158
+ messageReviewHandler?: MessageReviewHandler;
159
+ createTime?: Date;
160
+ updateTime?: Date;
161
+ tags?: Record<string, string>;
162
+ }
163
+ export interface ListRoomsResponse {
164
+ rooms: RoomSummary[] | undefined;
165
+ nextToken?: string;
166
+ }
167
+ export declare class InternalServerException extends __BaseException {
168
+ readonly name: "InternalServerException";
169
+ readonly $fault: "server";
170
+ constructor(
171
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
172
+ );
173
+ }
174
+ export interface ListTagsForResourceRequest {
175
+ resourceArn: string | undefined;
176
+ }
177
+ export interface ListTagsForResourceResponse {
178
+ tags: Record<string, string> | undefined;
179
+ }
180
+ export interface SendEventRequest {
181
+ roomIdentifier: string | undefined;
182
+ eventName: string | undefined;
183
+ attributes?: Record<string, string>;
184
+ }
185
+ export interface SendEventResponse {
186
+ id?: string;
187
+ }
188
+ export interface TagResourceRequest {
189
+ resourceArn: string | undefined;
190
+ tags: Record<string, string> | undefined;
191
+ }
192
+ export interface TagResourceResponse {}
193
+ export interface UntagResourceRequest {
194
+ resourceArn: string | undefined;
195
+ tagKeys: string[] | undefined;
196
+ }
197
+ export interface UntagResourceResponse {}
198
+ export interface UpdateRoomRequest {
199
+ identifier: string | undefined;
200
+ name?: string;
201
+ maximumMessageRatePerSecond?: number;
202
+ maximumMessageLength?: number;
203
+ messageReviewHandler?: MessageReviewHandler;
204
+ }
205
+ export interface UpdateRoomResponse {
206
+ arn?: string;
207
+ id?: string;
208
+ name?: string;
209
+ createTime?: Date;
210
+ updateTime?: Date;
211
+ maximumMessageRatePerSecond?: number;
212
+ maximumMessageLength?: number;
213
+ messageReviewHandler?: MessageReviewHandler;
214
+ tags?: Record<string, string>;
215
+ }
216
+ export declare const CreateChatTokenRequestFilterSensitiveLog: (
217
+ obj: CreateChatTokenRequest
218
+ ) => any;
219
+ export declare const CreateChatTokenResponseFilterSensitiveLog: (
220
+ obj: CreateChatTokenResponse
221
+ ) => any;
222
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (
223
+ obj: ValidationExceptionField
224
+ ) => any;
225
+ export declare const MessageReviewHandlerFilterSensitiveLog: (
226
+ obj: MessageReviewHandler
227
+ ) => any;
228
+ export declare const CreateRoomRequestFilterSensitiveLog: (
229
+ obj: CreateRoomRequest
230
+ ) => any;
231
+ export declare const CreateRoomResponseFilterSensitiveLog: (
232
+ obj: CreateRoomResponse
233
+ ) => any;
234
+ export declare const DeleteMessageRequestFilterSensitiveLog: (
235
+ obj: DeleteMessageRequest
236
+ ) => any;
237
+ export declare const DeleteMessageResponseFilterSensitiveLog: (
238
+ obj: DeleteMessageResponse
239
+ ) => any;
240
+ export declare const DeleteRoomRequestFilterSensitiveLog: (
241
+ obj: DeleteRoomRequest
242
+ ) => any;
243
+ export declare const DisconnectUserRequestFilterSensitiveLog: (
244
+ obj: DisconnectUserRequest
245
+ ) => any;
246
+ export declare const DisconnectUserResponseFilterSensitiveLog: (
247
+ obj: DisconnectUserResponse
248
+ ) => any;
249
+ export declare const GetRoomRequestFilterSensitiveLog: (
250
+ obj: GetRoomRequest
251
+ ) => any;
252
+ export declare const GetRoomResponseFilterSensitiveLog: (
253
+ obj: GetRoomResponse
254
+ ) => any;
255
+ export declare const ListRoomsRequestFilterSensitiveLog: (
256
+ obj: ListRoomsRequest
257
+ ) => any;
258
+ export declare const RoomSummaryFilterSensitiveLog: (obj: RoomSummary) => any;
259
+ export declare const ListRoomsResponseFilterSensitiveLog: (
260
+ obj: ListRoomsResponse
261
+ ) => any;
262
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
263
+ obj: ListTagsForResourceRequest
264
+ ) => any;
265
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
266
+ obj: ListTagsForResourceResponse
267
+ ) => any;
268
+ export declare const SendEventRequestFilterSensitiveLog: (
269
+ obj: SendEventRequest
270
+ ) => any;
271
+ export declare const SendEventResponseFilterSensitiveLog: (
272
+ obj: SendEventResponse
273
+ ) => any;
274
+ export declare const TagResourceRequestFilterSensitiveLog: (
275
+ obj: TagResourceRequest
276
+ ) => any;
277
+ export declare const TagResourceResponseFilterSensitiveLog: (
278
+ obj: TagResourceResponse
279
+ ) => any;
280
+ export declare const UntagResourceRequestFilterSensitiveLog: (
281
+ obj: UntagResourceRequest
282
+ ) => any;
283
+ export declare const UntagResourceResponseFilterSensitiveLog: (
284
+ obj: UntagResourceResponse
285
+ ) => any;
286
+ export declare const UpdateRoomRequestFilterSensitiveLog: (
287
+ obj: UpdateRoomRequest
288
+ ) => any;
289
+ export declare const UpdateRoomResponseFilterSensitiveLog: (
290
+ obj: UpdateRoomResponse
291
+ ) => any;