@aws-sdk/client-chime-sdk-meetings 3.131.0 → 3.142.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 (35) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/BatchCreateAttendeeCommand.js +2 -2
  4. package/dist-cjs/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +1 -1
  5. package/dist-cjs/commands/CreateAttendeeCommand.js +2 -2
  6. package/dist-cjs/commands/CreateMeetingCommand.js +2 -2
  7. package/dist-cjs/commands/CreateMeetingWithAttendeesCommand.js +2 -2
  8. package/dist-cjs/commands/DeleteAttendeeCommand.js +1 -1
  9. package/dist-cjs/commands/DeleteMeetingCommand.js +1 -1
  10. package/dist-cjs/commands/GetAttendeeCommand.js +2 -2
  11. package/dist-cjs/commands/GetMeetingCommand.js +2 -2
  12. package/dist-cjs/commands/ListAttendeesCommand.js +2 -2
  13. package/dist-cjs/commands/StartMeetingTranscriptionCommand.js +1 -1
  14. package/dist-cjs/commands/StopMeetingTranscriptionCommand.js +1 -1
  15. package/dist-cjs/commands/UpdateAttendeeCapabilitiesCommand.js +2 -2
  16. package/dist-cjs/models/models_0.js +173 -245
  17. package/dist-cjs/protocols/Aws_restJson1.js +192 -381
  18. package/dist-es/commands/BatchCreateAttendeeCommand.js +3 -3
  19. package/dist-es/commands/BatchUpdateAttendeeCapabilitiesExceptCommand.js +2 -2
  20. package/dist-es/commands/CreateAttendeeCommand.js +3 -3
  21. package/dist-es/commands/CreateMeetingCommand.js +3 -3
  22. package/dist-es/commands/CreateMeetingWithAttendeesCommand.js +3 -3
  23. package/dist-es/commands/DeleteAttendeeCommand.js +2 -2
  24. package/dist-es/commands/DeleteMeetingCommand.js +2 -2
  25. package/dist-es/commands/GetAttendeeCommand.js +3 -3
  26. package/dist-es/commands/GetMeetingCommand.js +3 -3
  27. package/dist-es/commands/ListAttendeesCommand.js +3 -3
  28. package/dist-es/commands/StartMeetingTranscriptionCommand.js +2 -2
  29. package/dist-es/commands/StopMeetingTranscriptionCommand.js +2 -2
  30. package/dist-es/commands/UpdateAttendeeCapabilitiesCommand.js +3 -3
  31. package/dist-es/models/models_0.js +38 -144
  32. package/dist-es/protocols/Aws_restJson1.js +243 -390
  33. package/dist-types/models/models_0.d.ts +136 -204
  34. package/dist-types/ts3.4/models/models_0.d.ts +68 -136
  35. package/package.json +6 -6
@@ -44,12 +44,6 @@ export interface AttendeeCapabilities {
44
44
  */
45
45
  Content: MediaCapabilities | string | undefined;
46
46
  }
47
- export declare namespace AttendeeCapabilities {
48
- /**
49
- * @internal
50
- */
51
- const filterSensitiveLog: (obj: AttendeeCapabilities) => any;
52
- }
53
47
  /**
54
48
  * <p>An Amazon Chime SDK meeting attendee. Includes a unique
55
49
  * <code>AttendeeId</code> and <code>JoinToken</code>. The
@@ -104,12 +98,6 @@ export interface Attendee {
104
98
  */
105
99
  Capabilities?: AttendeeCapabilities;
106
100
  }
107
- export declare namespace Attendee {
108
- /**
109
- * @internal
110
- */
111
- const filterSensitiveLog: (obj: Attendee) => any;
112
- }
113
101
  /**
114
102
  * <p>A structure that contains one or more attendee IDs.</p>
115
103
  */
@@ -119,12 +107,6 @@ export interface AttendeeIdItem {
119
107
  */
120
108
  AttendeeId: string | undefined;
121
109
  }
122
- export declare namespace AttendeeIdItem {
123
- /**
124
- * @internal
125
- */
126
- const filterSensitiveLog: (obj: AttendeeIdItem) => any;
127
- }
128
110
  export declare enum MeetingFeatureStatus {
129
111
  AVAILABLE = "AVAILABLE",
130
112
  UNAVAILABLE = "UNAVAILABLE"
@@ -138,12 +120,6 @@ export interface AudioFeatures {
138
120
  */
139
121
  EchoReduction?: MeetingFeatureStatus | string;
140
122
  }
141
- export declare namespace AudioFeatures {
142
- /**
143
- * @internal
144
- */
145
- const filterSensitiveLog: (obj: AudioFeatures) => any;
146
- }
147
123
  /**
148
124
  * <p>The input parameters don't match the service's restrictions.</p>
149
125
  */
@@ -174,12 +150,6 @@ export interface CreateAttendeeRequestItem {
174
150
  */
175
151
  Capabilities?: AttendeeCapabilities;
176
152
  }
177
- export declare namespace CreateAttendeeRequestItem {
178
- /**
179
- * @internal
180
- */
181
- const filterSensitiveLog: (obj: CreateAttendeeRequestItem) => any;
182
- }
183
153
  export interface BatchCreateAttendeeRequest {
184
154
  /**
185
155
  * <p>The Amazon Chime SDK ID of the meeting to which you're adding attendees.</p>
@@ -190,12 +160,6 @@ export interface BatchCreateAttendeeRequest {
190
160
  */
191
161
  Attendees: CreateAttendeeRequestItem[] | undefined;
192
162
  }
193
- export declare namespace BatchCreateAttendeeRequest {
194
- /**
195
- * @internal
196
- */
197
- const filterSensitiveLog: (obj: BatchCreateAttendeeRequest) => any;
198
- }
199
163
  /**
200
164
  * <p>The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.</p>
201
165
  */
@@ -213,12 +177,6 @@ export interface CreateAttendeeError {
213
177
  */
214
178
  ErrorMessage?: string;
215
179
  }
216
- export declare namespace CreateAttendeeError {
217
- /**
218
- * @internal
219
- */
220
- const filterSensitiveLog: (obj: CreateAttendeeError) => any;
221
- }
222
180
  export interface BatchCreateAttendeeResponse {
223
181
  /**
224
182
  * <p>The attendee information, including attendees' IDs and join tokens.</p>
@@ -229,12 +187,6 @@ export interface BatchCreateAttendeeResponse {
229
187
  */
230
188
  Errors?: CreateAttendeeError[];
231
189
  }
232
- export declare namespace BatchCreateAttendeeResponse {
233
- /**
234
- * @internal
235
- */
236
- const filterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
237
- }
238
190
  /**
239
191
  * <p>The client is permanently forbidden from making the request.</p>
240
192
  */
@@ -383,12 +335,6 @@ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
383
335
  */
384
336
  Capabilities: AttendeeCapabilities | undefined;
385
337
  }
386
- export declare namespace BatchUpdateAttendeeCapabilitiesExceptRequest {
387
- /**
388
- * @internal
389
- */
390
- const filterSensitiveLog: (obj: BatchUpdateAttendeeCapabilitiesExceptRequest) => any;
391
- }
392
338
  /**
393
339
  * <p>Multiple instances of the same request have been made simultaneously.</p>
394
340
  */
@@ -440,24 +386,12 @@ export interface CreateAttendeeRequest {
440
386
  */
441
387
  Capabilities?: AttendeeCapabilities;
442
388
  }
443
- export declare namespace CreateAttendeeRequest {
444
- /**
445
- * @internal
446
- */
447
- const filterSensitiveLog: (obj: CreateAttendeeRequest) => any;
448
- }
449
389
  export interface CreateAttendeeResponse {
450
390
  /**
451
391
  * <p>The attendee information, including attendee ID and join token.</p>
452
392
  */
453
393
  Attendee?: Attendee;
454
394
  }
455
- export declare namespace CreateAttendeeResponse {
456
- /**
457
- * @internal
458
- */
459
- const filterSensitiveLog: (obj: CreateAttendeeResponse) => any;
460
- }
461
395
  /**
462
396
  * <p>The configuration settings of the features available to a meeting.></p>
463
397
  */
@@ -467,12 +401,6 @@ export interface MeetingFeaturesConfiguration {
467
401
  */
468
402
  Audio?: AudioFeatures;
469
403
  }
470
- export declare namespace MeetingFeaturesConfiguration {
471
- /**
472
- * @internal
473
- */
474
- const filterSensitiveLog: (obj: MeetingFeaturesConfiguration) => any;
475
- }
476
404
  /**
477
405
  * <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
478
406
  */
@@ -490,12 +418,6 @@ export interface NotificationsConfiguration {
490
418
  */
491
419
  SqsQueueArn?: string;
492
420
  }
493
- export declare namespace NotificationsConfiguration {
494
- /**
495
- * @internal
496
- */
497
- const filterSensitiveLog: (obj: NotificationsConfiguration) => any;
498
- }
499
421
  export interface CreateMeetingRequest {
500
422
  /**
501
423
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
@@ -553,12 +475,6 @@ export interface CreateMeetingRequest {
553
475
  */
554
476
  TenantIds?: string[];
555
477
  }
556
- export declare namespace CreateMeetingRequest {
557
- /**
558
- * @internal
559
- */
560
- const filterSensitiveLog: (obj: CreateMeetingRequest) => any;
561
- }
562
478
  /**
563
479
  * <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
564
480
  */
@@ -596,12 +512,6 @@ export interface MediaPlacement {
596
512
  */
597
513
  EventIngestionUrl?: string;
598
514
  }
599
- export declare namespace MediaPlacement {
600
- /**
601
- * @internal
602
- */
603
- const filterSensitiveLog: (obj: MediaPlacement) => any;
604
- }
605
515
  /**
606
516
  * <p>A meeting created using the Amazon Chime SDK.</p>
607
517
  */
@@ -645,12 +555,6 @@ export interface Meeting {
645
555
  */
646
556
  TenantIds?: string[];
647
557
  }
648
- export declare namespace Meeting {
649
- /**
650
- * @internal
651
- */
652
- const filterSensitiveLog: (obj: Meeting) => any;
653
- }
654
558
  export interface CreateMeetingResponse {
655
559
  /**
656
560
  * <p>The meeting information, including the meeting ID and
@@ -658,12 +562,6 @@ export interface CreateMeetingResponse {
658
562
  */
659
563
  Meeting?: Meeting;
660
564
  }
661
- export declare namespace CreateMeetingResponse {
662
- /**
663
- * @internal
664
- */
665
- const filterSensitiveLog: (obj: CreateMeetingResponse) => any;
666
- }
667
565
  export interface CreateMeetingWithAttendeesRequest {
668
566
  /**
669
567
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
@@ -725,12 +623,6 @@ export interface CreateMeetingWithAttendeesRequest {
725
623
  */
726
624
  TenantIds?: string[];
727
625
  }
728
- export declare namespace CreateMeetingWithAttendeesRequest {
729
- /**
730
- * @internal
731
- */
732
- const filterSensitiveLog: (obj: CreateMeetingWithAttendeesRequest) => any;
733
- }
734
626
  export interface CreateMeetingWithAttendeesResponse {
735
627
  /**
736
628
  * <p>The meeting information, including the meeting ID and
@@ -746,12 +638,6 @@ export interface CreateMeetingWithAttendeesResponse {
746
638
  */
747
639
  Errors?: CreateAttendeeError[];
748
640
  }
749
- export declare namespace CreateMeetingWithAttendeesResponse {
750
- /**
751
- * @internal
752
- */
753
- const filterSensitiveLog: (obj: CreateMeetingWithAttendeesResponse) => any;
754
- }
755
641
  export interface DeleteAttendeeRequest {
756
642
  /**
757
643
  * <p>The Amazon Chime SDK meeting ID.</p>
@@ -762,24 +648,12 @@ export interface DeleteAttendeeRequest {
762
648
  */
763
649
  AttendeeId: string | undefined;
764
650
  }
765
- export declare namespace DeleteAttendeeRequest {
766
- /**
767
- * @internal
768
- */
769
- const filterSensitiveLog: (obj: DeleteAttendeeRequest) => any;
770
- }
771
651
  export interface DeleteMeetingRequest {
772
652
  /**
773
653
  * <p>The Amazon Chime SDK meeting ID.</p>
774
654
  */
775
655
  MeetingId: string | undefined;
776
656
  }
777
- export declare namespace DeleteMeetingRequest {
778
- /**
779
- * @internal
780
- */
781
- const filterSensitiveLog: (obj: DeleteMeetingRequest) => any;
782
- }
783
657
  export interface GetAttendeeRequest {
784
658
  /**
785
659
  * <p>The Amazon Chime SDK meeting ID.</p>
@@ -790,48 +664,24 @@ export interface GetAttendeeRequest {
790
664
  */
791
665
  AttendeeId: string | undefined;
792
666
  }
793
- export declare namespace GetAttendeeRequest {
794
- /**
795
- * @internal
796
- */
797
- const filterSensitiveLog: (obj: GetAttendeeRequest) => any;
798
- }
799
667
  export interface GetAttendeeResponse {
800
668
  /**
801
669
  * <p>The Amazon Chime SDK attendee information.</p>
802
670
  */
803
671
  Attendee?: Attendee;
804
672
  }
805
- export declare namespace GetAttendeeResponse {
806
- /**
807
- * @internal
808
- */
809
- const filterSensitiveLog: (obj: GetAttendeeResponse) => any;
810
- }
811
673
  export interface GetMeetingRequest {
812
674
  /**
813
675
  * <p>The Amazon Chime SDK meeting ID.</p>
814
676
  */
815
677
  MeetingId: string | undefined;
816
678
  }
817
- export declare namespace GetMeetingRequest {
818
- /**
819
- * @internal
820
- */
821
- const filterSensitiveLog: (obj: GetMeetingRequest) => any;
822
- }
823
679
  export interface GetMeetingResponse {
824
680
  /**
825
681
  * <p>The Amazon Chime SDK meeting information.</p>
826
682
  */
827
683
  Meeting?: Meeting;
828
684
  }
829
- export declare namespace GetMeetingResponse {
830
- /**
831
- * @internal
832
- */
833
- const filterSensitiveLog: (obj: GetMeetingResponse) => any;
834
- }
835
685
  export interface ListAttendeesRequest {
836
686
  /**
837
687
  * <p>The Amazon Chime SDK meeting ID.</p>
@@ -846,12 +696,6 @@ export interface ListAttendeesRequest {
846
696
  */
847
697
  MaxResults?: number;
848
698
  }
849
- export declare namespace ListAttendeesRequest {
850
- /**
851
- * @internal
852
- */
853
- const filterSensitiveLog: (obj: ListAttendeesRequest) => any;
854
- }
855
699
  export interface ListAttendeesResponse {
856
700
  /**
857
701
  * <p>The Amazon Chime SDK attendee information.</p>
@@ -862,12 +706,6 @@ export interface ListAttendeesResponse {
862
706
  */
863
707
  NextToken?: string;
864
708
  }
865
- export declare namespace ListAttendeesResponse {
866
- /**
867
- * @internal
868
- */
869
- const filterSensitiveLog: (obj: ListAttendeesResponse) => any;
870
- }
871
709
  export declare enum TranscribeMedicalContentIdentificationType {
872
710
  PHI = "PHI"
873
711
  }
@@ -924,12 +762,6 @@ export interface EngineTranscribeMedicalSettings {
924
762
  */
925
763
  ContentIdentificationType?: TranscribeMedicalContentIdentificationType | string;
926
764
  }
927
- export declare namespace EngineTranscribeMedicalSettings {
928
- /**
929
- * @internal
930
- */
931
- const filterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
932
- }
933
765
  export declare enum TranscribeContentIdentificationType {
934
766
  PII = "PII"
935
767
  }
@@ -1046,12 +878,6 @@ export interface EngineTranscribeSettings {
1046
878
  */
1047
879
  PreferredLanguage?: TranscribeLanguageCode | string;
1048
880
  }
1049
- export declare namespace EngineTranscribeSettings {
1050
- /**
1051
- * @internal
1052
- */
1053
- const filterSensitiveLog: (obj: EngineTranscribeSettings) => any;
1054
- }
1055
881
  /**
1056
882
  * <p>The configuration for the current transcription operation. Must contain <code>EngineTranscribeSettings</code> or <code>EngineTranscribeMedicalSettings</code>.</p>
1057
883
  */
@@ -1065,12 +891,6 @@ export interface TranscriptionConfiguration {
1065
891
  */
1066
892
  EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
1067
893
  }
1068
- export declare namespace TranscriptionConfiguration {
1069
- /**
1070
- * @internal
1071
- */
1072
- const filterSensitiveLog: (obj: TranscriptionConfiguration) => any;
1073
- }
1074
894
  export interface StartMeetingTranscriptionRequest {
1075
895
  /**
1076
896
  * <p>The unique ID of the meeting being transcribed.</p>
@@ -1082,24 +902,12 @@ export interface StartMeetingTranscriptionRequest {
1082
902
  */
1083
903
  TranscriptionConfiguration: TranscriptionConfiguration | undefined;
1084
904
  }
1085
- export declare namespace StartMeetingTranscriptionRequest {
1086
- /**
1087
- * @internal
1088
- */
1089
- const filterSensitiveLog: (obj: StartMeetingTranscriptionRequest) => any;
1090
- }
1091
905
  export interface StopMeetingTranscriptionRequest {
1092
906
  /**
1093
907
  * <p>The unique ID of the meeting for which you stop transcription.</p>
1094
908
  */
1095
909
  MeetingId: string | undefined;
1096
910
  }
1097
- export declare namespace StopMeetingTranscriptionRequest {
1098
- /**
1099
- * @internal
1100
- */
1101
- const filterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
1102
- }
1103
911
  export interface UpdateAttendeeCapabilitiesRequest {
1104
912
  /**
1105
913
  * <p>The ID of the meeting associated with the update request.</p>
@@ -1114,21 +922,145 @@ export interface UpdateAttendeeCapabilitiesRequest {
1114
922
  */
1115
923
  Capabilities: AttendeeCapabilities | undefined;
1116
924
  }
1117
- export declare namespace UpdateAttendeeCapabilitiesRequest {
1118
- /**
1119
- * @internal
1120
- */
1121
- const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
1122
- }
1123
925
  export interface UpdateAttendeeCapabilitiesResponse {
1124
926
  /**
1125
927
  * <p>The updated attendee data.</p>
1126
928
  */
1127
929
  Attendee?: Attendee;
1128
930
  }
1129
- export declare namespace UpdateAttendeeCapabilitiesResponse {
1130
- /**
1131
- * @internal
1132
- */
1133
- const filterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;
1134
- }
931
+ /**
932
+ * @internal
933
+ */
934
+ export declare const AttendeeCapabilitiesFilterSensitiveLog: (obj: AttendeeCapabilities) => any;
935
+ /**
936
+ * @internal
937
+ */
938
+ export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
939
+ /**
940
+ * @internal
941
+ */
942
+ export declare const AttendeeIdItemFilterSensitiveLog: (obj: AttendeeIdItem) => any;
943
+ /**
944
+ * @internal
945
+ */
946
+ export declare const AudioFeaturesFilterSensitiveLog: (obj: AudioFeatures) => any;
947
+ /**
948
+ * @internal
949
+ */
950
+ export declare const CreateAttendeeRequestItemFilterSensitiveLog: (obj: CreateAttendeeRequestItem) => any;
951
+ /**
952
+ * @internal
953
+ */
954
+ export declare const BatchCreateAttendeeRequestFilterSensitiveLog: (obj: BatchCreateAttendeeRequest) => any;
955
+ /**
956
+ * @internal
957
+ */
958
+ export declare const CreateAttendeeErrorFilterSensitiveLog: (obj: CreateAttendeeError) => any;
959
+ /**
960
+ * @internal
961
+ */
962
+ export declare const BatchCreateAttendeeResponseFilterSensitiveLog: (obj: BatchCreateAttendeeResponse) => any;
963
+ /**
964
+ * @internal
965
+ */
966
+ export declare const BatchUpdateAttendeeCapabilitiesExceptRequestFilterSensitiveLog: (obj: BatchUpdateAttendeeCapabilitiesExceptRequest) => any;
967
+ /**
968
+ * @internal
969
+ */
970
+ export declare const CreateAttendeeRequestFilterSensitiveLog: (obj: CreateAttendeeRequest) => any;
971
+ /**
972
+ * @internal
973
+ */
974
+ export declare const CreateAttendeeResponseFilterSensitiveLog: (obj: CreateAttendeeResponse) => any;
975
+ /**
976
+ * @internal
977
+ */
978
+ export declare const MeetingFeaturesConfigurationFilterSensitiveLog: (obj: MeetingFeaturesConfiguration) => any;
979
+ /**
980
+ * @internal
981
+ */
982
+ export declare const NotificationsConfigurationFilterSensitiveLog: (obj: NotificationsConfiguration) => any;
983
+ /**
984
+ * @internal
985
+ */
986
+ export declare const CreateMeetingRequestFilterSensitiveLog: (obj: CreateMeetingRequest) => any;
987
+ /**
988
+ * @internal
989
+ */
990
+ export declare const MediaPlacementFilterSensitiveLog: (obj: MediaPlacement) => any;
991
+ /**
992
+ * @internal
993
+ */
994
+ export declare const MeetingFilterSensitiveLog: (obj: Meeting) => any;
995
+ /**
996
+ * @internal
997
+ */
998
+ export declare const CreateMeetingResponseFilterSensitiveLog: (obj: CreateMeetingResponse) => any;
999
+ /**
1000
+ * @internal
1001
+ */
1002
+ export declare const CreateMeetingWithAttendeesRequestFilterSensitiveLog: (obj: CreateMeetingWithAttendeesRequest) => any;
1003
+ /**
1004
+ * @internal
1005
+ */
1006
+ export declare const CreateMeetingWithAttendeesResponseFilterSensitiveLog: (obj: CreateMeetingWithAttendeesResponse) => any;
1007
+ /**
1008
+ * @internal
1009
+ */
1010
+ export declare const DeleteAttendeeRequestFilterSensitiveLog: (obj: DeleteAttendeeRequest) => any;
1011
+ /**
1012
+ * @internal
1013
+ */
1014
+ export declare const DeleteMeetingRequestFilterSensitiveLog: (obj: DeleteMeetingRequest) => any;
1015
+ /**
1016
+ * @internal
1017
+ */
1018
+ export declare const GetAttendeeRequestFilterSensitiveLog: (obj: GetAttendeeRequest) => any;
1019
+ /**
1020
+ * @internal
1021
+ */
1022
+ export declare const GetAttendeeResponseFilterSensitiveLog: (obj: GetAttendeeResponse) => any;
1023
+ /**
1024
+ * @internal
1025
+ */
1026
+ export declare const GetMeetingRequestFilterSensitiveLog: (obj: GetMeetingRequest) => any;
1027
+ /**
1028
+ * @internal
1029
+ */
1030
+ export declare const GetMeetingResponseFilterSensitiveLog: (obj: GetMeetingResponse) => any;
1031
+ /**
1032
+ * @internal
1033
+ */
1034
+ export declare const ListAttendeesRequestFilterSensitiveLog: (obj: ListAttendeesRequest) => any;
1035
+ /**
1036
+ * @internal
1037
+ */
1038
+ export declare const ListAttendeesResponseFilterSensitiveLog: (obj: ListAttendeesResponse) => any;
1039
+ /**
1040
+ * @internal
1041
+ */
1042
+ export declare const EngineTranscribeMedicalSettingsFilterSensitiveLog: (obj: EngineTranscribeMedicalSettings) => any;
1043
+ /**
1044
+ * @internal
1045
+ */
1046
+ export declare const EngineTranscribeSettingsFilterSensitiveLog: (obj: EngineTranscribeSettings) => any;
1047
+ /**
1048
+ * @internal
1049
+ */
1050
+ export declare const TranscriptionConfigurationFilterSensitiveLog: (obj: TranscriptionConfiguration) => any;
1051
+ /**
1052
+ * @internal
1053
+ */
1054
+ export declare const StartMeetingTranscriptionRequestFilterSensitiveLog: (obj: StartMeetingTranscriptionRequest) => any;
1055
+ /**
1056
+ * @internal
1057
+ */
1058
+ export declare const StopMeetingTranscriptionRequestFilterSensitiveLog: (obj: StopMeetingTranscriptionRequest) => any;
1059
+ /**
1060
+ * @internal
1061
+ */
1062
+ export declare const UpdateAttendeeCapabilitiesRequestFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesRequest) => any;
1063
+ /**
1064
+ * @internal
1065
+ */
1066
+ export declare const UpdateAttendeeCapabilitiesResponseFilterSensitiveLog: (obj: UpdateAttendeeCapabilitiesResponse) => any;