@aws-sdk/client-ivschat 3.686.0 → 3.691.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/dist-types/models/models_0.d.ts +108 -108
- package/dist-types/ts3.4/models/models_0.d.ts +108 -108
- package/package.json +7 -7
|
@@ -46,20 +46,20 @@ export interface CreateChatTokenRequest {
|
|
|
46
46
|
* capability to view messages is implicitly included in all requests).</p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
capabilities?: ChatTokenCapability[];
|
|
49
|
+
capabilities?: ChatTokenCapability[] | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* <p>Session duration (in minutes), after which the session expires. Default: 60 (1
|
|
52
52
|
* hour).</p>
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
sessionDurationInMinutes?: number;
|
|
55
|
+
sessionDurationInMinutes?: number | undefined;
|
|
56
56
|
/**
|
|
57
57
|
* <p>Application-provided attributes to encode into the token and attach to a chat session.
|
|
58
58
|
* Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1
|
|
59
59
|
* KB total.</p>
|
|
60
60
|
* @public
|
|
61
61
|
*/
|
|
62
|
-
attributes?: Record<string, string
|
|
62
|
+
attributes?: Record<string, string> | undefined;
|
|
63
63
|
}
|
|
64
64
|
/**
|
|
65
65
|
* @public
|
|
@@ -69,20 +69,20 @@ export interface CreateChatTokenResponse {
|
|
|
69
69
|
* <p>The issued client token, encrypted.</p>
|
|
70
70
|
* @public
|
|
71
71
|
*/
|
|
72
|
-
token?: string;
|
|
72
|
+
token?: string | undefined;
|
|
73
73
|
/**
|
|
74
74
|
* <p>Time after which the token is no longer valid and cannot be used to connect to a room.
|
|
75
75
|
* This is an ISO 8601 timestamp; <i>note that this is returned as a
|
|
76
76
|
* string</i>.</p>
|
|
77
77
|
* @public
|
|
78
78
|
*/
|
|
79
|
-
tokenExpirationTime?: Date;
|
|
79
|
+
tokenExpirationTime?: Date | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* <p>Time after which an end user's session is no longer valid. This is an ISO 8601
|
|
82
82
|
* timestamp; <i>note that this is returned as a string</i>.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
sessionExpirationTime?: Date;
|
|
85
|
+
sessionExpirationTime?: Date | undefined;
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* <p/>
|
|
@@ -174,7 +174,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
174
174
|
* <p/>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
fieldList?: ValidationExceptionField[];
|
|
177
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* @internal
|
|
180
180
|
*/
|
|
@@ -304,7 +304,7 @@ export interface CreateLoggingConfigurationRequest {
|
|
|
304
304
|
* <p>Logging-configuration name. The value does not need to be unique.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
name?: string;
|
|
307
|
+
name?: string | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
310
310
|
* logged. There can be only one type of destination (<code>cloudWatchLogs</code>,
|
|
@@ -319,7 +319,7 @@ export interface CreateLoggingConfigurationRequest {
|
|
|
319
319
|
* documented there.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
tags?: Record<string, string
|
|
322
|
+
tags?: Record<string, string> | undefined;
|
|
323
323
|
}
|
|
324
324
|
/**
|
|
325
325
|
* @public
|
|
@@ -340,30 +340,30 @@ export interface CreateLoggingConfigurationResponse {
|
|
|
340
340
|
* <p>Logging-configuration ARN, assigned by the system.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
arn?: string;
|
|
343
|
+
arn?: string | undefined;
|
|
344
344
|
/**
|
|
345
345
|
* <p>Logging-configuration ID, generated by the system. This is a relative identifier, the
|
|
346
346
|
* part of the ARN that uniquely identifies the logging configuration.</p>
|
|
347
347
|
* @public
|
|
348
348
|
*/
|
|
349
|
-
id?: string;
|
|
349
|
+
id?: string | undefined;
|
|
350
350
|
/**
|
|
351
351
|
* <p>Time when the logging configuration was created. This is an ISO 8601 timestamp;
|
|
352
352
|
* <i>note that this is returned as a string</i>.</p>
|
|
353
353
|
* @public
|
|
354
354
|
*/
|
|
355
|
-
createTime?: Date;
|
|
355
|
+
createTime?: Date | undefined;
|
|
356
356
|
/**
|
|
357
357
|
* <p>Time of the logging configuration’s last update. This is an ISO 8601 timestamp;
|
|
358
358
|
* <i>note that this is returned as a string</i>.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
updateTime?: Date;
|
|
361
|
+
updateTime?: Date | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* <p>Logging-configuration name, from the request (if specified).</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
name?: string;
|
|
366
|
+
name?: string | undefined;
|
|
367
367
|
/**
|
|
368
368
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
369
369
|
* logged, from the request. There is only one type of destination
|
|
@@ -371,19 +371,19 @@ export interface CreateLoggingConfigurationResponse {
|
|
|
371
371
|
* <code>destinationConfiguration</code>.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
374
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
|
|
377
377
|
* configuration is ready to log chat content.</p>
|
|
378
378
|
* @public
|
|
379
379
|
*/
|
|
380
|
-
state?: CreateLoggingConfigurationState;
|
|
380
|
+
state?: CreateLoggingConfigurationState | undefined;
|
|
381
381
|
/**
|
|
382
382
|
* <p>Tags attached to the resource, from the request (if specified). Array of maps, each of
|
|
383
383
|
* the form <code>string:string (key:value)</code>.</p>
|
|
384
384
|
* @public
|
|
385
385
|
*/
|
|
386
|
-
tags?: Record<string, string
|
|
386
|
+
tags?: Record<string, string> | undefined;
|
|
387
387
|
}
|
|
388
388
|
/**
|
|
389
389
|
* <p/>
|
|
@@ -434,7 +434,7 @@ export interface MessageReviewHandler {
|
|
|
434
434
|
* function.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
uri?: string;
|
|
437
|
+
uri?: string | undefined;
|
|
438
438
|
/**
|
|
439
439
|
* <p>Specifies the fallback behavior (whether the message is allowed or denied) if the handler
|
|
440
440
|
* does not return a valid response, encounters an error, or times out. (For the timeout period,
|
|
@@ -444,7 +444,7 @@ export interface MessageReviewHandler {
|
|
|
444
444
|
* <code>ALLOW</code>.</p>
|
|
445
445
|
* @public
|
|
446
446
|
*/
|
|
447
|
-
fallbackResult?: FallbackResult;
|
|
447
|
+
fallbackResult?: FallbackResult | undefined;
|
|
448
448
|
}
|
|
449
449
|
/**
|
|
450
450
|
* @public
|
|
@@ -454,37 +454,37 @@ export interface CreateRoomRequest {
|
|
|
454
454
|
* <p>Room name. The value does not need to be unique.</p>
|
|
455
455
|
* @public
|
|
456
456
|
*/
|
|
457
|
-
name?: string;
|
|
457
|
+
name?: string | undefined;
|
|
458
458
|
/**
|
|
459
459
|
* <p>Maximum number of messages per second that can be sent to the room (by all clients).
|
|
460
460
|
* Default: 10. </p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
maximumMessageRatePerSecond?: number;
|
|
463
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>Maximum number of characters in a single message. Messages are expected to be UTF-8
|
|
466
466
|
* encoded and this limit applies specifically to rune/code-point count, not number of bytes.
|
|
467
467
|
* Default: 500.</p>
|
|
468
468
|
* @public
|
|
469
469
|
*/
|
|
470
|
-
maximumMessageLength?: number;
|
|
470
|
+
maximumMessageLength?: number | undefined;
|
|
471
471
|
/**
|
|
472
472
|
* <p>Configuration information for optional review of messages.</p>
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
475
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
476
476
|
/**
|
|
477
477
|
* <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
|
|
478
478
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
|
|
479
479
|
* there.</p>
|
|
480
480
|
* @public
|
|
481
481
|
*/
|
|
482
|
-
tags?: Record<string, string
|
|
482
|
+
tags?: Record<string, string> | undefined;
|
|
483
483
|
/**
|
|
484
484
|
* <p>Array of logging-configuration identifiers attached to the room.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
loggingConfigurationIdentifiers?: string[];
|
|
487
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
490
|
* @public
|
|
@@ -494,58 +494,58 @@ export interface CreateRoomResponse {
|
|
|
494
494
|
* <p>Room ARN, assigned by the system.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
arn?: string;
|
|
497
|
+
arn?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>Room ID, generated by the system. This is a relative identifier, the part of the ARN
|
|
500
500
|
* that uniquely identifies the room.</p>
|
|
501
501
|
* @public
|
|
502
502
|
*/
|
|
503
|
-
id?: string;
|
|
503
|
+
id?: string | undefined;
|
|
504
504
|
/**
|
|
505
505
|
* <p>Room name, from the request (if specified).</p>
|
|
506
506
|
* @public
|
|
507
507
|
*/
|
|
508
|
-
name?: string;
|
|
508
|
+
name?: string | undefined;
|
|
509
509
|
/**
|
|
510
510
|
* <p>Time when the room was created. This is an ISO 8601 timestamp; <i>note that this
|
|
511
511
|
* is returned as a string</i>.</p>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
createTime?: Date;
|
|
514
|
+
createTime?: Date | undefined;
|
|
515
515
|
/**
|
|
516
516
|
* <p>Time of the room’s last update. This is an ISO 8601 timestamp; <i>note that this
|
|
517
517
|
* is returned as a string</i>.</p>
|
|
518
518
|
* @public
|
|
519
519
|
*/
|
|
520
|
-
updateTime?: Date;
|
|
520
|
+
updateTime?: Date | undefined;
|
|
521
521
|
/**
|
|
522
522
|
* <p>Maximum number of messages per second that can be sent to the room (by all clients),
|
|
523
523
|
* from the request (if specified).</p>
|
|
524
524
|
* @public
|
|
525
525
|
*/
|
|
526
|
-
maximumMessageRatePerSecond?: number;
|
|
526
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
527
527
|
/**
|
|
528
528
|
* <p>Maximum number of characters in a single message, from the request (if
|
|
529
529
|
* specified).</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
maximumMessageLength?: number;
|
|
532
|
+
maximumMessageLength?: number | undefined;
|
|
533
533
|
/**
|
|
534
534
|
* <p>Configuration information for optional review of messages.</p>
|
|
535
535
|
* @public
|
|
536
536
|
*/
|
|
537
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
537
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* <p>Tags attached to the resource, from the request (if specified).</p>
|
|
540
540
|
* @public
|
|
541
541
|
*/
|
|
542
|
-
tags?: Record<string, string
|
|
542
|
+
tags?: Record<string, string> | undefined;
|
|
543
543
|
/**
|
|
544
544
|
* <p>Array of logging configurations attached to the room, from the request (if
|
|
545
545
|
* specified).</p>
|
|
546
546
|
* @public
|
|
547
547
|
*/
|
|
548
|
-
loggingConfigurationIdentifiers?: string[];
|
|
548
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
549
549
|
}
|
|
550
550
|
/**
|
|
551
551
|
* @public
|
|
@@ -578,7 +578,7 @@ export interface DeleteMessageRequest {
|
|
|
578
578
|
* <p>Reason for deleting the message.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
reason?: string;
|
|
581
|
+
reason?: string | undefined;
|
|
582
582
|
}
|
|
583
583
|
/**
|
|
584
584
|
* @public
|
|
@@ -588,7 +588,7 @@ export interface DeleteMessageResponse {
|
|
|
588
588
|
* <p>Operation identifier, generated by Amazon IVS Chat.</p>
|
|
589
589
|
* @public
|
|
590
590
|
*/
|
|
591
|
-
id?: string;
|
|
591
|
+
id?: string | undefined;
|
|
592
592
|
}
|
|
593
593
|
/**
|
|
594
594
|
* <p/>
|
|
@@ -646,7 +646,7 @@ export interface DisconnectUserRequest {
|
|
|
646
646
|
* <p>Reason for disconnecting the user.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
reason?: string;
|
|
649
|
+
reason?: string | undefined;
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
652
652
|
* @public
|
|
@@ -689,30 +689,30 @@ export interface GetLoggingConfigurationResponse {
|
|
|
689
689
|
* ARN).</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
arn?: string;
|
|
692
|
+
arn?: string | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>Logging-configuration ID, generated by the system. This is a relative identifier, the
|
|
695
695
|
* part of the ARN that uniquely identifies the logging configuration.</p>
|
|
696
696
|
* @public
|
|
697
697
|
*/
|
|
698
|
-
id?: string;
|
|
698
|
+
id?: string | undefined;
|
|
699
699
|
/**
|
|
700
700
|
* <p>Time when the logging configuration was created. This is an ISO 8601 timestamp;
|
|
701
701
|
* <i>note that this is returned as a string</i>.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
createTime?: Date;
|
|
704
|
+
createTime?: Date | undefined;
|
|
705
705
|
/**
|
|
706
706
|
* <p>Time of the logging configuration’s last update. This is an ISO 8601 timestamp;
|
|
707
707
|
* <i>note that this is returned as a string</i>.</p>
|
|
708
708
|
* @public
|
|
709
709
|
*/
|
|
710
|
-
updateTime?: Date;
|
|
710
|
+
updateTime?: Date | undefined;
|
|
711
711
|
/**
|
|
712
712
|
* <p>Logging-configuration name. This value does not need to be unique.</p>
|
|
713
713
|
* @public
|
|
714
714
|
*/
|
|
715
|
-
name?: string;
|
|
715
|
+
name?: string | undefined;
|
|
716
716
|
/**
|
|
717
717
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
718
718
|
* logged. There is only one type of destination (<code>cloudWatchLogs</code>,
|
|
@@ -720,19 +720,19 @@ export interface GetLoggingConfigurationResponse {
|
|
|
720
720
|
* <code>destinationConfiguration</code>.</p>
|
|
721
721
|
* @public
|
|
722
722
|
*/
|
|
723
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
723
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
724
724
|
/**
|
|
725
725
|
* <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
|
|
726
726
|
* configuration is ready to log chat content.</p>
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
state?: LoggingConfigurationState;
|
|
729
|
+
state?: LoggingConfigurationState | undefined;
|
|
730
730
|
/**
|
|
731
731
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
732
732
|
* (key:value)</code>.</p>
|
|
733
733
|
* @public
|
|
734
734
|
*/
|
|
735
|
-
tags?: Record<string, string
|
|
735
|
+
tags?: Record<string, string> | undefined;
|
|
736
736
|
}
|
|
737
737
|
/**
|
|
738
738
|
* @public
|
|
@@ -753,59 +753,59 @@ export interface GetRoomResponse {
|
|
|
753
753
|
* <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
|
|
754
754
|
* @public
|
|
755
755
|
*/
|
|
756
|
-
arn?: string;
|
|
756
|
+
arn?: string | undefined;
|
|
757
757
|
/**
|
|
758
758
|
* <p>Room ID, generated by the system. This is a relative identifier, the part of the ARN
|
|
759
759
|
* that uniquely identifies the room.</p>
|
|
760
760
|
* @public
|
|
761
761
|
*/
|
|
762
|
-
id?: string;
|
|
762
|
+
id?: string | undefined;
|
|
763
763
|
/**
|
|
764
764
|
* <p>Room name. The value does not need to be unique.</p>
|
|
765
765
|
* @public
|
|
766
766
|
*/
|
|
767
|
-
name?: string;
|
|
767
|
+
name?: string | undefined;
|
|
768
768
|
/**
|
|
769
769
|
* <p>Time when the room was created. This is an ISO 8601 timestamp; <i>note that this
|
|
770
770
|
* is returned as a string</i>.</p>
|
|
771
771
|
* @public
|
|
772
772
|
*/
|
|
773
|
-
createTime?: Date;
|
|
773
|
+
createTime?: Date | undefined;
|
|
774
774
|
/**
|
|
775
775
|
* <p>Time of the room’s last update. This is an ISO 8601 timestamp; <i>note that this
|
|
776
776
|
* is returned as a string</i>.</p>
|
|
777
777
|
* @public
|
|
778
778
|
*/
|
|
779
|
-
updateTime?: Date;
|
|
779
|
+
updateTime?: Date | undefined;
|
|
780
780
|
/**
|
|
781
781
|
* <p>Maximum number of messages per second that can be sent to the room (by all clients).
|
|
782
782
|
* Default: 10.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
maximumMessageRatePerSecond?: number;
|
|
785
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>Maximum number of characters in a single message. Messages are expected to be UTF-8
|
|
788
788
|
* encoded and this limit applies specifically to rune/code-point count, not number of bytes.
|
|
789
789
|
* Default: 500.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
maximumMessageLength?: number;
|
|
792
|
+
maximumMessageLength?: number | undefined;
|
|
793
793
|
/**
|
|
794
794
|
* <p>Configuration information for optional review of messages.</p>
|
|
795
795
|
* @public
|
|
796
796
|
*/
|
|
797
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
797
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
798
798
|
/**
|
|
799
799
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
800
800
|
* (key:value)</code>.</p>
|
|
801
801
|
* @public
|
|
802
802
|
*/
|
|
803
|
-
tags?: Record<string, string
|
|
803
|
+
tags?: Record<string, string> | undefined;
|
|
804
804
|
/**
|
|
805
805
|
* <p>Array of logging configurations attached to the room.</p>
|
|
806
806
|
* @public
|
|
807
807
|
*/
|
|
808
|
-
loggingConfigurationIdentifiers?: string[];
|
|
808
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
809
809
|
}
|
|
810
810
|
/**
|
|
811
811
|
* @public
|
|
@@ -816,12 +816,12 @@ export interface ListLoggingConfigurationsRequest {
|
|
|
816
816
|
* <code>nextToken</code> response field.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
nextToken?: string;
|
|
819
|
+
nextToken?: string | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>Maximum number of logging configurations to return. Default: 50.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
maxResults?: number;
|
|
824
|
+
maxResults?: number | undefined;
|
|
825
825
|
}
|
|
826
826
|
/**
|
|
827
827
|
* <p>Summary information about a logging configuration.</p>
|
|
@@ -832,49 +832,49 @@ export interface LoggingConfigurationSummary {
|
|
|
832
832
|
* <p>Logging-configuration ARN.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
arn?: string;
|
|
835
|
+
arn?: string | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>Logging-configuration ID, generated by the system. This is a relative identifier, the part
|
|
838
838
|
* of the ARN that uniquely identifies the room.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
id?: string;
|
|
841
|
+
id?: string | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>Time when the logging configuration was created. This is an ISO 8601 timestamp;
|
|
844
844
|
* <i>note that this is returned as a string</i>.</p>
|
|
845
845
|
* @public
|
|
846
846
|
*/
|
|
847
|
-
createTime?: Date;
|
|
847
|
+
createTime?: Date | undefined;
|
|
848
848
|
/**
|
|
849
849
|
* <p>Time of the logging configuration’s last update. This is an ISO 8601 timestamp;
|
|
850
850
|
* <i>note that this is returned as a string</i>.</p>
|
|
851
851
|
* @public
|
|
852
852
|
*/
|
|
853
|
-
updateTime?: Date;
|
|
853
|
+
updateTime?: Date | undefined;
|
|
854
854
|
/**
|
|
855
855
|
* <p>Logging-configuration name. The value does not need to be unique.</p>
|
|
856
856
|
* @public
|
|
857
857
|
*/
|
|
858
|
-
name?: string;
|
|
858
|
+
name?: string | undefined;
|
|
859
859
|
/**
|
|
860
860
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
861
861
|
* logged.</p>
|
|
862
862
|
* @public
|
|
863
863
|
*/
|
|
864
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
864
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
865
865
|
/**
|
|
866
866
|
* <p>The state of the logging configuration. When this is <code>ACTIVE</code>, the
|
|
867
867
|
* configuration is ready for logging chat content.</p>
|
|
868
868
|
* @public
|
|
869
869
|
*/
|
|
870
|
-
state?: LoggingConfigurationState;
|
|
870
|
+
state?: LoggingConfigurationState | undefined;
|
|
871
871
|
/**
|
|
872
872
|
* <p>Tags to attach to the resource. Array of maps, each of the form <code>string:string
|
|
873
873
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints on tags beyond what is documented
|
|
874
874
|
* there.</p>
|
|
875
875
|
* @public
|
|
876
876
|
*/
|
|
877
|
-
tags?: Record<string, string
|
|
877
|
+
tags?: Record<string, string> | undefined;
|
|
878
878
|
}
|
|
879
879
|
/**
|
|
880
880
|
* @public
|
|
@@ -892,7 +892,7 @@ export interface ListLoggingConfigurationsResponse {
|
|
|
892
892
|
* <code>nextToken</code> in the request to get the next set.</p>
|
|
893
893
|
* @public
|
|
894
894
|
*/
|
|
895
|
-
nextToken?: string;
|
|
895
|
+
nextToken?: string | undefined;
|
|
896
896
|
}
|
|
897
897
|
/**
|
|
898
898
|
* @public
|
|
@@ -902,28 +902,28 @@ export interface ListRoomsRequest {
|
|
|
902
902
|
* <p>Filters the list to match the specified room name.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
name?: string;
|
|
905
|
+
name?: string | undefined;
|
|
906
906
|
/**
|
|
907
907
|
* <p>The first room to retrieve. This is used for pagination; see the <code>nextToken</code>
|
|
908
908
|
* response field.</p>
|
|
909
909
|
* @public
|
|
910
910
|
*/
|
|
911
|
-
nextToken?: string;
|
|
911
|
+
nextToken?: string | undefined;
|
|
912
912
|
/**
|
|
913
913
|
* <p>Maximum number of rooms to return. Default: 50.</p>
|
|
914
914
|
* @public
|
|
915
915
|
*/
|
|
916
|
-
maxResults?: number;
|
|
916
|
+
maxResults?: number | undefined;
|
|
917
917
|
/**
|
|
918
918
|
* <p>Filters the list to match the specified message review handler URI.</p>
|
|
919
919
|
* @public
|
|
920
920
|
*/
|
|
921
|
-
messageReviewHandlerUri?: string;
|
|
921
|
+
messageReviewHandlerUri?: string | undefined;
|
|
922
922
|
/**
|
|
923
923
|
* <p>Logging-configuration identifier.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
loggingConfigurationIdentifier?: string;
|
|
926
|
+
loggingConfigurationIdentifier?: string | undefined;
|
|
927
927
|
}
|
|
928
928
|
/**
|
|
929
929
|
* <p>Summary information about a room.</p>
|
|
@@ -934,47 +934,47 @@ export interface RoomSummary {
|
|
|
934
934
|
* <p>Room ARN.</p>
|
|
935
935
|
* @public
|
|
936
936
|
*/
|
|
937
|
-
arn?: string;
|
|
937
|
+
arn?: string | undefined;
|
|
938
938
|
/**
|
|
939
939
|
* <p>Room ID, generated by the system. This is a relative identifier, the part of the ARN that
|
|
940
940
|
* uniquely identifies the room.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
id?: string;
|
|
943
|
+
id?: string | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* <p>Room name. The value does not need to be unique.</p>
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
name?: string;
|
|
948
|
+
name?: string | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* <p>Configuration information for optional review of messages.</p>
|
|
951
951
|
* @public
|
|
952
952
|
*/
|
|
953
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
953
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
954
954
|
/**
|
|
955
955
|
* <p>Time when the room was created. This is an ISO 8601 timestamp; <i>note that this is
|
|
956
956
|
* returned as a string</i>. </p>
|
|
957
957
|
* @public
|
|
958
958
|
*/
|
|
959
|
-
createTime?: Date;
|
|
959
|
+
createTime?: Date | undefined;
|
|
960
960
|
/**
|
|
961
961
|
* <p>Time of the room’s last update. This is an ISO 8601 timestamp; <i>note that this is
|
|
962
962
|
* returned as a string</i>. </p>
|
|
963
963
|
* @public
|
|
964
964
|
*/
|
|
965
|
-
updateTime?: Date;
|
|
965
|
+
updateTime?: Date | undefined;
|
|
966
966
|
/**
|
|
967
967
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
968
968
|
* (key:value)</code>. See <a href="https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html">Best practices and strategies</a> in <i>Tagging Amazon Web Services Resources and Tag Editor</i> for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS Chat has no constraints beyond what is documented
|
|
969
969
|
* there.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
tags?: Record<string, string
|
|
972
|
+
tags?: Record<string, string> | undefined;
|
|
973
973
|
/**
|
|
974
974
|
* <p>List of logging-configuration identifiers attached to the room.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
loggingConfigurationIdentifiers?: string[];
|
|
977
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
978
978
|
}
|
|
979
979
|
/**
|
|
980
980
|
* @public
|
|
@@ -990,7 +990,7 @@ export interface ListRoomsResponse {
|
|
|
990
990
|
* request to get the next set.</p>
|
|
991
991
|
* @public
|
|
992
992
|
*/
|
|
993
|
-
nextToken?: string;
|
|
993
|
+
nextToken?: string | undefined;
|
|
994
994
|
}
|
|
995
995
|
/**
|
|
996
996
|
* <p/>
|
|
@@ -1045,7 +1045,7 @@ export interface SendEventRequest {
|
|
|
1045
1045
|
* of the metadata is 1 KB total.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
attributes?: Record<string, string
|
|
1048
|
+
attributes?: Record<string, string> | undefined;
|
|
1049
1049
|
}
|
|
1050
1050
|
/**
|
|
1051
1051
|
* @public
|
|
@@ -1056,7 +1056,7 @@ export interface SendEventResponse {
|
|
|
1056
1056
|
* operations for this message, such as DeleteMessage.</p>
|
|
1057
1057
|
* @public
|
|
1058
1058
|
*/
|
|
1059
|
-
id?: string;
|
|
1059
|
+
id?: string | undefined;
|
|
1060
1060
|
}
|
|
1061
1061
|
/**
|
|
1062
1062
|
* @public
|
|
@@ -1115,7 +1115,7 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
1115
1115
|
* <p>Logging-configuration name. The value does not need to be unique.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
name?: string;
|
|
1118
|
+
name?: string | undefined;
|
|
1119
1119
|
/**
|
|
1120
1120
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
1121
1121
|
* logged. There can be only one type of destination (<code>cloudWatchLogs</code>,
|
|
@@ -1123,7 +1123,7 @@ export interface UpdateLoggingConfigurationRequest {
|
|
|
1123
1123
|
* <code>destinationConfiguration</code>.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
1126
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
1127
1127
|
}
|
|
1128
1128
|
/**
|
|
1129
1129
|
* @public
|
|
@@ -1145,30 +1145,30 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
1145
1145
|
* ARN).</p>
|
|
1146
1146
|
* @public
|
|
1147
1147
|
*/
|
|
1148
|
-
arn?: string;
|
|
1148
|
+
arn?: string | undefined;
|
|
1149
1149
|
/**
|
|
1150
1150
|
* <p>Logging-configuration ID, generated by the system. This is a relative identifier, the
|
|
1151
1151
|
* part of the ARN that uniquely identifies the room.</p>
|
|
1152
1152
|
* @public
|
|
1153
1153
|
*/
|
|
1154
|
-
id?: string;
|
|
1154
|
+
id?: string | undefined;
|
|
1155
1155
|
/**
|
|
1156
1156
|
* <p>Time when the logging configuration was created. This is an ISO 8601 timestamp;
|
|
1157
1157
|
* <i>note that this is returned as a string</i>.</p>
|
|
1158
1158
|
* @public
|
|
1159
1159
|
*/
|
|
1160
|
-
createTime?: Date;
|
|
1160
|
+
createTime?: Date | undefined;
|
|
1161
1161
|
/**
|
|
1162
1162
|
* <p>Time of the logging configuration’s last update. This is an ISO 8601 timestamp;
|
|
1163
1163
|
* <i>note that this is returned as a string</i>.</p>
|
|
1164
1164
|
* @public
|
|
1165
1165
|
*/
|
|
1166
|
-
updateTime?: Date;
|
|
1166
|
+
updateTime?: Date | undefined;
|
|
1167
1167
|
/**
|
|
1168
1168
|
* <p>Logging-configuration name, from the request (if specified).</p>
|
|
1169
1169
|
* @public
|
|
1170
1170
|
*/
|
|
1171
|
-
name?: string;
|
|
1171
|
+
name?: string | undefined;
|
|
1172
1172
|
/**
|
|
1173
1173
|
* <p>A complex type that contains a destination configuration for where chat content will be
|
|
1174
1174
|
* logged, from the request. There is only one type of destination
|
|
@@ -1176,19 +1176,19 @@ export interface UpdateLoggingConfigurationResponse {
|
|
|
1176
1176
|
* <code>destinationConfiguration</code>.</p>
|
|
1177
1177
|
* @public
|
|
1178
1178
|
*/
|
|
1179
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
1179
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
1180
1180
|
/**
|
|
1181
1181
|
* <p>The state of the logging configuration. When the state is <code>ACTIVE</code>, the
|
|
1182
1182
|
* configuration is ready to log chat content.</p>
|
|
1183
1183
|
* @public
|
|
1184
1184
|
*/
|
|
1185
|
-
state?: UpdateLoggingConfigurationState;
|
|
1185
|
+
state?: UpdateLoggingConfigurationState | undefined;
|
|
1186
1186
|
/**
|
|
1187
1187
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
1188
1188
|
* (key:value)</code>. </p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
tags?: Record<string, string
|
|
1191
|
+
tags?: Record<string, string> | undefined;
|
|
1192
1192
|
}
|
|
1193
1193
|
/**
|
|
1194
1194
|
* @public
|
|
@@ -1203,32 +1203,32 @@ export interface UpdateRoomRequest {
|
|
|
1203
1203
|
* <p>Room name. The value does not need to be unique.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
name?: string;
|
|
1206
|
+
name?: string | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>Maximum number of messages per second that can be sent to the room (by all clients).
|
|
1209
1209
|
* Default: 10.</p>
|
|
1210
1210
|
* @public
|
|
1211
1211
|
*/
|
|
1212
|
-
maximumMessageRatePerSecond?: number;
|
|
1212
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
1213
1213
|
/**
|
|
1214
1214
|
* <p>The maximum number of characters in a single message. Messages are expected to be UTF-8
|
|
1215
1215
|
* encoded and this limit applies specifically to rune/code-point count, not number of bytes.
|
|
1216
1216
|
* Default: 500.</p>
|
|
1217
1217
|
* @public
|
|
1218
1218
|
*/
|
|
1219
|
-
maximumMessageLength?: number;
|
|
1219
|
+
maximumMessageLength?: number | undefined;
|
|
1220
1220
|
/**
|
|
1221
1221
|
* <p>Configuration information for optional review of messages. Specify an empty
|
|
1222
1222
|
* <code>uri</code> string to disassociate a message review handler from the specified
|
|
1223
1223
|
* room.</p>
|
|
1224
1224
|
* @public
|
|
1225
1225
|
*/
|
|
1226
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
1226
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
1227
1227
|
/**
|
|
1228
1228
|
* <p>Array of logging-configuration identifiers attached to the room.</p>
|
|
1229
1229
|
* @public
|
|
1230
1230
|
*/
|
|
1231
|
-
loggingConfigurationIdentifiers?: string[];
|
|
1231
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
1232
1232
|
}
|
|
1233
1233
|
/**
|
|
1234
1234
|
* @public
|
|
@@ -1238,59 +1238,59 @@ export interface UpdateRoomResponse {
|
|
|
1238
1238
|
* <p>Room ARN, from the request (if <code>identifier</code> was an ARN).</p>
|
|
1239
1239
|
* @public
|
|
1240
1240
|
*/
|
|
1241
|
-
arn?: string;
|
|
1241
|
+
arn?: string | undefined;
|
|
1242
1242
|
/**
|
|
1243
1243
|
* <p>Room ID, generated by the system. This is a relative identifier, the part of the ARN
|
|
1244
1244
|
* that uniquely identifies the room.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
id?: string;
|
|
1247
|
+
id?: string | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* <p>Room name, from the request (if specified).</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
name?: string;
|
|
1252
|
+
name?: string | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* <p>Time when the room was created. This is an ISO 8601 timestamp; <i>note that this
|
|
1255
1255
|
* is returned as a string</i>.</p>
|
|
1256
1256
|
* @public
|
|
1257
1257
|
*/
|
|
1258
|
-
createTime?: Date;
|
|
1258
|
+
createTime?: Date | undefined;
|
|
1259
1259
|
/**
|
|
1260
1260
|
* <p>Time of the room’s last update. This is an ISO 8601 timestamp; <i>note that this
|
|
1261
1261
|
* is returned as a string</i>.</p>
|
|
1262
1262
|
* @public
|
|
1263
1263
|
*/
|
|
1264
|
-
updateTime?: Date;
|
|
1264
|
+
updateTime?: Date | undefined;
|
|
1265
1265
|
/**
|
|
1266
1266
|
* <p>Maximum number of messages per second that can be sent to the room (by all clients),
|
|
1267
1267
|
* from the request (if specified).</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
maximumMessageRatePerSecond?: number;
|
|
1270
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
1271
1271
|
/**
|
|
1272
1272
|
* <p>Maximum number of characters in a single message, from the request (if
|
|
1273
1273
|
* specified).</p>
|
|
1274
1274
|
* @public
|
|
1275
1275
|
*/
|
|
1276
|
-
maximumMessageLength?: number;
|
|
1276
|
+
maximumMessageLength?: number | undefined;
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>Configuration information for optional review of messages.</p>
|
|
1279
1279
|
* @public
|
|
1280
1280
|
*/
|
|
1281
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
1281
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
1282
1282
|
/**
|
|
1283
1283
|
* <p>Tags attached to the resource. Array of maps, each of the form <code>string:string
|
|
1284
1284
|
* (key:value)</code>.</p>
|
|
1285
1285
|
* @public
|
|
1286
1286
|
*/
|
|
1287
|
-
tags?: Record<string, string
|
|
1287
|
+
tags?: Record<string, string> | undefined;
|
|
1288
1288
|
/**
|
|
1289
1289
|
* <p>Array of logging configurations attached to the room, from the request (if
|
|
1290
1290
|
* specified).</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
loggingConfigurationIdentifiers?: string[];
|
|
1293
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
1294
1294
|
}
|
|
1295
1295
|
/**
|
|
1296
1296
|
* @internal
|
|
@@ -17,14 +17,14 @@ export type ChatTokenCapability =
|
|
|
17
17
|
export interface CreateChatTokenRequest {
|
|
18
18
|
roomIdentifier: string | undefined;
|
|
19
19
|
userId: string | undefined;
|
|
20
|
-
capabilities?: ChatTokenCapability[];
|
|
21
|
-
sessionDurationInMinutes?: number;
|
|
22
|
-
attributes?: Record<string, string
|
|
20
|
+
capabilities?: ChatTokenCapability[] | undefined;
|
|
21
|
+
sessionDurationInMinutes?: number | undefined;
|
|
22
|
+
attributes?: Record<string, string> | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface CreateChatTokenResponse {
|
|
25
|
-
token?: string;
|
|
26
|
-
tokenExpirationTime?: Date;
|
|
27
|
-
sessionExpirationTime?: Date;
|
|
25
|
+
token?: string | undefined;
|
|
26
|
+
tokenExpirationTime?: Date | undefined;
|
|
27
|
+
sessionExpirationTime?: Date | undefined;
|
|
28
28
|
}
|
|
29
29
|
export declare class PendingVerification extends __BaseException {
|
|
30
30
|
readonly name: "PendingVerification";
|
|
@@ -61,7 +61,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
61
61
|
readonly name: "ValidationException";
|
|
62
62
|
readonly $fault: "client";
|
|
63
63
|
reason: ValidationExceptionReason | undefined;
|
|
64
|
-
fieldList?: ValidationExceptionField[];
|
|
64
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
65
65
|
constructor(
|
|
66
66
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
67
67
|
);
|
|
@@ -121,9 +121,9 @@ export declare namespace DestinationConfiguration {
|
|
|
121
121
|
const visit: <T>(value: DestinationConfiguration, visitor: Visitor<T>) => T;
|
|
122
122
|
}
|
|
123
123
|
export interface CreateLoggingConfigurationRequest {
|
|
124
|
-
name?: string;
|
|
124
|
+
name?: string | undefined;
|
|
125
125
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
126
|
-
tags?: Record<string, string
|
|
126
|
+
tags?: Record<string, string> | undefined;
|
|
127
127
|
}
|
|
128
128
|
export declare const CreateLoggingConfigurationState: {
|
|
129
129
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -131,14 +131,14 @@ export declare const CreateLoggingConfigurationState: {
|
|
|
131
131
|
export type CreateLoggingConfigurationState =
|
|
132
132
|
(typeof CreateLoggingConfigurationState)[keyof typeof CreateLoggingConfigurationState];
|
|
133
133
|
export interface CreateLoggingConfigurationResponse {
|
|
134
|
-
arn?: string;
|
|
135
|
-
id?: string;
|
|
136
|
-
createTime?: Date;
|
|
137
|
-
updateTime?: Date;
|
|
138
|
-
name?: string;
|
|
139
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
140
|
-
state?: CreateLoggingConfigurationState;
|
|
141
|
-
tags?: Record<string, string
|
|
134
|
+
arn?: string | undefined;
|
|
135
|
+
id?: string | undefined;
|
|
136
|
+
createTime?: Date | undefined;
|
|
137
|
+
updateTime?: Date | undefined;
|
|
138
|
+
name?: string | undefined;
|
|
139
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
140
|
+
state?: CreateLoggingConfigurationState | undefined;
|
|
141
|
+
tags?: Record<string, string> | undefined;
|
|
142
142
|
}
|
|
143
143
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
144
144
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -157,28 +157,28 @@ export declare const FallbackResult: {
|
|
|
157
157
|
export type FallbackResult =
|
|
158
158
|
(typeof FallbackResult)[keyof typeof FallbackResult];
|
|
159
159
|
export interface MessageReviewHandler {
|
|
160
|
-
uri?: string;
|
|
161
|
-
fallbackResult?: FallbackResult;
|
|
160
|
+
uri?: string | undefined;
|
|
161
|
+
fallbackResult?: FallbackResult | undefined;
|
|
162
162
|
}
|
|
163
163
|
export interface CreateRoomRequest {
|
|
164
|
-
name?: string;
|
|
165
|
-
maximumMessageRatePerSecond?: number;
|
|
166
|
-
maximumMessageLength?: number;
|
|
167
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
168
|
-
tags?: Record<string, string
|
|
169
|
-
loggingConfigurationIdentifiers?: string[];
|
|
164
|
+
name?: string | undefined;
|
|
165
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
166
|
+
maximumMessageLength?: number | undefined;
|
|
167
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
168
|
+
tags?: Record<string, string> | undefined;
|
|
169
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
170
170
|
}
|
|
171
171
|
export interface CreateRoomResponse {
|
|
172
|
-
arn?: string;
|
|
173
|
-
id?: string;
|
|
174
|
-
name?: string;
|
|
175
|
-
createTime?: Date;
|
|
176
|
-
updateTime?: Date;
|
|
177
|
-
maximumMessageRatePerSecond?: number;
|
|
178
|
-
maximumMessageLength?: number;
|
|
179
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
180
|
-
tags?: Record<string, string
|
|
181
|
-
loggingConfigurationIdentifiers?: string[];
|
|
172
|
+
arn?: string | undefined;
|
|
173
|
+
id?: string | undefined;
|
|
174
|
+
name?: string | undefined;
|
|
175
|
+
createTime?: Date | undefined;
|
|
176
|
+
updateTime?: Date | undefined;
|
|
177
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
178
|
+
maximumMessageLength?: number | undefined;
|
|
179
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
180
|
+
tags?: Record<string, string> | undefined;
|
|
181
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
182
182
|
}
|
|
183
183
|
export interface DeleteLoggingConfigurationRequest {
|
|
184
184
|
identifier: string | undefined;
|
|
@@ -186,10 +186,10 @@ export interface DeleteLoggingConfigurationRequest {
|
|
|
186
186
|
export interface DeleteMessageRequest {
|
|
187
187
|
roomIdentifier: string | undefined;
|
|
188
188
|
id: string | undefined;
|
|
189
|
-
reason?: string;
|
|
189
|
+
reason?: string | undefined;
|
|
190
190
|
}
|
|
191
191
|
export interface DeleteMessageResponse {
|
|
192
|
-
id?: string;
|
|
192
|
+
id?: string | undefined;
|
|
193
193
|
}
|
|
194
194
|
export declare class ThrottlingException extends __BaseException {
|
|
195
195
|
readonly name: "ThrottlingException";
|
|
@@ -207,7 +207,7 @@ export interface DeleteRoomRequest {
|
|
|
207
207
|
export interface DisconnectUserRequest {
|
|
208
208
|
roomIdentifier: string | undefined;
|
|
209
209
|
userId: string | undefined;
|
|
210
|
-
reason?: string;
|
|
210
|
+
reason?: string | undefined;
|
|
211
211
|
}
|
|
212
212
|
export interface DisconnectUserResponse {}
|
|
213
213
|
export interface GetLoggingConfigurationRequest {
|
|
@@ -225,68 +225,68 @@ export declare const LoggingConfigurationState: {
|
|
|
225
225
|
export type LoggingConfigurationState =
|
|
226
226
|
(typeof LoggingConfigurationState)[keyof typeof LoggingConfigurationState];
|
|
227
227
|
export interface GetLoggingConfigurationResponse {
|
|
228
|
-
arn?: string;
|
|
229
|
-
id?: string;
|
|
230
|
-
createTime?: Date;
|
|
231
|
-
updateTime?: Date;
|
|
232
|
-
name?: string;
|
|
233
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
234
|
-
state?: LoggingConfigurationState;
|
|
235
|
-
tags?: Record<string, string
|
|
228
|
+
arn?: string | undefined;
|
|
229
|
+
id?: string | undefined;
|
|
230
|
+
createTime?: Date | undefined;
|
|
231
|
+
updateTime?: Date | undefined;
|
|
232
|
+
name?: string | undefined;
|
|
233
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
234
|
+
state?: LoggingConfigurationState | undefined;
|
|
235
|
+
tags?: Record<string, string> | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface GetRoomRequest {
|
|
238
238
|
identifier: string | undefined;
|
|
239
239
|
}
|
|
240
240
|
export interface GetRoomResponse {
|
|
241
|
-
arn?: string;
|
|
242
|
-
id?: string;
|
|
243
|
-
name?: string;
|
|
244
|
-
createTime?: Date;
|
|
245
|
-
updateTime?: Date;
|
|
246
|
-
maximumMessageRatePerSecond?: number;
|
|
247
|
-
maximumMessageLength?: number;
|
|
248
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
249
|
-
tags?: Record<string, string
|
|
250
|
-
loggingConfigurationIdentifiers?: string[];
|
|
241
|
+
arn?: string | undefined;
|
|
242
|
+
id?: string | undefined;
|
|
243
|
+
name?: string | undefined;
|
|
244
|
+
createTime?: Date | undefined;
|
|
245
|
+
updateTime?: Date | undefined;
|
|
246
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
247
|
+
maximumMessageLength?: number | undefined;
|
|
248
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
249
|
+
tags?: Record<string, string> | undefined;
|
|
250
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
251
251
|
}
|
|
252
252
|
export interface ListLoggingConfigurationsRequest {
|
|
253
|
-
nextToken?: string;
|
|
254
|
-
maxResults?: number;
|
|
253
|
+
nextToken?: string | undefined;
|
|
254
|
+
maxResults?: number | undefined;
|
|
255
255
|
}
|
|
256
256
|
export interface LoggingConfigurationSummary {
|
|
257
|
-
arn?: string;
|
|
258
|
-
id?: string;
|
|
259
|
-
createTime?: Date;
|
|
260
|
-
updateTime?: Date;
|
|
261
|
-
name?: string;
|
|
262
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
263
|
-
state?: LoggingConfigurationState;
|
|
264
|
-
tags?: Record<string, string
|
|
257
|
+
arn?: string | undefined;
|
|
258
|
+
id?: string | undefined;
|
|
259
|
+
createTime?: Date | undefined;
|
|
260
|
+
updateTime?: Date | undefined;
|
|
261
|
+
name?: string | undefined;
|
|
262
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
263
|
+
state?: LoggingConfigurationState | undefined;
|
|
264
|
+
tags?: Record<string, string> | undefined;
|
|
265
265
|
}
|
|
266
266
|
export interface ListLoggingConfigurationsResponse {
|
|
267
267
|
loggingConfigurations: LoggingConfigurationSummary[] | undefined;
|
|
268
|
-
nextToken?: string;
|
|
268
|
+
nextToken?: string | undefined;
|
|
269
269
|
}
|
|
270
270
|
export interface ListRoomsRequest {
|
|
271
|
-
name?: string;
|
|
272
|
-
nextToken?: string;
|
|
273
|
-
maxResults?: number;
|
|
274
|
-
messageReviewHandlerUri?: string;
|
|
275
|
-
loggingConfigurationIdentifier?: string;
|
|
271
|
+
name?: string | undefined;
|
|
272
|
+
nextToken?: string | undefined;
|
|
273
|
+
maxResults?: number | undefined;
|
|
274
|
+
messageReviewHandlerUri?: string | undefined;
|
|
275
|
+
loggingConfigurationIdentifier?: string | undefined;
|
|
276
276
|
}
|
|
277
277
|
export interface RoomSummary {
|
|
278
|
-
arn?: string;
|
|
279
|
-
id?: string;
|
|
280
|
-
name?: string;
|
|
281
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
282
|
-
createTime?: Date;
|
|
283
|
-
updateTime?: Date;
|
|
284
|
-
tags?: Record<string, string
|
|
285
|
-
loggingConfigurationIdentifiers?: string[];
|
|
278
|
+
arn?: string | undefined;
|
|
279
|
+
id?: string | undefined;
|
|
280
|
+
name?: string | undefined;
|
|
281
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
282
|
+
createTime?: Date | undefined;
|
|
283
|
+
updateTime?: Date | undefined;
|
|
284
|
+
tags?: Record<string, string> | undefined;
|
|
285
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
286
286
|
}
|
|
287
287
|
export interface ListRoomsResponse {
|
|
288
288
|
rooms: RoomSummary[] | undefined;
|
|
289
|
-
nextToken?: string;
|
|
289
|
+
nextToken?: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
export declare class InternalServerException extends __BaseException {
|
|
292
292
|
readonly name: "InternalServerException";
|
|
@@ -304,10 +304,10 @@ export interface ListTagsForResourceResponse {
|
|
|
304
304
|
export interface SendEventRequest {
|
|
305
305
|
roomIdentifier: string | undefined;
|
|
306
306
|
eventName: string | undefined;
|
|
307
|
-
attributes?: Record<string, string
|
|
307
|
+
attributes?: Record<string, string> | undefined;
|
|
308
308
|
}
|
|
309
309
|
export interface SendEventResponse {
|
|
310
|
-
id?: string;
|
|
310
|
+
id?: string | undefined;
|
|
311
311
|
}
|
|
312
312
|
export interface TagResourceRequest {
|
|
313
313
|
resourceArn: string | undefined;
|
|
@@ -321,8 +321,8 @@ export interface UntagResourceRequest {
|
|
|
321
321
|
export interface UntagResourceResponse {}
|
|
322
322
|
export interface UpdateLoggingConfigurationRequest {
|
|
323
323
|
identifier: string | undefined;
|
|
324
|
-
name?: string;
|
|
325
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
324
|
+
name?: string | undefined;
|
|
325
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
326
326
|
}
|
|
327
327
|
export declare const UpdateLoggingConfigurationState: {
|
|
328
328
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -330,34 +330,34 @@ export declare const UpdateLoggingConfigurationState: {
|
|
|
330
330
|
export type UpdateLoggingConfigurationState =
|
|
331
331
|
(typeof UpdateLoggingConfigurationState)[keyof typeof UpdateLoggingConfigurationState];
|
|
332
332
|
export interface UpdateLoggingConfigurationResponse {
|
|
333
|
-
arn?: string;
|
|
334
|
-
id?: string;
|
|
335
|
-
createTime?: Date;
|
|
336
|
-
updateTime?: Date;
|
|
337
|
-
name?: string;
|
|
338
|
-
destinationConfiguration?: DestinationConfiguration;
|
|
339
|
-
state?: UpdateLoggingConfigurationState;
|
|
340
|
-
tags?: Record<string, string
|
|
333
|
+
arn?: string | undefined;
|
|
334
|
+
id?: string | undefined;
|
|
335
|
+
createTime?: Date | undefined;
|
|
336
|
+
updateTime?: Date | undefined;
|
|
337
|
+
name?: string | undefined;
|
|
338
|
+
destinationConfiguration?: DestinationConfiguration | undefined;
|
|
339
|
+
state?: UpdateLoggingConfigurationState | undefined;
|
|
340
|
+
tags?: Record<string, string> | undefined;
|
|
341
341
|
}
|
|
342
342
|
export interface UpdateRoomRequest {
|
|
343
343
|
identifier: string | undefined;
|
|
344
|
-
name?: string;
|
|
345
|
-
maximumMessageRatePerSecond?: number;
|
|
346
|
-
maximumMessageLength?: number;
|
|
347
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
348
|
-
loggingConfigurationIdentifiers?: string[];
|
|
344
|
+
name?: string | undefined;
|
|
345
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
346
|
+
maximumMessageLength?: number | undefined;
|
|
347
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
348
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
349
349
|
}
|
|
350
350
|
export interface UpdateRoomResponse {
|
|
351
|
-
arn?: string;
|
|
352
|
-
id?: string;
|
|
353
|
-
name?: string;
|
|
354
|
-
createTime?: Date;
|
|
355
|
-
updateTime?: Date;
|
|
356
|
-
maximumMessageRatePerSecond?: number;
|
|
357
|
-
maximumMessageLength?: number;
|
|
358
|
-
messageReviewHandler?: MessageReviewHandler;
|
|
359
|
-
tags?: Record<string, string
|
|
360
|
-
loggingConfigurationIdentifiers?: string[];
|
|
351
|
+
arn?: string | undefined;
|
|
352
|
+
id?: string | undefined;
|
|
353
|
+
name?: string | undefined;
|
|
354
|
+
createTime?: Date | undefined;
|
|
355
|
+
updateTime?: Date | undefined;
|
|
356
|
+
maximumMessageRatePerSecond?: number | undefined;
|
|
357
|
+
maximumMessageLength?: number | undefined;
|
|
358
|
+
messageReviewHandler?: MessageReviewHandler | undefined;
|
|
359
|
+
tags?: Record<string, string> | undefined;
|
|
360
|
+
loggingConfigurationIdentifiers?: string[] | undefined;
|
|
361
361
|
}
|
|
362
362
|
export declare const CreateChatTokenRequestFilterSensitiveLog: (
|
|
363
363
|
obj: CreateChatTokenRequest
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ivschat",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ivschat Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ivschat",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|