@aws-sdk/client-chime-sdk-meetings 3.687.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.
@@ -87,17 +87,17 @@ export interface Attendee {
87
87
  * Case insensitive.</p>
88
88
  * @public
89
89
  */
90
- ExternalUserId?: string;
90
+ ExternalUserId?: string | undefined;
91
91
  /**
92
92
  * <p>The Amazon Chime SDK attendee ID.</p>
93
93
  * @public
94
94
  */
95
- AttendeeId?: string;
95
+ AttendeeId?: string | undefined;
96
96
  /**
97
97
  * <p>The join token used by the Amazon Chime SDK attendee.</p>
98
98
  * @public
99
99
  */
100
- JoinToken?: string;
100
+ JoinToken?: string | undefined;
101
101
  /**
102
102
  * <p>The capabilities assigned to an attendee: audio, video, or content.</p>
103
103
  * <note>
@@ -130,7 +130,7 @@ export interface Attendee {
130
130
  * </ul>
131
131
  * @public
132
132
  */
133
- Capabilities?: AttendeeCapabilities;
133
+ Capabilities?: AttendeeCapabilities | undefined;
134
134
  }
135
135
  /**
136
136
  * <p>Lists the maximum number of attendees allowed into the meeting.</p>
@@ -145,7 +145,7 @@ export interface AttendeeFeatures {
145
145
  * <p>The maximum number of attendees allowed into the meeting.</p>
146
146
  * @public
147
147
  */
148
- MaxCount?: number;
148
+ MaxCount?: number | undefined;
149
149
  }
150
150
  /**
151
151
  * <p>A structure that contains one or more attendee IDs.</p>
@@ -179,7 +179,7 @@ export interface AudioFeatures {
179
179
  * <p>Makes echo reduction available to clients who connect to the meeting.</p>
180
180
  * @public
181
181
  */
182
- EchoReduction?: MeetingFeatureStatus;
182
+ EchoReduction?: MeetingFeatureStatus | undefined;
183
183
  }
184
184
  /**
185
185
  * <p>The input parameters don't match the service's restrictions.</p>
@@ -188,13 +188,13 @@ export interface AudioFeatures {
188
188
  export declare class BadRequestException extends __BaseException {
189
189
  readonly name: "BadRequestException";
190
190
  readonly $fault: "client";
191
- Code?: string;
192
- Message?: string;
191
+ Code?: string | undefined;
192
+ Message?: string | undefined;
193
193
  /**
194
194
  * <p>The request id associated with the call responsible for the exception.</p>
195
195
  * @public
196
196
  */
197
- RequestId?: string;
197
+ RequestId?: string | undefined;
198
198
  /**
199
199
  * @internal
200
200
  */
@@ -218,7 +218,7 @@ export interface CreateAttendeeRequestItem {
218
218
  * <p>A list of one or more capabilities.</p>
219
219
  * @public
220
220
  */
221
- Capabilities?: AttendeeCapabilities;
221
+ Capabilities?: AttendeeCapabilities | undefined;
222
222
  }
223
223
  /**
224
224
  * @public
@@ -248,17 +248,17 @@ export interface CreateAttendeeError {
248
248
  * Case insensitive.</p>
249
249
  * @public
250
250
  */
251
- ExternalUserId?: string;
251
+ ExternalUserId?: string | undefined;
252
252
  /**
253
253
  * <p>The error code.</p>
254
254
  * @public
255
255
  */
256
- ErrorCode?: string;
256
+ ErrorCode?: string | undefined;
257
257
  /**
258
258
  * <p>The error message.</p>
259
259
  * @public
260
260
  */
261
- ErrorMessage?: string;
261
+ ErrorMessage?: string | undefined;
262
262
  }
263
263
  /**
264
264
  * @public
@@ -268,12 +268,12 @@ export interface BatchCreateAttendeeResponse {
268
268
  * <p>The attendee information, including attendees' IDs and join tokens.</p>
269
269
  * @public
270
270
  */
271
- Attendees?: Attendee[];
271
+ Attendees?: Attendee[] | undefined;
272
272
  /**
273
273
  * <p>If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.</p>
274
274
  * @public
275
275
  */
276
- Errors?: CreateAttendeeError[];
276
+ Errors?: CreateAttendeeError[] | undefined;
277
277
  }
278
278
  /**
279
279
  * <p>The client is permanently forbidden from making the request.</p>
@@ -282,13 +282,13 @@ export interface BatchCreateAttendeeResponse {
282
282
  export declare class ForbiddenException extends __BaseException {
283
283
  readonly name: "ForbiddenException";
284
284
  readonly $fault: "client";
285
- Code?: string;
286
- Message?: string;
285
+ Code?: string | undefined;
286
+ Message?: string | undefined;
287
287
  /**
288
288
  * <p>The request id associated with the call responsible for the exception.</p>
289
289
  * @public
290
290
  */
291
- RequestId?: string;
291
+ RequestId?: string | undefined;
292
292
  /**
293
293
  * @internal
294
294
  */
@@ -301,13 +301,13 @@ export declare class ForbiddenException extends __BaseException {
301
301
  export declare class LimitExceededException extends __BaseException {
302
302
  readonly name: "LimitExceededException";
303
303
  readonly $fault: "client";
304
- Code?: string;
305
- Message?: string;
304
+ Code?: string | undefined;
305
+ Message?: string | undefined;
306
306
  /**
307
307
  * <p>The request id associated with the call responsible for the exception.</p>
308
308
  * @public
309
309
  */
310
- RequestId?: string;
310
+ RequestId?: string | undefined;
311
311
  /**
312
312
  * @internal
313
313
  */
@@ -320,13 +320,13 @@ export declare class LimitExceededException extends __BaseException {
320
320
  export declare class NotFoundException extends __BaseException {
321
321
  readonly name: "NotFoundException";
322
322
  readonly $fault: "client";
323
- Code?: string;
324
- Message?: string;
323
+ Code?: string | undefined;
324
+ Message?: string | undefined;
325
325
  /**
326
326
  * <p>The request ID associated with the call responsible for the exception.</p>
327
327
  * @public
328
328
  */
329
- RequestId?: string;
329
+ RequestId?: string | undefined;
330
330
  /**
331
331
  * @internal
332
332
  */
@@ -339,13 +339,13 @@ export declare class NotFoundException extends __BaseException {
339
339
  export declare class ServiceFailureException extends __BaseException {
340
340
  readonly name: "ServiceFailureException";
341
341
  readonly $fault: "server";
342
- Code?: string;
343
- Message?: string;
342
+ Code?: string | undefined;
343
+ Message?: string | undefined;
344
344
  /**
345
345
  * <p>The ID of the failed request.</p>
346
346
  * @public
347
347
  */
348
- RequestId?: string;
348
+ RequestId?: string | undefined;
349
349
  /**
350
350
  * @internal
351
351
  */
@@ -358,18 +358,18 @@ export declare class ServiceFailureException extends __BaseException {
358
358
  export declare class ServiceUnavailableException extends __BaseException {
359
359
  readonly name: "ServiceUnavailableException";
360
360
  readonly $fault: "server";
361
- Code?: string;
362
- Message?: string;
361
+ Code?: string | undefined;
362
+ Message?: string | undefined;
363
363
  /**
364
364
  * <p>The request id associated with the call responsible for the exception.</p>
365
365
  * @public
366
366
  */
367
- RequestId?: string;
367
+ RequestId?: string | undefined;
368
368
  /**
369
369
  * <p>The number of seconds the caller should wait before retrying.</p>
370
370
  * @public
371
371
  */
372
- RetryAfterSeconds?: string;
372
+ RetryAfterSeconds?: string | undefined;
373
373
  /**
374
374
  * @internal
375
375
  */
@@ -382,13 +382,13 @@ export declare class ServiceUnavailableException extends __BaseException {
382
382
  export declare class ThrottlingException extends __BaseException {
383
383
  readonly name: "ThrottlingException";
384
384
  readonly $fault: "client";
385
- Code?: string;
386
- Message?: string;
385
+ Code?: string | undefined;
386
+ Message?: string | undefined;
387
387
  /**
388
388
  * <p>The ID of the request that exceeded the throttling limit.</p>
389
389
  * @public
390
390
  */
391
- RequestId?: string;
391
+ RequestId?: string | undefined;
392
392
  /**
393
393
  * @internal
394
394
  */
@@ -401,13 +401,13 @@ export declare class ThrottlingException extends __BaseException {
401
401
  export declare class UnauthorizedException extends __BaseException {
402
402
  readonly name: "UnauthorizedException";
403
403
  readonly $fault: "client";
404
- Code?: string;
405
- Message?: string;
404
+ Code?: string | undefined;
405
+ Message?: string | undefined;
406
406
  /**
407
407
  * <p>The request id associated with the call responsible for the exception.</p>
408
408
  * @public
409
409
  */
410
- RequestId?: string;
410
+ RequestId?: string | undefined;
411
411
  /**
412
412
  * @internal
413
413
  */
@@ -420,13 +420,13 @@ export declare class UnauthorizedException extends __BaseException {
420
420
  export declare class UnprocessableEntityException extends __BaseException {
421
421
  readonly name: "UnprocessableEntityException";
422
422
  readonly $fault: "client";
423
- Code?: string;
424
- Message?: string;
423
+ Code?: string | undefined;
424
+ Message?: string | undefined;
425
425
  /**
426
426
  * <p>The request id associated with the call responsible for the exception.</p>
427
427
  * @public
428
428
  */
429
- RequestId?: string;
429
+ RequestId?: string | undefined;
430
430
  /**
431
431
  * @internal
432
432
  */
@@ -459,13 +459,13 @@ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
459
459
  export declare class ConflictException extends __BaseException {
460
460
  readonly name: "ConflictException";
461
461
  readonly $fault: "client";
462
- Code?: string;
463
- Message?: string;
462
+ Code?: string | undefined;
463
+ Message?: string | undefined;
464
464
  /**
465
465
  * <p>The ID of the request involved in the conflict.</p>
466
466
  * @public
467
467
  */
468
- RequestId?: string;
468
+ RequestId?: string | undefined;
469
469
  /**
470
470
  * @internal
471
471
  */
@@ -522,7 +522,7 @@ export interface CreateAttendeeRequest {
522
522
  * </ul>
523
523
  * @public
524
524
  */
525
- Capabilities?: AttendeeCapabilities;
525
+ Capabilities?: AttendeeCapabilities | undefined;
526
526
  }
527
527
  /**
528
528
  * @public
@@ -532,7 +532,7 @@ export interface CreateAttendeeResponse {
532
532
  * <p>The attendee information, including attendee ID and join token.</p>
533
533
  * @public
534
534
  */
535
- Attendee?: Attendee;
535
+ Attendee?: Attendee | undefined;
536
536
  }
537
537
  /**
538
538
  * @public
@@ -564,7 +564,7 @@ export interface ContentFeatures {
564
564
  * </note>
565
565
  * @public
566
566
  */
567
- MaxResolution?: ContentResolution;
567
+ MaxResolution?: ContentResolution | undefined;
568
568
  }
569
569
  /**
570
570
  * @public
@@ -596,7 +596,7 @@ export interface VideoFeatures {
596
596
  * </note>
597
597
  * @public
598
598
  */
599
- MaxResolution?: VideoResolution;
599
+ MaxResolution?: VideoResolution | undefined;
600
600
  }
601
601
  /**
602
602
  * <p>The configuration settings of the features available to a meeting.</p>
@@ -607,22 +607,22 @@ export interface MeetingFeaturesConfiguration {
607
607
  * <p>The configuration settings for the audio features available to a meeting.</p>
608
608
  * @public
609
609
  */
610
- Audio?: AudioFeatures;
610
+ Audio?: AudioFeatures | undefined;
611
611
  /**
612
612
  * <p>The configuration settings for the video features available to a meeting.</p>
613
613
  * @public
614
614
  */
615
- Video?: VideoFeatures;
615
+ Video?: VideoFeatures | undefined;
616
616
  /**
617
617
  * <p>The configuration settings for the content features available to a meeting.</p>
618
618
  * @public
619
619
  */
620
- Content?: ContentFeatures;
620
+ Content?: ContentFeatures | undefined;
621
621
  /**
622
622
  * <p>The configuration settings for the attendee features available to a meeting.</p>
623
623
  * @public
624
624
  */
625
- Attendee?: AttendeeFeatures;
625
+ Attendee?: AttendeeFeatures | undefined;
626
626
  }
627
627
  /**
628
628
  * <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
@@ -633,17 +633,17 @@ export interface NotificationsConfiguration {
633
633
  * <p>The ARN of the Amazon Web Services Lambda function in the notifications configuration.</p>
634
634
  * @public
635
635
  */
636
- LambdaFunctionArn?: string;
636
+ LambdaFunctionArn?: string | undefined;
637
637
  /**
638
638
  * <p>The ARN of the SNS topic.</p>
639
639
  * @public
640
640
  */
641
- SnsTopicArn?: string;
641
+ SnsTopicArn?: string | undefined;
642
642
  /**
643
643
  * <p>The ARN of the SQS queue.</p>
644
644
  * @public
645
645
  */
646
- SqsQueueArn?: string;
646
+ SqsQueueArn?: string | undefined;
647
647
  }
648
648
  /**
649
649
  * <p>A key-value pair that you define.</p>
@@ -669,7 +669,7 @@ export interface CreateMeetingRequest {
669
669
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
670
670
  * @public
671
671
  */
672
- ClientRequestToken?: string;
672
+ ClientRequestToken?: string | undefined;
673
673
  /**
674
674
  * <p>The Region in which to create the meeting.</p>
675
675
  * <p>
@@ -701,7 +701,7 @@ export interface CreateMeetingRequest {
701
701
  * <p>Reserved.</p>
702
702
  * @public
703
703
  */
704
- MeetingHostId?: string;
704
+ MeetingHostId?: string | undefined;
705
705
  /**
706
706
  * <p>The external meeting ID.</p>
707
707
  * <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
@@ -715,22 +715,22 @@ export interface CreateMeetingRequest {
715
715
  * <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
716
716
  * @public
717
717
  */
718
- NotificationsConfiguration?: NotificationsConfiguration;
718
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
719
719
  /**
720
720
  * <p>Lists the audio and video features enabled for a meeting, such as echo reduction.</p>
721
721
  * @public
722
722
  */
723
- MeetingFeatures?: MeetingFeaturesConfiguration;
723
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
724
724
  /**
725
725
  * <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
726
726
  * @public
727
727
  */
728
- PrimaryMeetingId?: string;
728
+ PrimaryMeetingId?: string | undefined;
729
729
  /**
730
730
  * <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
731
731
  * @public
732
732
  */
733
- TenantIds?: string[];
733
+ TenantIds?: string[] | undefined;
734
734
  /**
735
735
  * <p>Applies one or more tags to an Amazon Chime SDK meeting. Note the following:</p>
736
736
  * <ul>
@@ -772,7 +772,7 @@ export interface CreateMeetingRequest {
772
772
  * </note>
773
773
  * @public
774
774
  */
775
- Tags?: Tag[];
775
+ Tags?: Tag[] | undefined;
776
776
  }
777
777
  /**
778
778
  * <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
@@ -783,17 +783,17 @@ export interface MediaPlacement {
783
783
  * <p>The audio host URL.</p>
784
784
  * @public
785
785
  */
786
- AudioHostUrl?: string;
786
+ AudioHostUrl?: string | undefined;
787
787
  /**
788
788
  * <p>The audio fallback URL.</p>
789
789
  * @public
790
790
  */
791
- AudioFallbackUrl?: string;
791
+ AudioFallbackUrl?: string | undefined;
792
792
  /**
793
793
  * <p>The signaling URL.</p>
794
794
  * @public
795
795
  */
796
- SignalingUrl?: string;
796
+ SignalingUrl?: string | undefined;
797
797
  /**
798
798
  * <p>The turn control URL.</p>
799
799
  * <important>
@@ -803,7 +803,7 @@ export interface MediaPlacement {
803
803
  * </important>
804
804
  * @public
805
805
  */
806
- TurnControlUrl?: string;
806
+ TurnControlUrl?: string | undefined;
807
807
  /**
808
808
  * <p>The screen data URL.</p>
809
809
  * <important>
@@ -813,7 +813,7 @@ export interface MediaPlacement {
813
813
  * </important>
814
814
  * @public
815
815
  */
816
- ScreenDataUrl?: string;
816
+ ScreenDataUrl?: string | undefined;
817
817
  /**
818
818
  * <p>The screen viewing URL.</p>
819
819
  * <important>
@@ -823,7 +823,7 @@ export interface MediaPlacement {
823
823
  * </important>
824
824
  * @public
825
825
  */
826
- ScreenViewingUrl?: string;
826
+ ScreenViewingUrl?: string | undefined;
827
827
  /**
828
828
  * <p>The screen sharing URL.</p>
829
829
  * <important>
@@ -833,12 +833,12 @@ export interface MediaPlacement {
833
833
  * </important>
834
834
  * @public
835
835
  */
836
- ScreenSharingUrl?: string;
836
+ ScreenSharingUrl?: string | undefined;
837
837
  /**
838
838
  * <p>The event ingestion URL.</p>
839
839
  * @public
840
840
  */
841
- EventIngestionUrl?: string;
841
+ EventIngestionUrl?: string | undefined;
842
842
  }
843
843
  /**
844
844
  * <p>A meeting created using the Amazon Chime SDK.</p>
@@ -849,12 +849,12 @@ export interface Meeting {
849
849
  * <p>The Amazon Chime SDK meeting ID.</p>
850
850
  * @public
851
851
  */
852
- MeetingId?: string;
852
+ MeetingId?: string | undefined;
853
853
  /**
854
854
  * <p>Reserved.</p>
855
855
  * @public
856
856
  */
857
- MeetingHostId?: string;
857
+ MeetingHostId?: string | undefined;
858
858
  /**
859
859
  * <p>The external meeting ID.</p>
860
860
  * <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
@@ -863,7 +863,7 @@ export interface Meeting {
863
863
  * Case insensitive.</p>
864
864
  * @public
865
865
  */
866
- ExternalMeetingId?: string;
866
+ ExternalMeetingId?: string | undefined;
867
867
  /**
868
868
  * <p>The Region in which you create the meeting. Available values: <code>af-south-1</code>, <code>ap-northeast-1</code>,
869
869
  * <code>ap-northeast-2</code>, <code>ap-south-1</code>, <code>ap-southeast-1</code>, <code>ap-southeast-2</code>, <code>ca-central-1</code>,
@@ -874,32 +874,32 @@ export interface Meeting {
874
874
  * <p>Available values in Amazon Web Services GovCloud (US) Regions: <code>us-gov-east-1</code>, <code>us-gov-west-1</code>.</p>
875
875
  * @public
876
876
  */
877
- MediaRegion?: string;
877
+ MediaRegion?: string | undefined;
878
878
  /**
879
879
  * <p>The media placement for the meeting.</p>
880
880
  * @public
881
881
  */
882
- MediaPlacement?: MediaPlacement;
882
+ MediaPlacement?: MediaPlacement | undefined;
883
883
  /**
884
884
  * <p>The features available to a meeting, such as echo reduction.</p>
885
885
  * @public
886
886
  */
887
- MeetingFeatures?: MeetingFeaturesConfiguration;
887
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
888
888
  /**
889
889
  * <p>When specified, replicates the media from the primary meeting to this meeting.</p>
890
890
  * @public
891
891
  */
892
- PrimaryMeetingId?: string;
892
+ PrimaryMeetingId?: string | undefined;
893
893
  /**
894
894
  * <p>Array of strings.</p>
895
895
  * @public
896
896
  */
897
- TenantIds?: string[];
897
+ TenantIds?: string[] | undefined;
898
898
  /**
899
899
  * <p>The ARN of the meeting.</p>
900
900
  * @public
901
901
  */
902
- MeetingArn?: string;
902
+ MeetingArn?: string | undefined;
903
903
  }
904
904
  /**
905
905
  * @public
@@ -910,7 +910,7 @@ export interface CreateMeetingResponse {
910
910
  * <code>MediaPlacement</code>.</p>
911
911
  * @public
912
912
  */
913
- Meeting?: Meeting;
913
+ Meeting?: Meeting | undefined;
914
914
  }
915
915
  /**
916
916
  * @public
@@ -920,7 +920,7 @@ export interface CreateMeetingWithAttendeesRequest {
920
920
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
921
921
  * @public
922
922
  */
923
- ClientRequestToken?: string;
923
+ ClientRequestToken?: string | undefined;
924
924
  /**
925
925
  * <p>The Region in which to create the meeting.</p>
926
926
  * <p>
@@ -952,7 +952,7 @@ export interface CreateMeetingWithAttendeesRequest {
952
952
  * <p>Reserved.</p>
953
953
  * @public
954
954
  */
955
- MeetingHostId?: string;
955
+ MeetingHostId?: string | undefined;
956
956
  /**
957
957
  * <p>The external meeting ID.</p>
958
958
  * <p>Pattern: <code>[-_&@+=,()\{\}\[\]\/«».:|'"#a-zA-Z0-9À-ÿ\s]*</code>
@@ -966,12 +966,12 @@ export interface CreateMeetingWithAttendeesRequest {
966
966
  * <p>Lists the audio and video features enabled for a meeting, such as echo reduction.</p>
967
967
  * @public
968
968
  */
969
- MeetingFeatures?: MeetingFeaturesConfiguration;
969
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
970
970
  /**
971
971
  * <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
972
972
  * @public
973
973
  */
974
- NotificationsConfiguration?: NotificationsConfiguration;
974
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
975
975
  /**
976
976
  * <p>The attendee information, including attendees' IDs and join tokens.</p>
977
977
  * @public
@@ -981,17 +981,17 @@ export interface CreateMeetingWithAttendeesRequest {
981
981
  * <p>When specified, replicates the media from the primary meeting to the new meeting.</p>
982
982
  * @public
983
983
  */
984
- PrimaryMeetingId?: string;
984
+ PrimaryMeetingId?: string | undefined;
985
985
  /**
986
986
  * <p>A consistent and opaque identifier, created and maintained by the builder to represent a segment of their users.</p>
987
987
  * @public
988
988
  */
989
- TenantIds?: string[];
989
+ TenantIds?: string[] | undefined;
990
990
  /**
991
991
  * <p>The tags in the request.</p>
992
992
  * @public
993
993
  */
994
- Tags?: Tag[];
994
+ Tags?: Tag[] | undefined;
995
995
  }
996
996
  /**
997
997
  * @public
@@ -1002,17 +1002,17 @@ export interface CreateMeetingWithAttendeesResponse {
1002
1002
  * <code>MediaPlacement</code>.</p>
1003
1003
  * @public
1004
1004
  */
1005
- Meeting?: Meeting;
1005
+ Meeting?: Meeting | undefined;
1006
1006
  /**
1007
1007
  * <p>The attendee information, including attendees' IDs and join tokens.</p>
1008
1008
  * @public
1009
1009
  */
1010
- Attendees?: Attendee[];
1010
+ Attendees?: Attendee[] | undefined;
1011
1011
  /**
1012
1012
  * <p>If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.</p>
1013
1013
  * @public
1014
1014
  */
1015
- Errors?: CreateAttendeeError[];
1015
+ Errors?: CreateAttendeeError[] | undefined;
1016
1016
  }
1017
1017
  /**
1018
1018
  * @public
@@ -1062,7 +1062,7 @@ export interface GetAttendeeResponse {
1062
1062
  * <p>The Amazon Chime SDK attendee information.</p>
1063
1063
  * @public
1064
1064
  */
1065
- Attendee?: Attendee;
1065
+ Attendee?: Attendee | undefined;
1066
1066
  }
1067
1067
  /**
1068
1068
  * @public
@@ -1082,7 +1082,7 @@ export interface GetMeetingResponse {
1082
1082
  * <p>The Amazon Chime SDK meeting information.</p>
1083
1083
  * @public
1084
1084
  */
1085
- Meeting?: Meeting;
1085
+ Meeting?: Meeting | undefined;
1086
1086
  }
1087
1087
  /**
1088
1088
  * @public
@@ -1097,12 +1097,12 @@ export interface ListAttendeesRequest {
1097
1097
  * <p>The token to use to retrieve the next page of results.</p>
1098
1098
  * @public
1099
1099
  */
1100
- NextToken?: string;
1100
+ NextToken?: string | undefined;
1101
1101
  /**
1102
1102
  * <p>The maximum number of results to return in a single call.</p>
1103
1103
  * @public
1104
1104
  */
1105
- MaxResults?: number;
1105
+ MaxResults?: number | undefined;
1106
1106
  }
1107
1107
  /**
1108
1108
  * @public
@@ -1112,12 +1112,12 @@ export interface ListAttendeesResponse {
1112
1112
  * <p>The Amazon Chime SDK attendee information.</p>
1113
1113
  * @public
1114
1114
  */
1115
- Attendees?: Attendee[];
1115
+ Attendees?: Attendee[] | undefined;
1116
1116
  /**
1117
1117
  * <p>The token to use to retrieve the next page of results.</p>
1118
1118
  * @public
1119
1119
  */
1120
- NextToken?: string;
1120
+ NextToken?: string | undefined;
1121
1121
  }
1122
1122
  /**
1123
1123
  * @public
@@ -1137,7 +1137,7 @@ export interface ListTagsForResourceResponse {
1137
1137
  * <p>The tags requested for the specified resource.</p>
1138
1138
  * @public
1139
1139
  */
1140
- Tags?: Tag[];
1140
+ Tags?: Tag[] | undefined;
1141
1141
  }
1142
1142
  /**
1143
1143
  * <p>The resource that you want to tag couldn't be found.</p>
@@ -1146,18 +1146,18 @@ export interface ListTagsForResourceResponse {
1146
1146
  export declare class ResourceNotFoundException extends __BaseException {
1147
1147
  readonly name: "ResourceNotFoundException";
1148
1148
  readonly $fault: "client";
1149
- Code?: string;
1150
- Message?: string;
1149
+ Code?: string | undefined;
1150
+ Message?: string | undefined;
1151
1151
  /**
1152
1152
  * <p>The ID of the resource that couldn't be found.</p>
1153
1153
  * @public
1154
1154
  */
1155
- RequestId?: string;
1155
+ RequestId?: string | undefined;
1156
1156
  /**
1157
1157
  * <p>The name of the resource that couldn't be found.</p>
1158
1158
  * @public
1159
1159
  */
1160
- ResourceName?: string;
1160
+ ResourceName?: string | undefined;
1161
1161
  /**
1162
1162
  * @internal
1163
1163
  */
@@ -1254,17 +1254,17 @@ export interface EngineTranscribeMedicalSettings {
1254
1254
  * <p>The name of the vocabulary passed to Amazon Transcribe Medical.</p>
1255
1255
  * @public
1256
1256
  */
1257
- VocabularyName?: string;
1257
+ VocabularyName?: string | undefined;
1258
1258
  /**
1259
1259
  * <p>The Amazon Web Services Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region. </p>
1260
1260
  * @public
1261
1261
  */
1262
- Region?: TranscribeMedicalRegion;
1262
+ Region?: TranscribeMedicalRegion | undefined;
1263
1263
  /**
1264
1264
  * <p>Set this field to <code>PHI</code> to identify personal health information in the transcription output.</p>
1265
1265
  * @public
1266
1266
  */
1267
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
1267
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType | undefined;
1268
1268
  }
1269
1269
  /**
1270
1270
  * @public
@@ -1375,7 +1375,7 @@ export interface EngineTranscribeSettings {
1375
1375
  * <p>If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> to enable automatic language identification.</p>
1376
1376
  * @public
1377
1377
  */
1378
- LanguageCode?: TranscribeLanguageCode;
1378
+ LanguageCode?: TranscribeLanguageCode | undefined;
1379
1379
  /**
1380
1380
  * <p>Specify how you want your vocabulary filter applied to your transcript.</p>
1381
1381
  * <p>To replace words with <code>***</code>, choose <code>mask</code>.</p>
@@ -1383,14 +1383,14 @@ export interface EngineTranscribeSettings {
1383
1383
  * <p>To flag words without changing them, choose <code>tag</code>.</p>
1384
1384
  * @public
1385
1385
  */
1386
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
1386
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
1387
1387
  /**
1388
1388
  * <p>Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. </p>
1389
1389
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
1390
1390
  * <p>If you include <code>IdentifyLanguage</code> and want to use one or more vocabulary filters with your transcription, use the <code>VocabularyFilterNames</code> parameter instead.</p>
1391
1391
  * @public
1392
1392
  */
1393
- VocabularyFilterName?: string;
1393
+ VocabularyFilterName?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>Specify the name of the custom vocabulary that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
1396
1396
  * <p>If you use Amazon Transcribe multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
@@ -1398,7 +1398,7 @@ export interface EngineTranscribeSettings {
1398
1398
  * parameter instead.</p>
1399
1399
  * @public
1400
1400
  */
1401
- VocabularyName?: string;
1401
+ VocabularyName?: string | undefined;
1402
1402
  /**
1403
1403
  * <p>The Amazon Web Services Region in which to use Amazon Transcribe.</p>
1404
1404
  * <p>If you don't specify a Region, then the <a href="https://docs.aws.amazon.com/chime-sdk/latest/APIReference/API_meeting-chime_CreateMeeting.html">MediaRegion</a> of the meeting is used.
@@ -1408,18 +1408,18 @@ export interface EngineTranscribeSettings {
1408
1408
  * <i>Amazon Chime SDK Developer Guide</i>.</p>
1409
1409
  * @public
1410
1410
  */
1411
- Region?: TranscribeRegion;
1411
+ Region?: TranscribeRegion | undefined;
1412
1412
  /**
1413
1413
  * <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
1414
1414
  * @public
1415
1415
  */
1416
- EnablePartialResultsStabilization?: boolean;
1416
+ EnablePartialResultsStabilization?: boolean | undefined;
1417
1417
  /**
1418
1418
  * <p>Specify the level of stability to use when you enable partial results stabilization (<code>EnablePartialResultsStabilization</code>).</p>
1419
1419
  * <p>Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.</p>
1420
1420
  * @public
1421
1421
  */
1422
- PartialResultsStability?: TranscribePartialResultsStability;
1422
+ PartialResultsStability?: TranscribePartialResultsStability | undefined;
1423
1423
  /**
1424
1424
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
1425
1425
  * <note>
@@ -1427,7 +1427,7 @@ export interface EngineTranscribeSettings {
1427
1427
  * </note>
1428
1428
  * @public
1429
1429
  */
1430
- ContentIdentificationType?: TranscribeContentIdentificationType;
1430
+ ContentIdentificationType?: TranscribeContentIdentificationType | undefined;
1431
1431
  /**
1432
1432
  * <p>Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, all PII is redacted.</p>
1433
1433
  * <note>
@@ -1435,7 +1435,7 @@ export interface EngineTranscribeSettings {
1435
1435
  * </note>
1436
1436
  * @public
1437
1437
  */
1438
- ContentRedactionType?: TranscribeContentRedactionType;
1438
+ ContentRedactionType?: TranscribeContentRedactionType | undefined;
1439
1439
  /**
1440
1440
  * <p>Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
1441
1441
  * <p>Values must be comma-separated and can include: <code>ADDRESS</code>, <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>
@@ -1445,7 +1445,7 @@ export interface EngineTranscribeSettings {
1445
1445
  * <p>If you include <code>ContentRedactionType</code> or <code>ContentIdentificationType</code>, but do not include PiiEntityTypes, all PII is redacted or identified.</p>
1446
1446
  * @public
1447
1447
  */
1448
- PiiEntityTypes?: string;
1448
+ PiiEntityTypes?: string | undefined;
1449
1449
  /**
1450
1450
  * <p>Specify the name of the custom language model that you want to use when processing your transcription. Note that language model names are case sensitive.</p>
1451
1451
  * <p>The language of the specified language model must match the language code. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated with
@@ -1453,7 +1453,7 @@ export interface EngineTranscribeSettings {
1453
1453
  * <p>If you use Amazon Transcribe in multiple Regions, the custom language model must be available in Amazon Transcribe in each Region.</p>
1454
1454
  * @public
1455
1455
  */
1456
- LanguageModelName?: string;
1456
+ LanguageModelName?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>Enables automatic language identification for your transcription.</p>
1459
1459
  * <p>If you include <code>IdentifyLanguage</code>, you can optionally use <code>LanguageOptions</code> to include a list of language codes that you think may be present in your audio stream.
@@ -1463,7 +1463,7 @@ export interface EngineTranscribeSettings {
1463
1463
  * <p>Language identification can't be combined with custom language models or redaction.</p>
1464
1464
  * @public
1465
1465
  */
1466
- IdentifyLanguage?: boolean;
1466
+ IdentifyLanguage?: boolean | undefined;
1467
1467
  /**
1468
1468
  * <p>Specify two or more language codes that represent the languages you think may be present in your media; including more than five is not recommended. If you're unsure what languages
1469
1469
  * are present, do not include this parameter.</p>
@@ -1474,20 +1474,20 @@ export interface EngineTranscribeSettings {
1474
1474
  * </important>
1475
1475
  * @public
1476
1476
  */
1477
- LanguageOptions?: string;
1477
+ LanguageOptions?: string | undefined;
1478
1478
  /**
1479
1479
  * <p>Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>.</p>
1480
1480
  * <p>You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>.</p>
1481
1481
  * @public
1482
1482
  */
1483
- PreferredLanguage?: TranscribeLanguageCode;
1483
+ PreferredLanguage?: TranscribeLanguageCode | undefined;
1484
1484
  /**
1485
1485
  * <p>Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
1486
1486
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
1487
1487
  * <p>If you don't include <code>IdentifyLanguage</code> and want to use a custom vocabulary with your transcription, use the <code>VocabularyName</code> parameter instead.</p>
1488
1488
  * @public
1489
1489
  */
1490
- VocabularyNames?: string;
1490
+ VocabularyNames?: string | undefined;
1491
1491
  /**
1492
1492
  * <p>Specify the names of the custom vocabulary filters that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive.</p>
1493
1493
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
@@ -1495,7 +1495,7 @@ export interface EngineTranscribeSettings {
1495
1495
  * parameter instead.</p>
1496
1496
  * @public
1497
1497
  */
1498
- VocabularyFilterNames?: string;
1498
+ VocabularyFilterNames?: string | undefined;
1499
1499
  }
1500
1500
  /**
1501
1501
  * <p>The configuration for the current transcription operation. Must contain <code>EngineTranscribeSettings</code> or <code>EngineTranscribeMedicalSettings</code>.</p>
@@ -1506,12 +1506,12 @@ export interface TranscriptionConfiguration {
1506
1506
  * <p>The transcription configuration settings passed to Amazon Transcribe.</p>
1507
1507
  * @public
1508
1508
  */
1509
- EngineTranscribeSettings?: EngineTranscribeSettings;
1509
+ EngineTranscribeSettings?: EngineTranscribeSettings | undefined;
1510
1510
  /**
1511
1511
  * <p>The transcription configuration settings passed to Amazon Transcribe Medical.</p>
1512
1512
  * @public
1513
1513
  */
1514
- EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
1514
+ EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings | undefined;
1515
1515
  }
1516
1516
  /**
1517
1517
  * @public
@@ -1566,18 +1566,18 @@ export interface TagResourceResponse {
1566
1566
  export declare class TooManyTagsException extends __BaseException {
1567
1567
  readonly name: "TooManyTagsException";
1568
1568
  readonly $fault: "client";
1569
- Code?: string;
1570
- Message?: string;
1569
+ Code?: string | undefined;
1570
+ Message?: string | undefined;
1571
1571
  /**
1572
1572
  * <p>The ID of the request that contains too many tags.</p>
1573
1573
  * @public
1574
1574
  */
1575
- RequestId?: string;
1575
+ RequestId?: string | undefined;
1576
1576
  /**
1577
1577
  * <p>The name of the resource that received too many tags.</p>
1578
1578
  * @public
1579
1579
  */
1580
- ResourceName?: string;
1580
+ ResourceName?: string | undefined;
1581
1581
  /**
1582
1582
  * @internal
1583
1583
  */
@@ -1631,7 +1631,7 @@ export interface UpdateAttendeeCapabilitiesResponse {
1631
1631
  * <p>The updated attendee data.</p>
1632
1632
  * @public
1633
1633
  */
1634
- Attendee?: Attendee;
1634
+ Attendee?: Attendee | undefined;
1635
1635
  }
1636
1636
  /**
1637
1637
  * @internal
@@ -14,13 +14,13 @@ export interface AttendeeCapabilities {
14
14
  Content: MediaCapabilities | undefined;
15
15
  }
16
16
  export interface Attendee {
17
- ExternalUserId?: string;
18
- AttendeeId?: string;
19
- JoinToken?: string;
20
- Capabilities?: AttendeeCapabilities;
17
+ ExternalUserId?: string | undefined;
18
+ AttendeeId?: string | undefined;
19
+ JoinToken?: string | undefined;
20
+ Capabilities?: AttendeeCapabilities | undefined;
21
21
  }
22
22
  export interface AttendeeFeatures {
23
- MaxCount?: number;
23
+ MaxCount?: number | undefined;
24
24
  }
25
25
  export interface AttendeeIdItem {
26
26
  AttendeeId: string | undefined;
@@ -32,49 +32,49 @@ export declare const MeetingFeatureStatus: {
32
32
  export type MeetingFeatureStatus =
33
33
  (typeof MeetingFeatureStatus)[keyof typeof MeetingFeatureStatus];
34
34
  export interface AudioFeatures {
35
- EchoReduction?: MeetingFeatureStatus;
35
+ EchoReduction?: MeetingFeatureStatus | undefined;
36
36
  }
37
37
  export declare class BadRequestException extends __BaseException {
38
38
  readonly name: "BadRequestException";
39
39
  readonly $fault: "client";
40
- Code?: string;
41
- Message?: string;
42
- RequestId?: string;
40
+ Code?: string | undefined;
41
+ Message?: string | undefined;
42
+ RequestId?: string | undefined;
43
43
  constructor(
44
44
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
45
45
  );
46
46
  }
47
47
  export interface CreateAttendeeRequestItem {
48
48
  ExternalUserId: string | undefined;
49
- Capabilities?: AttendeeCapabilities;
49
+ Capabilities?: AttendeeCapabilities | undefined;
50
50
  }
51
51
  export interface BatchCreateAttendeeRequest {
52
52
  MeetingId: string | undefined;
53
53
  Attendees: CreateAttendeeRequestItem[] | undefined;
54
54
  }
55
55
  export interface CreateAttendeeError {
56
- ExternalUserId?: string;
57
- ErrorCode?: string;
58
- ErrorMessage?: string;
56
+ ExternalUserId?: string | undefined;
57
+ ErrorCode?: string | undefined;
58
+ ErrorMessage?: string | undefined;
59
59
  }
60
60
  export interface BatchCreateAttendeeResponse {
61
- Attendees?: Attendee[];
62
- Errors?: CreateAttendeeError[];
61
+ Attendees?: Attendee[] | undefined;
62
+ Errors?: CreateAttendeeError[] | undefined;
63
63
  }
64
64
  export declare class ForbiddenException extends __BaseException {
65
65
  readonly name: "ForbiddenException";
66
66
  readonly $fault: "client";
67
- Code?: string;
68
- Message?: string;
69
- RequestId?: string;
67
+ Code?: string | undefined;
68
+ Message?: string | undefined;
69
+ RequestId?: string | undefined;
70
70
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
71
71
  }
72
72
  export declare class LimitExceededException extends __BaseException {
73
73
  readonly name: "LimitExceededException";
74
74
  readonly $fault: "client";
75
- Code?: string;
76
- Message?: string;
77
- RequestId?: string;
75
+ Code?: string | undefined;
76
+ Message?: string | undefined;
77
+ RequestId?: string | undefined;
78
78
  constructor(
79
79
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
80
80
  );
@@ -82,17 +82,17 @@ export declare class LimitExceededException extends __BaseException {
82
82
  export declare class NotFoundException extends __BaseException {
83
83
  readonly name: "NotFoundException";
84
84
  readonly $fault: "client";
85
- Code?: string;
86
- Message?: string;
87
- RequestId?: string;
85
+ Code?: string | undefined;
86
+ Message?: string | undefined;
87
+ RequestId?: string | undefined;
88
88
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
89
89
  }
90
90
  export declare class ServiceFailureException extends __BaseException {
91
91
  readonly name: "ServiceFailureException";
92
92
  readonly $fault: "server";
93
- Code?: string;
94
- Message?: string;
95
- RequestId?: string;
93
+ Code?: string | undefined;
94
+ Message?: string | undefined;
95
+ RequestId?: string | undefined;
96
96
  constructor(
97
97
  opts: __ExceptionOptionType<ServiceFailureException, __BaseException>
98
98
  );
@@ -100,10 +100,10 @@ export declare class ServiceFailureException extends __BaseException {
100
100
  export declare class ServiceUnavailableException extends __BaseException {
101
101
  readonly name: "ServiceUnavailableException";
102
102
  readonly $fault: "server";
103
- Code?: string;
104
- Message?: string;
105
- RequestId?: string;
106
- RetryAfterSeconds?: string;
103
+ Code?: string | undefined;
104
+ Message?: string | undefined;
105
+ RequestId?: string | undefined;
106
+ RetryAfterSeconds?: string | undefined;
107
107
  constructor(
108
108
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
109
109
  );
@@ -111,9 +111,9 @@ export declare class ServiceUnavailableException extends __BaseException {
111
111
  export declare class ThrottlingException extends __BaseException {
112
112
  readonly name: "ThrottlingException";
113
113
  readonly $fault: "client";
114
- Code?: string;
115
- Message?: string;
116
- RequestId?: string;
114
+ Code?: string | undefined;
115
+ Message?: string | undefined;
116
+ RequestId?: string | undefined;
117
117
  constructor(
118
118
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
119
119
  );
@@ -121,9 +121,9 @@ export declare class ThrottlingException extends __BaseException {
121
121
  export declare class UnauthorizedException extends __BaseException {
122
122
  readonly name: "UnauthorizedException";
123
123
  readonly $fault: "client";
124
- Code?: string;
125
- Message?: string;
126
- RequestId?: string;
124
+ Code?: string | undefined;
125
+ Message?: string | undefined;
126
+ RequestId?: string | undefined;
127
127
  constructor(
128
128
  opts: __ExceptionOptionType<UnauthorizedException, __BaseException>
129
129
  );
@@ -131,9 +131,9 @@ export declare class UnauthorizedException extends __BaseException {
131
131
  export declare class UnprocessableEntityException extends __BaseException {
132
132
  readonly name: "UnprocessableEntityException";
133
133
  readonly $fault: "client";
134
- Code?: string;
135
- Message?: string;
136
- RequestId?: string;
134
+ Code?: string | undefined;
135
+ Message?: string | undefined;
136
+ RequestId?: string | undefined;
137
137
  constructor(
138
138
  opts: __ExceptionOptionType<UnprocessableEntityException, __BaseException>
139
139
  );
@@ -146,18 +146,18 @@ export interface BatchUpdateAttendeeCapabilitiesExceptRequest {
146
146
  export declare class ConflictException extends __BaseException {
147
147
  readonly name: "ConflictException";
148
148
  readonly $fault: "client";
149
- Code?: string;
150
- Message?: string;
151
- RequestId?: string;
149
+ Code?: string | undefined;
150
+ Message?: string | undefined;
151
+ RequestId?: string | undefined;
152
152
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
153
153
  }
154
154
  export interface CreateAttendeeRequest {
155
155
  MeetingId: string | undefined;
156
156
  ExternalUserId: string | undefined;
157
- Capabilities?: AttendeeCapabilities;
157
+ Capabilities?: AttendeeCapabilities | undefined;
158
158
  }
159
159
  export interface CreateAttendeeResponse {
160
- Attendee?: Attendee;
160
+ Attendee?: Attendee | undefined;
161
161
  }
162
162
  export declare const ContentResolution: {
163
163
  readonly FHD: "FHD";
@@ -167,7 +167,7 @@ export declare const ContentResolution: {
167
167
  export type ContentResolution =
168
168
  (typeof ContentResolution)[keyof typeof ContentResolution];
169
169
  export interface ContentFeatures {
170
- MaxResolution?: ContentResolution;
170
+ MaxResolution?: ContentResolution | undefined;
171
171
  }
172
172
  export declare const VideoResolution: {
173
173
  readonly FHD: "FHD";
@@ -177,74 +177,74 @@ export declare const VideoResolution: {
177
177
  export type VideoResolution =
178
178
  (typeof VideoResolution)[keyof typeof VideoResolution];
179
179
  export interface VideoFeatures {
180
- MaxResolution?: VideoResolution;
180
+ MaxResolution?: VideoResolution | undefined;
181
181
  }
182
182
  export interface MeetingFeaturesConfiguration {
183
- Audio?: AudioFeatures;
184
- Video?: VideoFeatures;
185
- Content?: ContentFeatures;
186
- Attendee?: AttendeeFeatures;
183
+ Audio?: AudioFeatures | undefined;
184
+ Video?: VideoFeatures | undefined;
185
+ Content?: ContentFeatures | undefined;
186
+ Attendee?: AttendeeFeatures | undefined;
187
187
  }
188
188
  export interface NotificationsConfiguration {
189
- LambdaFunctionArn?: string;
190
- SnsTopicArn?: string;
191
- SqsQueueArn?: string;
189
+ LambdaFunctionArn?: string | undefined;
190
+ SnsTopicArn?: string | undefined;
191
+ SqsQueueArn?: string | undefined;
192
192
  }
193
193
  export interface Tag {
194
194
  Key: string | undefined;
195
195
  Value: string | undefined;
196
196
  }
197
197
  export interface CreateMeetingRequest {
198
- ClientRequestToken?: string;
198
+ ClientRequestToken?: string | undefined;
199
199
  MediaRegion: string | undefined;
200
- MeetingHostId?: string;
200
+ MeetingHostId?: string | undefined;
201
201
  ExternalMeetingId: string | undefined;
202
- NotificationsConfiguration?: NotificationsConfiguration;
203
- MeetingFeatures?: MeetingFeaturesConfiguration;
204
- PrimaryMeetingId?: string;
205
- TenantIds?: string[];
206
- Tags?: Tag[];
202
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
203
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
204
+ PrimaryMeetingId?: string | undefined;
205
+ TenantIds?: string[] | undefined;
206
+ Tags?: Tag[] | undefined;
207
207
  }
208
208
  export interface MediaPlacement {
209
- AudioHostUrl?: string;
210
- AudioFallbackUrl?: string;
211
- SignalingUrl?: string;
212
- TurnControlUrl?: string;
213
- ScreenDataUrl?: string;
214
- ScreenViewingUrl?: string;
215
- ScreenSharingUrl?: string;
216
- EventIngestionUrl?: string;
209
+ AudioHostUrl?: string | undefined;
210
+ AudioFallbackUrl?: string | undefined;
211
+ SignalingUrl?: string | undefined;
212
+ TurnControlUrl?: string | undefined;
213
+ ScreenDataUrl?: string | undefined;
214
+ ScreenViewingUrl?: string | undefined;
215
+ ScreenSharingUrl?: string | undefined;
216
+ EventIngestionUrl?: string | undefined;
217
217
  }
218
218
  export interface Meeting {
219
- MeetingId?: string;
220
- MeetingHostId?: string;
221
- ExternalMeetingId?: string;
222
- MediaRegion?: string;
223
- MediaPlacement?: MediaPlacement;
224
- MeetingFeatures?: MeetingFeaturesConfiguration;
225
- PrimaryMeetingId?: string;
226
- TenantIds?: string[];
227
- MeetingArn?: string;
219
+ MeetingId?: string | undefined;
220
+ MeetingHostId?: string | undefined;
221
+ ExternalMeetingId?: string | undefined;
222
+ MediaRegion?: string | undefined;
223
+ MediaPlacement?: MediaPlacement | undefined;
224
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
225
+ PrimaryMeetingId?: string | undefined;
226
+ TenantIds?: string[] | undefined;
227
+ MeetingArn?: string | undefined;
228
228
  }
229
229
  export interface CreateMeetingResponse {
230
- Meeting?: Meeting;
230
+ Meeting?: Meeting | undefined;
231
231
  }
232
232
  export interface CreateMeetingWithAttendeesRequest {
233
- ClientRequestToken?: string;
233
+ ClientRequestToken?: string | undefined;
234
234
  MediaRegion: string | undefined;
235
- MeetingHostId?: string;
235
+ MeetingHostId?: string | undefined;
236
236
  ExternalMeetingId: string | undefined;
237
- MeetingFeatures?: MeetingFeaturesConfiguration;
238
- NotificationsConfiguration?: NotificationsConfiguration;
237
+ MeetingFeatures?: MeetingFeaturesConfiguration | undefined;
238
+ NotificationsConfiguration?: NotificationsConfiguration | undefined;
239
239
  Attendees: CreateAttendeeRequestItem[] | undefined;
240
- PrimaryMeetingId?: string;
241
- TenantIds?: string[];
242
- Tags?: Tag[];
240
+ PrimaryMeetingId?: string | undefined;
241
+ TenantIds?: string[] | undefined;
242
+ Tags?: Tag[] | undefined;
243
243
  }
244
244
  export interface CreateMeetingWithAttendeesResponse {
245
- Meeting?: Meeting;
246
- Attendees?: Attendee[];
247
- Errors?: CreateAttendeeError[];
245
+ Meeting?: Meeting | undefined;
246
+ Attendees?: Attendee[] | undefined;
247
+ Errors?: CreateAttendeeError[] | undefined;
248
248
  }
249
249
  export interface DeleteAttendeeRequest {
250
250
  MeetingId: string | undefined;
@@ -258,36 +258,36 @@ export interface GetAttendeeRequest {
258
258
  AttendeeId: string | undefined;
259
259
  }
260
260
  export interface GetAttendeeResponse {
261
- Attendee?: Attendee;
261
+ Attendee?: Attendee | undefined;
262
262
  }
263
263
  export interface GetMeetingRequest {
264
264
  MeetingId: string | undefined;
265
265
  }
266
266
  export interface GetMeetingResponse {
267
- Meeting?: Meeting;
267
+ Meeting?: Meeting | undefined;
268
268
  }
269
269
  export interface ListAttendeesRequest {
270
270
  MeetingId: string | undefined;
271
- NextToken?: string;
272
- MaxResults?: number;
271
+ NextToken?: string | undefined;
272
+ MaxResults?: number | undefined;
273
273
  }
274
274
  export interface ListAttendeesResponse {
275
- Attendees?: Attendee[];
276
- NextToken?: string;
275
+ Attendees?: Attendee[] | undefined;
276
+ NextToken?: string | undefined;
277
277
  }
278
278
  export interface ListTagsForResourceRequest {
279
279
  ResourceARN: string | undefined;
280
280
  }
281
281
  export interface ListTagsForResourceResponse {
282
- Tags?: Tag[];
282
+ Tags?: Tag[] | undefined;
283
283
  }
284
284
  export declare class ResourceNotFoundException extends __BaseException {
285
285
  readonly name: "ResourceNotFoundException";
286
286
  readonly $fault: "client";
287
- Code?: string;
288
- Message?: string;
289
- RequestId?: string;
290
- ResourceName?: string;
287
+ Code?: string | undefined;
288
+ Message?: string | undefined;
289
+ RequestId?: string | undefined;
290
+ ResourceName?: string | undefined;
291
291
  constructor(
292
292
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
293
293
  );
@@ -333,9 +333,11 @@ export interface EngineTranscribeMedicalSettings {
333
333
  LanguageCode: TranscribeMedicalLanguageCode | undefined;
334
334
  Specialty: TranscribeMedicalSpecialty | undefined;
335
335
  Type: TranscribeMedicalType | undefined;
336
- VocabularyName?: string;
337
- Region?: TranscribeMedicalRegion;
338
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
336
+ VocabularyName?: string | undefined;
337
+ Region?: TranscribeMedicalRegion | undefined;
338
+ ContentIdentificationType?:
339
+ | TranscribeMedicalContentIdentificationType
340
+ | undefined;
339
341
  }
340
342
  export declare const TranscribeContentIdentificationType: {
341
343
  readonly PII: "PII";
@@ -397,26 +399,26 @@ export declare const TranscribeVocabularyFilterMethod: {
397
399
  export type TranscribeVocabularyFilterMethod =
398
400
  (typeof TranscribeVocabularyFilterMethod)[keyof typeof TranscribeVocabularyFilterMethod];
399
401
  export interface EngineTranscribeSettings {
400
- LanguageCode?: TranscribeLanguageCode;
401
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
402
- VocabularyFilterName?: string;
403
- VocabularyName?: string;
404
- Region?: TranscribeRegion;
405
- EnablePartialResultsStabilization?: boolean;
406
- PartialResultsStability?: TranscribePartialResultsStability;
407
- ContentIdentificationType?: TranscribeContentIdentificationType;
408
- ContentRedactionType?: TranscribeContentRedactionType;
409
- PiiEntityTypes?: string;
410
- LanguageModelName?: string;
411
- IdentifyLanguage?: boolean;
412
- LanguageOptions?: string;
413
- PreferredLanguage?: TranscribeLanguageCode;
414
- VocabularyNames?: string;
415
- VocabularyFilterNames?: string;
402
+ LanguageCode?: TranscribeLanguageCode | undefined;
403
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
404
+ VocabularyFilterName?: string | undefined;
405
+ VocabularyName?: string | undefined;
406
+ Region?: TranscribeRegion | undefined;
407
+ EnablePartialResultsStabilization?: boolean | undefined;
408
+ PartialResultsStability?: TranscribePartialResultsStability | undefined;
409
+ ContentIdentificationType?: TranscribeContentIdentificationType | undefined;
410
+ ContentRedactionType?: TranscribeContentRedactionType | undefined;
411
+ PiiEntityTypes?: string | undefined;
412
+ LanguageModelName?: string | undefined;
413
+ IdentifyLanguage?: boolean | undefined;
414
+ LanguageOptions?: string | undefined;
415
+ PreferredLanguage?: TranscribeLanguageCode | undefined;
416
+ VocabularyNames?: string | undefined;
417
+ VocabularyFilterNames?: string | undefined;
416
418
  }
417
419
  export interface TranscriptionConfiguration {
418
- EngineTranscribeSettings?: EngineTranscribeSettings;
419
- EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
420
+ EngineTranscribeSettings?: EngineTranscribeSettings | undefined;
421
+ EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings | undefined;
420
422
  }
421
423
  export interface StartMeetingTranscriptionRequest {
422
424
  MeetingId: string | undefined;
@@ -433,10 +435,10 @@ export interface TagResourceResponse {}
433
435
  export declare class TooManyTagsException extends __BaseException {
434
436
  readonly name: "TooManyTagsException";
435
437
  readonly $fault: "client";
436
- Code?: string;
437
- Message?: string;
438
- RequestId?: string;
439
- ResourceName?: string;
438
+ Code?: string | undefined;
439
+ Message?: string | undefined;
440
+ RequestId?: string | undefined;
441
+ ResourceName?: string | undefined;
440
442
  constructor(
441
443
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
442
444
  );
@@ -452,7 +454,7 @@ export interface UpdateAttendeeCapabilitiesRequest {
452
454
  Capabilities: AttendeeCapabilities | undefined;
453
455
  }
454
456
  export interface UpdateAttendeeCapabilitiesResponse {
455
- Attendee?: Attendee;
457
+ Attendee?: Attendee | undefined;
456
458
  }
457
459
  export declare const AttendeeFilterSensitiveLog: (obj: Attendee) => any;
458
460
  export declare const CreateAttendeeRequestItemFilterSensitiveLog: (
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-chime-sdk-meetings",
3
3
  "description": "AWS SDK for JavaScript Chime Sdk Meetings Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
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-chime-sdk-meetings",
@@ -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.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
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.687.0",
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.687.0",
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",