@aws-sdk/client-chime-sdk-meetings 3.687.0 → 3.692.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 +126 -126
- package/dist-types/ts3.4/models/models_0.d.ts +128 -126
- package/package.json +35 -35
|
@@ -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
|