aws-sdk 2.956.0 → 2.957.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.
@@ -1291,6 +1291,22 @@ declare class Chime extends Service {
1291
1291
  * Sends a message to a particular channel that the member is a part of. The x-amz-chime-bearer request header is mandatory. Use the AppInstanceUserArn of the user that makes the API call as the value in the header. Also, STANDARD messages can contain 4KB of data and the 1KB of metadata. CONTROL messages can contain 30 bytes of data and no metadata.
1292
1292
  */
1293
1293
  sendChannelMessage(callback?: (err: AWSError, data: Chime.Types.SendChannelMessageResponse) => void): Request<Chime.Types.SendChannelMessageResponse, AWSError>;
1294
+ /**
1295
+ * Start transcription for the specified meetingId.
1296
+ */
1297
+ startMeetingTranscription(params: Chime.Types.StartMeetingTranscriptionRequest, callback?: (err: AWSError, data: Chime.Types.StartMeetingTranscriptionResponse) => void): Request<Chime.Types.StartMeetingTranscriptionResponse, AWSError>;
1298
+ /**
1299
+ * Start transcription for the specified meetingId.
1300
+ */
1301
+ startMeetingTranscription(callback?: (err: AWSError, data: Chime.Types.StartMeetingTranscriptionResponse) => void): Request<Chime.Types.StartMeetingTranscriptionResponse, AWSError>;
1302
+ /**
1303
+ * Stops transcription for the specified meetingId.
1304
+ */
1305
+ stopMeetingTranscription(params: Chime.Types.StopMeetingTranscriptionRequest, callback?: (err: AWSError, data: Chime.Types.StopMeetingTranscriptionResponse) => void): Request<Chime.Types.StopMeetingTranscriptionResponse, AWSError>;
1306
+ /**
1307
+ * Stops transcription for the specified meetingId.
1308
+ */
1309
+ stopMeetingTranscription(callback?: (err: AWSError, data: Chime.Types.StopMeetingTranscriptionResponse) => void): Request<Chime.Types.StopMeetingTranscriptionResponse, AWSError>;
1294
1310
  /**
1295
1311
  * Applies the specified tags to the specified Amazon Chime SDK attendee.
1296
1312
  */
@@ -1539,7 +1555,7 @@ declare namespace Chime {
1539
1555
  */
1540
1556
  SupportedLicenses?: LicenseList;
1541
1557
  /**
1542
- * The status of the account, Suspended or Active.
1558
+ * The status of the account.
1543
1559
  */
1544
1560
  AccountStatus?: AccountStatus;
1545
1561
  /**
@@ -3378,6 +3394,50 @@ declare namespace Chime {
3378
3394
  */
3379
3395
  DNIS?: DNISEmergencyCallingConfigurationList;
3380
3396
  }
3397
+ export interface EngineTranscribeMedicalSettings {
3398
+ /**
3399
+ * The language code specified for the Amazon Transcribe Medical engine.
3400
+ */
3401
+ LanguageCode: TranscribeMedicalLanguageCode;
3402
+ /**
3403
+ * The specialty specified for the Amazon Transcribe Medical engine.
3404
+ */
3405
+ Specialty: TranscribeMedicalSpecialty;
3406
+ /**
3407
+ * The type of transcription.
3408
+ */
3409
+ Type: TranscribeMedicalType;
3410
+ /**
3411
+ * The name of the vocabulary passed to Amazon Transcribe Medical.
3412
+ */
3413
+ VocabularyName?: String;
3414
+ /**
3415
+ * The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the Region closest to the meeting's Region.
3416
+ */
3417
+ Region?: TranscribeMedicalRegion;
3418
+ }
3419
+ export interface EngineTranscribeSettings {
3420
+ /**
3421
+ * The language code specified for the Amazon Transcribe engine.
3422
+ */
3423
+ LanguageCode: TranscribeLanguageCode;
3424
+ /**
3425
+ * The filtering method passed to Amazon Transcribe.
3426
+ */
3427
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
3428
+ /**
3429
+ * The name of the vocabulary filter passed to Amazon Transcribe.
3430
+ */
3431
+ VocabularyFilterName?: String;
3432
+ /**
3433
+ * The name of the vocabulary passed to Amazon Transcribe.
3434
+ */
3435
+ VocabularyName?: String;
3436
+ /**
3437
+ * The AWS Region passed to Amazon Transcribe. If you don't specify a Region, Amazon Chime uses the Region closest to the meeting's Region.
3438
+ */
3439
+ Region?: TranscribeRegion;
3440
+ }
3381
3441
  export type ErrorCode = "BadRequest"|"Conflict"|"Forbidden"|"NotFound"|"PreconditionFailed"|"ResourceLimitExceeded"|"ServiceFailure"|"AccessDenied"|"ServiceUnavailable"|"Throttled"|"Throttling"|"Unauthorized"|"Unprocessable"|"VoiceConnectorGroupAssociationsExist"|"PhoneNumberAssociationsExist"|string;
3382
3442
  export interface EventsConfiguration {
3383
3443
  /**
@@ -4714,7 +4774,7 @@ declare namespace Chime {
4714
4774
  */
4715
4775
  TurnControlUrl?: UriType;
4716
4776
  /**
4717
- * The event ingestion URL.
4777
+ * The URL of the S3 bucket used to store the captured media.
4718
4778
  */
4719
4779
  EventIngestionUrl?: UriType;
4720
4780
  }
@@ -5681,6 +5741,26 @@ declare namespace Chime {
5681
5741
  export type SipRuleTargetApplicationList = SipRuleTargetApplication[];
5682
5742
  export type SipRuleTriggerType = "ToPhoneNumber"|"RequestUriHostname"|string;
5683
5743
  export type SortOrder = "ASCENDING"|"DESCENDING"|string;
5744
+ export interface StartMeetingTranscriptionRequest {
5745
+ /**
5746
+ * The unique ID of the meeting being transcribed.
5747
+ */
5748
+ MeetingId: GuidString;
5749
+ /**
5750
+ * The configuration for the current transcription operation. Must contain EngineTranscribeSettings or EngineTranscribeMedicalSettings.
5751
+ */
5752
+ TranscriptionConfiguration: TranscriptionConfiguration;
5753
+ }
5754
+ export interface StartMeetingTranscriptionResponse {
5755
+ }
5756
+ export interface StopMeetingTranscriptionRequest {
5757
+ /**
5758
+ * The unique ID of the meeting for which you stop transcription.
5759
+ */
5760
+ MeetingId: GuidString;
5761
+ }
5762
+ export interface StopMeetingTranscriptionResponse {
5763
+ }
5684
5764
  export interface StreamingConfiguration {
5685
5765
  /**
5686
5766
  * The retention period, in hours, for the Amazon Kinesis data.
@@ -5801,6 +5881,23 @@ declare namespace Chime {
5801
5881
  }
5802
5882
  export type Timestamp = Date;
5803
5883
  export type TollFreePrefix = string;
5884
+ export type TranscribeLanguageCode = "en-US"|"en-GB"|"es-US"|"fr-CA"|"fr-FR"|"en-AU"|"it-IT"|"de-DE"|"pt-BR"|"ja-JP"|"ko-KR"|"zh-CN"|string;
5885
+ export type TranscribeMedicalLanguageCode = "en-US"|string;
5886
+ export type TranscribeMedicalRegion = "us-east-1"|"us-east-2"|"us-west-2"|"ap-southeast-2"|"ca-central-1"|"eu-west-1"|string;
5887
+ export type TranscribeMedicalSpecialty = "PRIMARYCARE"|"CARDIOLOGY"|"NEUROLOGY"|"ONCOLOGY"|"RADIOLOGY"|"UROLOGY"|string;
5888
+ export type TranscribeMedicalType = "CONVERSATION"|"DICTATION"|string;
5889
+ export type TranscribeRegion = "us-east-2"|"us-east-1"|"us-west-2"|"ap-northeast-2"|"ap-southeast-2"|"ap-northeast-1"|"ca-central-1"|"eu-central-1"|"eu-west-1"|"eu-west-2"|"sa-east-1"|string;
5890
+ export type TranscribeVocabularyFilterMethod = "remove"|"mask"|"tag"|string;
5891
+ export interface TranscriptionConfiguration {
5892
+ /**
5893
+ * The transcription configuration settings passed to Amazon Transcribe.
5894
+ */
5895
+ EngineTranscribeSettings?: EngineTranscribeSettings;
5896
+ /**
5897
+ * The transcription configuration settings passed to Amazon Transcribe.
5898
+ */
5899
+ EngineTranscribeMedicalSettings?: EngineTranscribeMedicalSettings;
5900
+ }
5804
5901
  export interface UntagAttendeeRequest {
5805
5902
  /**
5806
5903
  * The Amazon Chime SDK meeting ID.