@aws-sdk/client-ivschat 3.131.0 → 3.137.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 +11 -0
  2. package/dist-cjs/commands/CreateChatTokenCommand.js +2 -2
  3. package/dist-cjs/commands/CreateRoomCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteMessageCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteRoomCommand.js +1 -1
  6. package/dist-cjs/commands/DisconnectUserCommand.js +2 -2
  7. package/dist-cjs/commands/GetRoomCommand.js +2 -2
  8. package/dist-cjs/commands/ListRoomsCommand.js +2 -2
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  10. package/dist-cjs/commands/SendEventCommand.js +2 -2
  11. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  12. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  13. package/dist-cjs/commands/UpdateRoomCommand.js +2 -2
  14. package/dist-cjs/models/models_0.js +105 -157
  15. package/dist-es/commands/CreateChatTokenCommand.js +3 -3
  16. package/dist-es/commands/CreateRoomCommand.js +3 -3
  17. package/dist-es/commands/DeleteMessageCommand.js +3 -3
  18. package/dist-es/commands/DeleteRoomCommand.js +2 -2
  19. package/dist-es/commands/DisconnectUserCommand.js +3 -3
  20. package/dist-es/commands/GetRoomCommand.js +3 -3
  21. package/dist-es/commands/ListRoomsCommand.js +3 -3
  22. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  23. package/dist-es/commands/SendEventCommand.js +3 -3
  24. package/dist-es/commands/TagResourceCommand.js +3 -3
  25. package/dist-es/commands/UntagResourceCommand.js +3 -3
  26. package/dist-es/commands/UpdateRoomCommand.js +3 -3
  27. package/dist-es/models/models_0.js +26 -104
  28. package/dist-types/models/models_0.d.ts +104 -156
  29. package/dist-types/ts3.4/models/models_0.d.ts +52 -104
  30. package/package.json +6 -6
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { SendEventRequest, SendEventResponse } from "../models/models_0";
4
+ import { SendEventRequestFilterSensitiveLog, SendEventResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1SendEventCommand, serializeAws_restJson1SendEventCommand, } from "../protocols/Aws_restJson1";
6
6
  var SendEventCommand = (function (_super) {
7
7
  __extends(SendEventCommand, _super);
@@ -20,8 +20,8 @@ var SendEventCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: SendEventRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: SendEventResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: SendEventRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: SendEventResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
4
+ import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
6
6
  var TagResourceCommand = (function (_super) {
7
7
  __extends(TagResourceCommand, _super);
@@ -20,8 +20,8 @@ var TagResourceCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: TagResourceRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: TagResourceResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
4
+ import { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
6
6
  var UntagResourceCommand = (function (_super) {
7
7
  __extends(UntagResourceCommand, _super);
@@ -20,8 +20,8 @@ var UntagResourceCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: UntagResourceRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: UntagResourceResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -1,7 +1,7 @@
1
1
  import { __extends } from "tslib";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { UpdateRoomRequest, UpdateRoomResponse } from "../models/models_0";
4
+ import { UpdateRoomRequestFilterSensitiveLog, UpdateRoomResponseFilterSensitiveLog, } from "../models/models_0";
5
5
  import { deserializeAws_restJson1UpdateRoomCommand, serializeAws_restJson1UpdateRoomCommand, } from "../protocols/Aws_restJson1";
6
6
  var UpdateRoomCommand = (function (_super) {
7
7
  __extends(UpdateRoomCommand, _super);
@@ -20,8 +20,8 @@ var UpdateRoomCommand = (function (_super) {
20
20
  logger: logger,
21
21
  clientName: clientName,
22
22
  commandName: commandName,
23
- inputFilterSensitiveLog: UpdateRoomRequest.filterSensitiveLog,
24
- outputFilterSensitiveLog: UpdateRoomResponse.filterSensitiveLog,
23
+ inputFilterSensitiveLog: UpdateRoomRequestFilterSensitiveLog,
24
+ outputFilterSensitiveLog: UpdateRoomResponseFilterSensitiveLog,
25
25
  };
26
26
  var requestHandler = configuration.requestHandler;
27
27
  return stack.resolve(function (request) {
@@ -18,14 +18,6 @@ export var ChatTokenCapability;
18
18
  ChatTokenCapability["DISCONNECT_USER"] = "DISCONNECT_USER";
19
19
  ChatTokenCapability["SEND_MESSAGE"] = "SEND_MESSAGE";
20
20
  })(ChatTokenCapability || (ChatTokenCapability = {}));
21
- export var CreateChatTokenRequest;
22
- (function (CreateChatTokenRequest) {
23
- CreateChatTokenRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
24
- })(CreateChatTokenRequest || (CreateChatTokenRequest = {}));
25
- export var CreateChatTokenResponse;
26
- (function (CreateChatTokenResponse) {
27
- CreateChatTokenResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
28
- })(CreateChatTokenResponse || (CreateChatTokenResponse = {}));
29
21
  var PendingVerification = (function (_super) {
30
22
  __extends(PendingVerification, _super);
31
23
  function PendingVerification(opts) {
@@ -56,10 +48,6 @@ var ResourceNotFoundException = (function (_super) {
56
48
  return ResourceNotFoundException;
57
49
  }(__BaseException));
58
50
  export { ResourceNotFoundException };
59
- export var ValidationExceptionField;
60
- (function (ValidationExceptionField) {
61
- ValidationExceptionField.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
62
- })(ValidationExceptionField || (ValidationExceptionField = {}));
63
51
  export var ValidationExceptionReason;
64
52
  (function (ValidationExceptionReason) {
65
53
  ValidationExceptionReason["FIELD_VALIDATION_FAILED"] = "FIELD_VALIDATION_FAILED";
@@ -99,18 +87,6 @@ export var FallbackResult;
99
87
  FallbackResult["ALLOW"] = "ALLOW";
100
88
  FallbackResult["DENY"] = "DENY";
101
89
  })(FallbackResult || (FallbackResult = {}));
102
- export var MessageReviewHandler;
103
- (function (MessageReviewHandler) {
104
- MessageReviewHandler.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
105
- })(MessageReviewHandler || (MessageReviewHandler = {}));
106
- export var CreateRoomRequest;
107
- (function (CreateRoomRequest) {
108
- CreateRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
109
- })(CreateRoomRequest || (CreateRoomRequest = {}));
110
- export var CreateRoomResponse;
111
- (function (CreateRoomResponse) {
112
- CreateRoomResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
113
- })(CreateRoomResponse || (CreateRoomResponse = {}));
114
90
  var ServiceQuotaExceededException = (function (_super) {
115
91
  __extends(ServiceQuotaExceededException, _super);
116
92
  function ServiceQuotaExceededException(opts) {
@@ -126,14 +102,6 @@ var ServiceQuotaExceededException = (function (_super) {
126
102
  return ServiceQuotaExceededException;
127
103
  }(__BaseException));
128
104
  export { ServiceQuotaExceededException };
129
- export var DeleteMessageRequest;
130
- (function (DeleteMessageRequest) {
131
- DeleteMessageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
132
- })(DeleteMessageRequest || (DeleteMessageRequest = {}));
133
- export var DeleteMessageResponse;
134
- (function (DeleteMessageResponse) {
135
- DeleteMessageResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
- })(DeleteMessageResponse || (DeleteMessageResponse = {}));
137
105
  var ThrottlingException = (function (_super) {
138
106
  __extends(ThrottlingException, _super);
139
107
  function ThrottlingException(opts) {
@@ -149,38 +117,6 @@ var ThrottlingException = (function (_super) {
149
117
  return ThrottlingException;
150
118
  }(__BaseException));
151
119
  export { ThrottlingException };
152
- export var DeleteRoomRequest;
153
- (function (DeleteRoomRequest) {
154
- DeleteRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
- })(DeleteRoomRequest || (DeleteRoomRequest = {}));
156
- export var DisconnectUserRequest;
157
- (function (DisconnectUserRequest) {
158
- DisconnectUserRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
- })(DisconnectUserRequest || (DisconnectUserRequest = {}));
160
- export var DisconnectUserResponse;
161
- (function (DisconnectUserResponse) {
162
- DisconnectUserResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
- })(DisconnectUserResponse || (DisconnectUserResponse = {}));
164
- export var GetRoomRequest;
165
- (function (GetRoomRequest) {
166
- GetRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- })(GetRoomRequest || (GetRoomRequest = {}));
168
- export var GetRoomResponse;
169
- (function (GetRoomResponse) {
170
- GetRoomResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- })(GetRoomResponse || (GetRoomResponse = {}));
172
- export var ListRoomsRequest;
173
- (function (ListRoomsRequest) {
174
- ListRoomsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
175
- })(ListRoomsRequest || (ListRoomsRequest = {}));
176
- export var RoomSummary;
177
- (function (RoomSummary) {
178
- RoomSummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- })(RoomSummary || (RoomSummary = {}));
180
- export var ListRoomsResponse;
181
- (function (ListRoomsResponse) {
182
- ListRoomsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
183
- })(ListRoomsResponse || (ListRoomsResponse = {}));
184
120
  var InternalServerException = (function (_super) {
185
121
  __extends(InternalServerException, _super);
186
122
  function InternalServerException(opts) {
@@ -193,43 +129,29 @@ var InternalServerException = (function (_super) {
193
129
  return InternalServerException;
194
130
  }(__BaseException));
195
131
  export { InternalServerException };
196
- export var ListTagsForResourceRequest;
197
- (function (ListTagsForResourceRequest) {
198
- ListTagsForResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- })(ListTagsForResourceRequest || (ListTagsForResourceRequest = {}));
200
- export var ListTagsForResourceResponse;
201
- (function (ListTagsForResourceResponse) {
202
- ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- })(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
204
- export var SendEventRequest;
205
- (function (SendEventRequest) {
206
- SendEventRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- })(SendEventRequest || (SendEventRequest = {}));
208
- export var SendEventResponse;
209
- (function (SendEventResponse) {
210
- SendEventResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- })(SendEventResponse || (SendEventResponse = {}));
212
- export var TagResourceRequest;
213
- (function (TagResourceRequest) {
214
- TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- })(TagResourceRequest || (TagResourceRequest = {}));
216
- export var TagResourceResponse;
217
- (function (TagResourceResponse) {
218
- TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- })(TagResourceResponse || (TagResourceResponse = {}));
220
- export var UntagResourceRequest;
221
- (function (UntagResourceRequest) {
222
- UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- })(UntagResourceRequest || (UntagResourceRequest = {}));
224
- export var UntagResourceResponse;
225
- (function (UntagResourceResponse) {
226
- UntagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- })(UntagResourceResponse || (UntagResourceResponse = {}));
228
- export var UpdateRoomRequest;
229
- (function (UpdateRoomRequest) {
230
- UpdateRoomRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
231
- })(UpdateRoomRequest || (UpdateRoomRequest = {}));
232
- export var UpdateRoomResponse;
233
- (function (UpdateRoomResponse) {
234
- UpdateRoomResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- })(UpdateRoomResponse || (UpdateRoomResponse = {}));
132
+ export var CreateChatTokenRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
133
+ export var CreateChatTokenResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
+ export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
+ export var MessageReviewHandlerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
+ export var CreateRoomRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
137
+ export var CreateRoomResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
+ export var DeleteMessageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
139
+ export var DeleteMessageResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
140
+ export var DeleteRoomRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
141
+ export var DisconnectUserRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
+ export var DisconnectUserResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
143
+ export var GetRoomRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
144
+ export var GetRoomResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
145
+ export var ListRoomsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
+ export var RoomSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
+ export var ListRoomsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
+ export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
+ export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
+ export var SendEventRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
+ export var SendEventResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
152
+ export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
+ export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
+ export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
+ export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
+ export var UpdateRoomRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
+ export var UpdateRoomResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -44,12 +44,6 @@ export interface CreateChatTokenRequest {
44
44
  */
45
45
  attributes?: Record<string, string>;
46
46
  }
47
- export declare namespace CreateChatTokenRequest {
48
- /**
49
- * @internal
50
- */
51
- const filterSensitiveLog: (obj: CreateChatTokenRequest) => any;
52
- }
53
47
  export interface CreateChatTokenResponse {
54
48
  /**
55
49
  * <p>The issued client token, encrypted.</p>
@@ -67,12 +61,6 @@ export interface CreateChatTokenResponse {
67
61
  */
68
62
  sessionExpirationTime?: Date;
69
63
  }
70
- export declare namespace CreateChatTokenResponse {
71
- /**
72
- * @internal
73
- */
74
- const filterSensitiveLog: (obj: CreateChatTokenResponse) => any;
75
- }
76
64
  /**
77
65
  * <p/>
78
66
  */
@@ -119,12 +107,6 @@ export interface ValidationExceptionField {
119
107
  */
120
108
  message: string | undefined;
121
109
  }
122
- export declare namespace ValidationExceptionField {
123
- /**
124
- * @internal
125
- */
126
- const filterSensitiveLog: (obj: ValidationExceptionField) => any;
127
- }
128
110
  export declare enum ValidationExceptionReason {
129
111
  FIELD_VALIDATION_FAILED = "FIELD_VALIDATION_FAILED",
130
112
  OTHER = "OTHER",
@@ -188,12 +170,6 @@ export interface MessageReviewHandler {
188
170
  */
189
171
  fallbackResult?: FallbackResult | string;
190
172
  }
191
- export declare namespace MessageReviewHandler {
192
- /**
193
- * @internal
194
- */
195
- const filterSensitiveLog: (obj: MessageReviewHandler) => any;
196
- }
197
173
  export interface CreateRoomRequest {
198
174
  /**
199
175
  * <p>Room name. The value does not need to be unique.</p>
@@ -220,12 +196,6 @@ export interface CreateRoomRequest {
220
196
  */
221
197
  tags?: Record<string, string>;
222
198
  }
223
- export declare namespace CreateRoomRequest {
224
- /**
225
- * @internal
226
- */
227
- const filterSensitiveLog: (obj: CreateRoomRequest) => any;
228
- }
229
199
  export interface CreateRoomResponse {
230
200
  /**
231
201
  * <p>Room ARN, assigned by the system.</p>
@@ -268,12 +238,6 @@ export interface CreateRoomResponse {
268
238
  */
269
239
  tags?: Record<string, string>;
270
240
  }
271
- export declare namespace CreateRoomResponse {
272
- /**
273
- * @internal
274
- */
275
- const filterSensitiveLog: (obj: CreateRoomResponse) => any;
276
- }
277
241
  /**
278
242
  * <p/>
279
243
  */
@@ -314,24 +278,12 @@ export interface DeleteMessageRequest {
314
278
  */
315
279
  reason?: string;
316
280
  }
317
- export declare namespace DeleteMessageRequest {
318
- /**
319
- * @internal
320
- */
321
- const filterSensitiveLog: (obj: DeleteMessageRequest) => any;
322
- }
323
281
  export interface DeleteMessageResponse {
324
282
  /**
325
283
  * <p>Operation identifier, generated by Amazon IVS Chat.</p>
326
284
  */
327
285
  id?: string;
328
286
  }
329
- export declare namespace DeleteMessageResponse {
330
- /**
331
- * @internal
332
- */
333
- const filterSensitiveLog: (obj: DeleteMessageResponse) => any;
334
- }
335
287
  /**
336
288
  * <p/>
337
289
  */
@@ -361,12 +313,6 @@ export interface DeleteRoomRequest {
361
313
  */
362
314
  identifier: string | undefined;
363
315
  }
364
- export declare namespace DeleteRoomRequest {
365
- /**
366
- * @internal
367
- */
368
- const filterSensitiveLog: (obj: DeleteRoomRequest) => any;
369
- }
370
316
  export interface DisconnectUserRequest {
371
317
  /**
372
318
  * <p>Identifier of the room from which the user's clients should be disconnected. Currently
@@ -382,20 +328,8 @@ export interface DisconnectUserRequest {
382
328
  */
383
329
  reason?: string;
384
330
  }
385
- export declare namespace DisconnectUserRequest {
386
- /**
387
- * @internal
388
- */
389
- const filterSensitiveLog: (obj: DisconnectUserRequest) => any;
390
- }
391
331
  export interface DisconnectUserResponse {
392
332
  }
393
- export declare namespace DisconnectUserResponse {
394
- /**
395
- * @internal
396
- */
397
- const filterSensitiveLog: (obj: DisconnectUserResponse) => any;
398
- }
399
333
  export interface GetRoomRequest {
400
334
  /**
401
335
  * <p>Identifier of the room for which the configuration is to be retrieved. Currently this
@@ -403,12 +337,6 @@ export interface GetRoomRequest {
403
337
  */
404
338
  identifier: string | undefined;
405
339
  }
406
- export declare namespace GetRoomRequest {
407
- /**
408
- * @internal
409
- */
410
- const filterSensitiveLog: (obj: GetRoomRequest) => any;
411
- }
412
340
  export interface GetRoomResponse {
413
341
  /**
414
342
  * <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
@@ -454,12 +382,6 @@ export interface GetRoomResponse {
454
382
  */
455
383
  tags?: Record<string, string>;
456
384
  }
457
- export declare namespace GetRoomResponse {
458
- /**
459
- * @internal
460
- */
461
- const filterSensitiveLog: (obj: GetRoomResponse) => any;
462
- }
463
385
  export interface ListRoomsRequest {
464
386
  /**
465
387
  * <p>Filters the list to match the specified room name.</p>
@@ -479,12 +401,6 @@ export interface ListRoomsRequest {
479
401
  */
480
402
  messageReviewHandlerUri?: string;
481
403
  }
482
- export declare namespace ListRoomsRequest {
483
- /**
484
- * @internal
485
- */
486
- const filterSensitiveLog: (obj: ListRoomsRequest) => any;
487
- }
488
404
  /**
489
405
  * <p>Summary information about a room.</p>
490
406
  */
@@ -521,12 +437,6 @@ export interface RoomSummary {
521
437
  */
522
438
  tags?: Record<string, string>;
523
439
  }
524
- export declare namespace RoomSummary {
525
- /**
526
- * @internal
527
- */
528
- const filterSensitiveLog: (obj: RoomSummary) => any;
529
- }
530
440
  export interface ListRoomsResponse {
531
441
  /**
532
442
  * <p>List of the matching rooms (summary information only).</p>
@@ -538,12 +448,6 @@ export interface ListRoomsResponse {
538
448
  */
539
449
  nextToken?: string;
540
450
  }
541
- export declare namespace ListRoomsResponse {
542
- /**
543
- * @internal
544
- */
545
- const filterSensitiveLog: (obj: ListRoomsResponse) => any;
546
- }
547
451
  /**
548
452
  * <p/>
549
453
  */
@@ -561,12 +465,6 @@ export interface ListTagsForResourceRequest {
561
465
  */
562
466
  resourceArn: string | undefined;
563
467
  }
564
- export declare namespace ListTagsForResourceRequest {
565
- /**
566
- * @internal
567
- */
568
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
569
- }
570
468
  export interface ListTagsForResourceResponse {
571
469
  /**
572
470
  * <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
@@ -574,12 +472,6 @@ export interface ListTagsForResourceResponse {
574
472
  */
575
473
  tags: Record<string, string> | undefined;
576
474
  }
577
- export declare namespace ListTagsForResourceResponse {
578
- /**
579
- * @internal
580
- */
581
- const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
582
- }
583
475
  export interface SendEventRequest {
584
476
  /**
585
477
  * <p>Identifier of the room to which the event will be sent. Currently this must be an
@@ -596,12 +488,6 @@ export interface SendEventRequest {
596
488
  */
597
489
  attributes?: Record<string, string>;
598
490
  }
599
- export declare namespace SendEventRequest {
600
- /**
601
- * @internal
602
- */
603
- const filterSensitiveLog: (obj: SendEventRequest) => any;
604
- }
605
491
  export interface SendEventResponse {
606
492
  /**
607
493
  * <p>An identifier generated by Amazon IVS Chat. This identifier must be used in subsequent
@@ -609,12 +495,6 @@ export interface SendEventResponse {
609
495
  */
610
496
  id?: string;
611
497
  }
612
- export declare namespace SendEventResponse {
613
- /**
614
- * @internal
615
- */
616
- const filterSensitiveLog: (obj: SendEventResponse) => any;
617
- }
618
498
  export interface TagResourceRequest {
619
499
  /**
620
500
  * <p>The ARN of the resource to be tagged. The ARN must be URL-encoded.</p>
@@ -625,20 +505,8 @@ export interface TagResourceRequest {
625
505
  */
626
506
  tags: Record<string, string> | undefined;
627
507
  }
628
- export declare namespace TagResourceRequest {
629
- /**
630
- * @internal
631
- */
632
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
633
- }
634
508
  export interface TagResourceResponse {
635
509
  }
636
- export declare namespace TagResourceResponse {
637
- /**
638
- * @internal
639
- */
640
- const filterSensitiveLog: (obj: TagResourceResponse) => any;
641
- }
642
510
  export interface UntagResourceRequest {
643
511
  /**
644
512
  * <p>The ARN of the resource to be untagged. The ARN must be URL-encoded.</p>
@@ -649,20 +517,8 @@ export interface UntagResourceRequest {
649
517
  */
650
518
  tagKeys: string[] | undefined;
651
519
  }
652
- export declare namespace UntagResourceRequest {
653
- /**
654
- * @internal
655
- */
656
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
657
- }
658
520
  export interface UntagResourceResponse {
659
521
  }
660
- export declare namespace UntagResourceResponse {
661
- /**
662
- * @internal
663
- */
664
- const filterSensitiveLog: (obj: UntagResourceResponse) => any;
665
- }
666
522
  export interface UpdateRoomRequest {
667
523
  /**
668
524
  * <p>Identifier of the room to be updated. Currently this must be an ARN.</p>
@@ -690,12 +546,6 @@ export interface UpdateRoomRequest {
690
546
  */
691
547
  messageReviewHandler?: MessageReviewHandler;
692
548
  }
693
- export declare namespace UpdateRoomRequest {
694
- /**
695
- * @internal
696
- */
697
- const filterSensitiveLog: (obj: UpdateRoomRequest) => any;
698
- }
699
549
  export interface UpdateRoomResponse {
700
550
  /**
701
551
  * <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
@@ -737,9 +587,107 @@ export interface UpdateRoomResponse {
737
587
  */
738
588
  tags?: Record<string, string>;
739
589
  }
740
- export declare namespace UpdateRoomResponse {
741
- /**
742
- * @internal
743
- */
744
- const filterSensitiveLog: (obj: UpdateRoomResponse) => any;
745
- }
590
+ /**
591
+ * @internal
592
+ */
593
+ export declare const CreateChatTokenRequestFilterSensitiveLog: (obj: CreateChatTokenRequest) => any;
594
+ /**
595
+ * @internal
596
+ */
597
+ export declare const CreateChatTokenResponseFilterSensitiveLog: (obj: CreateChatTokenResponse) => any;
598
+ /**
599
+ * @internal
600
+ */
601
+ export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
602
+ /**
603
+ * @internal
604
+ */
605
+ export declare const MessageReviewHandlerFilterSensitiveLog: (obj: MessageReviewHandler) => any;
606
+ /**
607
+ * @internal
608
+ */
609
+ export declare const CreateRoomRequestFilterSensitiveLog: (obj: CreateRoomRequest) => any;
610
+ /**
611
+ * @internal
612
+ */
613
+ export declare const CreateRoomResponseFilterSensitiveLog: (obj: CreateRoomResponse) => any;
614
+ /**
615
+ * @internal
616
+ */
617
+ export declare const DeleteMessageRequestFilterSensitiveLog: (obj: DeleteMessageRequest) => any;
618
+ /**
619
+ * @internal
620
+ */
621
+ export declare const DeleteMessageResponseFilterSensitiveLog: (obj: DeleteMessageResponse) => any;
622
+ /**
623
+ * @internal
624
+ */
625
+ export declare const DeleteRoomRequestFilterSensitiveLog: (obj: DeleteRoomRequest) => any;
626
+ /**
627
+ * @internal
628
+ */
629
+ export declare const DisconnectUserRequestFilterSensitiveLog: (obj: DisconnectUserRequest) => any;
630
+ /**
631
+ * @internal
632
+ */
633
+ export declare const DisconnectUserResponseFilterSensitiveLog: (obj: DisconnectUserResponse) => any;
634
+ /**
635
+ * @internal
636
+ */
637
+ export declare const GetRoomRequestFilterSensitiveLog: (obj: GetRoomRequest) => any;
638
+ /**
639
+ * @internal
640
+ */
641
+ export declare const GetRoomResponseFilterSensitiveLog: (obj: GetRoomResponse) => any;
642
+ /**
643
+ * @internal
644
+ */
645
+ export declare const ListRoomsRequestFilterSensitiveLog: (obj: ListRoomsRequest) => any;
646
+ /**
647
+ * @internal
648
+ */
649
+ export declare const RoomSummaryFilterSensitiveLog: (obj: RoomSummary) => any;
650
+ /**
651
+ * @internal
652
+ */
653
+ export declare const ListRoomsResponseFilterSensitiveLog: (obj: ListRoomsResponse) => any;
654
+ /**
655
+ * @internal
656
+ */
657
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
658
+ /**
659
+ * @internal
660
+ */
661
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
662
+ /**
663
+ * @internal
664
+ */
665
+ export declare const SendEventRequestFilterSensitiveLog: (obj: SendEventRequest) => any;
666
+ /**
667
+ * @internal
668
+ */
669
+ export declare const SendEventResponseFilterSensitiveLog: (obj: SendEventResponse) => any;
670
+ /**
671
+ * @internal
672
+ */
673
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
674
+ /**
675
+ * @internal
676
+ */
677
+ export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
678
+ /**
679
+ * @internal
680
+ */
681
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
682
+ /**
683
+ * @internal
684
+ */
685
+ export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
686
+ /**
687
+ * @internal
688
+ */
689
+ export declare const UpdateRoomRequestFilterSensitiveLog: (obj: UpdateRoomRequest) => any;
690
+ /**
691
+ * @internal
692
+ */
693
+ export declare const UpdateRoomResponseFilterSensitiveLog: (obj: UpdateRoomResponse) => any;