@aws-sdk/client-transcribe 3.454.0 → 3.459.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (65) hide show
  1. package/README.md +71 -39
  2. package/dist-cjs/Transcribe.js +8 -0
  3. package/dist-cjs/commands/DeleteMedicalScribeJobCommand.js +51 -0
  4. package/dist-cjs/commands/GetMedicalScribeJobCommand.js +51 -0
  5. package/dist-cjs/commands/ListMedicalScribeJobsCommand.js +51 -0
  6. package/dist-cjs/commands/StartMedicalScribeJobCommand.js +51 -0
  7. package/dist-cjs/commands/index.js +4 -0
  8. package/dist-cjs/models/models_0.js +78 -1
  9. package/dist-cjs/pagination/ListMedicalScribeJobsPaginator.js +29 -0
  10. package/dist-cjs/pagination/index.js +1 -0
  11. package/dist-cjs/protocols/Aws_json1_1.js +242 -2
  12. package/dist-es/Transcribe.js +8 -0
  13. package/dist-es/commands/DeleteMedicalScribeJobCommand.js +47 -0
  14. package/dist-es/commands/GetMedicalScribeJobCommand.js +47 -0
  15. package/dist-es/commands/ListMedicalScribeJobsCommand.js +47 -0
  16. package/dist-es/commands/StartMedicalScribeJobCommand.js +47 -0
  17. package/dist-es/commands/index.js +4 -0
  18. package/dist-es/models/models_0.js +77 -0
  19. package/dist-es/pagination/ListMedicalScribeJobsPaginator.js +25 -0
  20. package/dist-es/pagination/index.js +1 -0
  21. package/dist-es/protocols/Aws_json1_1.js +232 -0
  22. package/dist-types/Transcribe.d.ts +28 -0
  23. package/dist-types/TranscribeClient.d.ts +6 -2
  24. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +2 -2
  25. package/dist-types/commands/CreateVocabularyCommand.d.ts +2 -2
  26. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +2 -2
  27. package/dist-types/commands/DeleteMedicalScribeJobCommand.d.ts +87 -0
  28. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +5 -2
  29. package/dist-types/commands/GetMedicalScribeJobCommand.d.ts +135 -0
  30. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +1 -1
  31. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +1 -1
  32. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +3 -3
  33. package/dist-types/commands/GetVocabularyCommand.d.ts +1 -1
  34. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -1
  35. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +1 -1
  36. package/dist-types/commands/ListMedicalScribeJobsCommand.d.ts +104 -0
  37. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +1 -1
  38. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +1 -1
  39. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +2 -2
  40. package/dist-types/commands/ListVocabulariesCommand.d.ts +1 -1
  41. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -1
  42. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +9 -3
  43. package/dist-types/commands/StartMedicalScribeJobCommand.d.ts +203 -0
  44. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +3 -3
  45. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +6 -6
  46. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +2 -2
  47. package/dist-types/commands/UpdateVocabularyCommand.d.ts +2 -2
  48. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +1 -1
  49. package/dist-types/commands/index.d.ts +4 -0
  50. package/dist-types/models/models_0.d.ts +709 -77
  51. package/dist-types/pagination/ListMedicalScribeJobsPaginator.d.ts +7 -0
  52. package/dist-types/pagination/index.d.ts +1 -0
  53. package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
  54. package/dist-types/ts3.4/Transcribe.d.ts +68 -0
  55. package/dist-types/ts3.4/TranscribeClient.d.ts +24 -0
  56. package/dist-types/ts3.4/commands/DeleteMedicalScribeJobCommand.d.ts +37 -0
  57. package/dist-types/ts3.4/commands/GetMedicalScribeJobCommand.d.ts +39 -0
  58. package/dist-types/ts3.4/commands/ListMedicalScribeJobsCommand.d.ts +42 -0
  59. package/dist-types/ts3.4/commands/StartMedicalScribeJobCommand.d.ts +42 -0
  60. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  61. package/dist-types/ts3.4/models/models_0.d.ts +161 -0
  62. package/dist-types/ts3.4/pagination/ListMedicalScribeJobsPaginator.d.ts +11 -0
  63. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  64. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
  65. package/package.json +3 -3
@@ -0,0 +1,203 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
4
+ import { StartMedicalScribeJobRequest, StartMedicalScribeJobResponse } from "../models/models_0";
5
+ import { ServiceInputTypes, ServiceOutputTypes, TranscribeClientResolvedConfig } from "../TranscribeClient";
6
+ /**
7
+ * @public
8
+ */
9
+ export { __MetadataBearer, $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link StartMedicalScribeJobCommand}.
14
+ */
15
+ export interface StartMedicalScribeJobCommandInput extends StartMedicalScribeJobRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link StartMedicalScribeJobCommand}.
21
+ */
22
+ export interface StartMedicalScribeJobCommandOutput extends StartMedicalScribeJobResponse, __MetadataBearer {
23
+ }
24
+ /**
25
+ * @public
26
+ * <p>Transcribes patient-clinician conversations and generates clinical notes. </p>
27
+ * <p>Amazon Web Services HealthScribe automatically provides rich conversation transcripts, identifies speaker roles,
28
+ * classifies dialogues, extracts medical terms, and generates preliminary clinical notes.
29
+ * To learn more about these features, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/health-scribe.html">Amazon Web Services HealthScribe</a>.</p>
30
+ * <p>To make a <code>StartMedicalScribeJob</code> request, you must first upload
31
+ * your media file into an Amazon S3 bucket; you can then specify the Amazon S3 location
32
+ * of the file using the <code>Media</code> parameter.</p>
33
+ * <p>You must include the following parameters in your
34
+ * <code>StartMedicalTranscriptionJob</code> request:</p>
35
+ * <ul>
36
+ * <li>
37
+ * <p>
38
+ * <code>DataAccessRoleArn</code>: The ARN of an IAM role with the these minimum permissions: read permission on input file Amazon S3 bucket specified in <code>Media</code>,
39
+ * write permission on the Amazon S3 bucket specified in <code>OutputBucketName</code>, and full permissions on the KMS key specified in <code>OutputEncryptionKMSKeyId</code> (if set).
40
+ * The role should also allow <code>transcribe.amazonaws.com</code> to assume it.
41
+ * </p>
42
+ * </li>
43
+ * <li>
44
+ * <p>
45
+ * <code>Media</code> (<code>MediaFileUri</code>): The Amazon S3 location
46
+ * of your media file.</p>
47
+ * </li>
48
+ * <li>
49
+ * <p>
50
+ * <code>MedicalScribeJobName</code>: A custom name you create for your
51
+ * MedicalScribe job that is unique within your Amazon Web Services account.</p>
52
+ * </li>
53
+ * <li>
54
+ * <p>
55
+ * <code>OutputBucketName</code>: The Amazon S3 bucket where you want
56
+ * your output files stored.</p>
57
+ * </li>
58
+ * <li>
59
+ * <p>
60
+ * <code>Settings</code>: A <code>MedicalScribeSettings</code> obect
61
+ * that must set exactly one of <code>ShowSpeakerLabels</code> or <code>ChannelIdentification</code> to true.
62
+ * If <code>ShowSpeakerLabels</code> is true, <code>MaxSpeakerLabels</code> must also be set.
63
+ * </p>
64
+ * </li>
65
+ * <li>
66
+ * <p>
67
+ * <code>ChannelDefinitions</code>: A <code>MedicalScribeChannelDefinitions</code> array should be set if and only if the <code>ChannelIdentification</code>
68
+ * value of <code>Settings</code> is set to true.
69
+ * </p>
70
+ * </li>
71
+ * </ul>
72
+ * @example
73
+ * Use a bare-bones client and the command you need to make an API call.
74
+ * ```javascript
75
+ * import { TranscribeClient, StartMedicalScribeJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
76
+ * // const { TranscribeClient, StartMedicalScribeJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
77
+ * const client = new TranscribeClient(config);
78
+ * const input = { // StartMedicalScribeJobRequest
79
+ * MedicalScribeJobName: "STRING_VALUE", // required
80
+ * Media: { // Media
81
+ * MediaFileUri: "STRING_VALUE",
82
+ * RedactedMediaFileUri: "STRING_VALUE",
83
+ * },
84
+ * OutputBucketName: "STRING_VALUE", // required
85
+ * OutputEncryptionKMSKeyId: "STRING_VALUE",
86
+ * KMSEncryptionContext: { // KMSEncryptionContextMap
87
+ * "<keys>": "STRING_VALUE",
88
+ * },
89
+ * DataAccessRoleArn: "STRING_VALUE", // required
90
+ * Settings: { // MedicalScribeSettings
91
+ * ShowSpeakerLabels: true || false,
92
+ * MaxSpeakerLabels: Number("int"),
93
+ * ChannelIdentification: true || false,
94
+ * VocabularyName: "STRING_VALUE",
95
+ * VocabularyFilterName: "STRING_VALUE",
96
+ * VocabularyFilterMethod: "remove" || "mask" || "tag",
97
+ * },
98
+ * ChannelDefinitions: [ // MedicalScribeChannelDefinitions
99
+ * { // MedicalScribeChannelDefinition
100
+ * ChannelId: Number("int"), // required
101
+ * ParticipantRole: "PATIENT" || "CLINICIAN", // required
102
+ * },
103
+ * ],
104
+ * Tags: [ // TagList
105
+ * { // Tag
106
+ * Key: "STRING_VALUE", // required
107
+ * Value: "STRING_VALUE", // required
108
+ * },
109
+ * ],
110
+ * };
111
+ * const command = new StartMedicalScribeJobCommand(input);
112
+ * const response = await client.send(command);
113
+ * // { // StartMedicalScribeJobResponse
114
+ * // MedicalScribeJob: { // MedicalScribeJob
115
+ * // MedicalScribeJobName: "STRING_VALUE",
116
+ * // MedicalScribeJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
117
+ * // LanguageCode: "en-US",
118
+ * // Media: { // Media
119
+ * // MediaFileUri: "STRING_VALUE",
120
+ * // RedactedMediaFileUri: "STRING_VALUE",
121
+ * // },
122
+ * // MedicalScribeOutput: { // MedicalScribeOutput
123
+ * // TranscriptFileUri: "STRING_VALUE", // required
124
+ * // ClinicalDocumentUri: "STRING_VALUE", // required
125
+ * // },
126
+ * // StartTime: new Date("TIMESTAMP"),
127
+ * // CreationTime: new Date("TIMESTAMP"),
128
+ * // CompletionTime: new Date("TIMESTAMP"),
129
+ * // FailureReason: "STRING_VALUE",
130
+ * // Settings: { // MedicalScribeSettings
131
+ * // ShowSpeakerLabels: true || false,
132
+ * // MaxSpeakerLabels: Number("int"),
133
+ * // ChannelIdentification: true || false,
134
+ * // VocabularyName: "STRING_VALUE",
135
+ * // VocabularyFilterName: "STRING_VALUE",
136
+ * // VocabularyFilterMethod: "remove" || "mask" || "tag",
137
+ * // },
138
+ * // DataAccessRoleArn: "STRING_VALUE",
139
+ * // ChannelDefinitions: [ // MedicalScribeChannelDefinitions
140
+ * // { // MedicalScribeChannelDefinition
141
+ * // ChannelId: Number("int"), // required
142
+ * // ParticipantRole: "PATIENT" || "CLINICIAN", // required
143
+ * // },
144
+ * // ],
145
+ * // Tags: [ // TagList
146
+ * // { // Tag
147
+ * // Key: "STRING_VALUE", // required
148
+ * // Value: "STRING_VALUE", // required
149
+ * // },
150
+ * // ],
151
+ * // },
152
+ * // };
153
+ *
154
+ * ```
155
+ *
156
+ * @param StartMedicalScribeJobCommandInput - {@link StartMedicalScribeJobCommandInput}
157
+ * @returns {@link StartMedicalScribeJobCommandOutput}
158
+ * @see {@link StartMedicalScribeJobCommandInput} for command's `input` shape.
159
+ * @see {@link StartMedicalScribeJobCommandOutput} for command's `response` shape.
160
+ * @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
161
+ *
162
+ * @throws {@link BadRequestException} (client fault)
163
+ * <p>Your request didn't pass one or more validation tests. This can occur when the entity
164
+ * you're trying to delete doesn't exist or if it's in a non-terminal state (such as
165
+ * <code>IN PROGRESS</code>). See the exception message field for more
166
+ * information.</p>
167
+ *
168
+ * @throws {@link ConflictException} (client fault)
169
+ * <p>A resource already exists with this name. Resource names must be unique within an
170
+ * Amazon Web Services account.</p>
171
+ *
172
+ * @throws {@link InternalFailureException} (server fault)
173
+ * <p>There was an internal error. Check the error message, correct the issue, and try your
174
+ * request again.</p>
175
+ *
176
+ * @throws {@link LimitExceededException} (client fault)
177
+ * <p>You've either sent too many requests or your input file is too long. Wait before
178
+ * retrying your request, or use a smaller file and try your request again.</p>
179
+ *
180
+ * @throws {@link TranscribeServiceException}
181
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
182
+ *
183
+ */
184
+ export declare class StartMedicalScribeJobCommand extends $Command<StartMedicalScribeJobCommandInput, StartMedicalScribeJobCommandOutput, TranscribeClientResolvedConfig> {
185
+ readonly input: StartMedicalScribeJobCommandInput;
186
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
187
+ /**
188
+ * @public
189
+ */
190
+ constructor(input: StartMedicalScribeJobCommandInput);
191
+ /**
192
+ * @internal
193
+ */
194
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: TranscribeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartMedicalScribeJobCommandInput, StartMedicalScribeJobCommandOutput>;
195
+ /**
196
+ * @internal
197
+ */
198
+ private serialize;
199
+ /**
200
+ * @internal
201
+ */
202
+ private deserialize;
203
+ }
@@ -31,7 +31,7 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
31
31
  * features, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/how-it-works-med.html">How Amazon Transcribe Medical
32
32
  * works</a>.</p>
33
33
  * <p>To make a <code>StartMedicalTranscriptionJob</code> request, you must first upload
34
- * your media file into an Amazon S3 bucket; you can then specify the S3 location
34
+ * your media file into an Amazon S3 bucket; you can then specify the Amazon S3 location
35
35
  * of the file using the <code>Media</code> parameter.</p>
36
36
  * <p>You must include the following parameters in your
37
37
  * <code>StartMedicalTranscriptionJob</code> request:</p>
@@ -80,7 +80,7 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
80
80
  * const client = new TranscribeClient(config);
81
81
  * const input = { // StartMedicalTranscriptionJobRequest
82
82
  * MedicalTranscriptionJobName: "STRING_VALUE", // required
83
- * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
83
+ * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA", // required
84
84
  * MediaSampleRateHertz: Number("int"),
85
85
  * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
86
86
  * Media: { // Media
@@ -117,7 +117,7 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
117
117
  * // MedicalTranscriptionJob: { // MedicalTranscriptionJob
118
118
  * // MedicalTranscriptionJobName: "STRING_VALUE",
119
119
  * // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
120
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
120
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
121
121
  * // MediaSampleRateHertz: Number("int"),
122
122
  * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
123
123
  * // Media: { // Media
@@ -52,7 +52,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
52
52
  * <code>IdentifyMultipleLanguages</code>: If you know the language of your
53
53
  * media file, specify it using the <code>LanguageCode</code> parameter; you can
54
54
  * find all valid language codes in the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported
55
- * languages</a> table. If you don't know the languages spoken in your
55
+ * languages</a> table. If you do not know the languages spoken in your
56
56
  * media, use either <code>IdentifyLanguage</code> or
57
57
  * <code>IdentifyMultipleLanguages</code> and let Amazon Transcribe identify
58
58
  * the languages for you.</p>
@@ -66,7 +66,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
66
66
  * const client = new TranscribeClient(config);
67
67
  * const input = { // StartTranscriptionJobRequest
68
68
  * TranscriptionJobName: "STRING_VALUE", // required
69
- * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
69
+ * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
70
70
  * MediaSampleRateHertz: Number("int"),
71
71
  * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
72
72
  * Media: { // Media
@@ -106,7 +106,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
106
106
  * IdentifyLanguage: true || false,
107
107
  * IdentifyMultipleLanguages: true || false,
108
108
  * LanguageOptions: [ // LanguageOptions
109
- * "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
109
+ * "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
110
110
  * ],
111
111
  * Subtitles: { // Subtitles
112
112
  * Formats: [ // SubtitleFormats
@@ -141,7 +141,7 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
141
141
  * // TranscriptionJob: { // TranscriptionJob
142
142
  * // TranscriptionJobName: "STRING_VALUE",
143
143
  * // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
144
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
144
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
145
145
  * // MediaSampleRateHertz: Number("int"),
146
146
  * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm" || "m4a",
147
147
  * // Media: { // Media
@@ -183,12 +183,12 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
183
183
  * // IdentifyLanguage: true || false,
184
184
  * // IdentifyMultipleLanguages: true || false,
185
185
  * // LanguageOptions: [ // LanguageOptions
186
- * // "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
186
+ * // "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
187
187
  * // ],
188
188
  * // IdentifiedLanguageScore: Number("float"),
189
189
  * // LanguageCodes: [ // LanguageCodeList
190
190
  * // { // LanguageCodeItem
191
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
191
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
192
192
  * // DurationInSeconds: Number("float"),
193
193
  * // },
194
194
  * // ],
@@ -34,14 +34,14 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
34
34
  * const client = new TranscribeClient(config);
35
35
  * const input = { // UpdateMedicalVocabularyRequest
36
36
  * VocabularyName: "STRING_VALUE", // required
37
- * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
37
+ * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA", // required
38
38
  * VocabularyFileUri: "STRING_VALUE", // required
39
39
  * };
40
40
  * const command = new UpdateMedicalVocabularyCommand(input);
41
41
  * const response = await client.send(command);
42
42
  * // { // UpdateMedicalVocabularyResponse
43
43
  * // VocabularyName: "STRING_VALUE",
44
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
44
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
45
45
  * // LastModifiedTime: new Date("TIMESTAMP"),
46
46
  * // VocabularyState: "PENDING" || "READY" || "FAILED",
47
47
  * // };
@@ -34,7 +34,7 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
34
34
  * const client = new TranscribeClient(config);
35
35
  * const input = { // UpdateVocabularyRequest
36
36
  * VocabularyName: "STRING_VALUE", // required
37
- * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
37
+ * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA", // required
38
38
  * Phrases: [ // Phrases
39
39
  * "STRING_VALUE",
40
40
  * ],
@@ -45,7 +45,7 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
45
45
  * const response = await client.send(command);
46
46
  * // { // UpdateVocabularyResponse
47
47
  * // VocabularyName: "STRING_VALUE",
48
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
48
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
49
49
  * // LastModifiedTime: new Date("TIMESTAMP"),
50
50
  * // VocabularyState: "PENDING" || "READY" || "FAILED",
51
51
  * // };
@@ -44,7 +44,7 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
44
44
  * const response = await client.send(command);
45
45
  * // { // UpdateVocabularyFilterResponse
46
46
  * // VocabularyFilterName: "STRING_VALUE",
47
- * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE",
47
+ * // LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE" || "ab-GE" || "ast-ES" || "az-AZ" || "ba-RU" || "be-BY" || "bg-BG" || "bn-IN" || "bs-BA" || "ca-ES" || "ckb-IQ" || "ckb-IR" || "cs-CZ" || "cy-WL" || "el-GR" || "et-ET" || "eu-ES" || "fi-FI" || "gl-ES" || "gu-IN" || "ha-NG" || "hr-HR" || "hu-HU" || "hy-AM" || "is-IS" || "ka-GE" || "kab-DZ" || "kk-KZ" || "kn-IN" || "ky-KG" || "lg-IN" || "lt-LT" || "lv-LV" || "mhr-RU" || "mi-NZ" || "mk-MK" || "ml-IN" || "mn-MN" || "mr-IN" || "mt-MT" || "no-NO" || "or-IN" || "pa-IN" || "pl-PL" || "ps-AF" || "ro-RO" || "rw-RW" || "si-LK" || "sk-SK" || "sl-SI" || "so-SO" || "sr-RS" || "su-ID" || "sw-BI" || "sw-KE" || "sw-RW" || "sw-TZ" || "sw-UG" || "tl-PH" || "tt-RU" || "ug-CN" || "uk-UA" || "uz-UZ" || "wo-SN" || "zu-ZA",
48
48
  * // LastModifiedTime: new Date("TIMESTAMP"),
49
49
  * // };
50
50
  *
@@ -6,6 +6,7 @@ export * from "./CreateVocabularyFilterCommand";
6
6
  export * from "./DeleteCallAnalyticsCategoryCommand";
7
7
  export * from "./DeleteCallAnalyticsJobCommand";
8
8
  export * from "./DeleteLanguageModelCommand";
9
+ export * from "./DeleteMedicalScribeJobCommand";
9
10
  export * from "./DeleteMedicalTranscriptionJobCommand";
10
11
  export * from "./DeleteMedicalVocabularyCommand";
11
12
  export * from "./DeleteTranscriptionJobCommand";
@@ -14,6 +15,7 @@ export * from "./DeleteVocabularyFilterCommand";
14
15
  export * from "./DescribeLanguageModelCommand";
15
16
  export * from "./GetCallAnalyticsCategoryCommand";
16
17
  export * from "./GetCallAnalyticsJobCommand";
18
+ export * from "./GetMedicalScribeJobCommand";
17
19
  export * from "./GetMedicalTranscriptionJobCommand";
18
20
  export * from "./GetMedicalVocabularyCommand";
19
21
  export * from "./GetTranscriptionJobCommand";
@@ -22,6 +24,7 @@ export * from "./GetVocabularyFilterCommand";
22
24
  export * from "./ListCallAnalyticsCategoriesCommand";
23
25
  export * from "./ListCallAnalyticsJobsCommand";
24
26
  export * from "./ListLanguageModelsCommand";
27
+ export * from "./ListMedicalScribeJobsCommand";
25
28
  export * from "./ListMedicalTranscriptionJobsCommand";
26
29
  export * from "./ListMedicalVocabulariesCommand";
27
30
  export * from "./ListTagsForResourceCommand";
@@ -29,6 +32,7 @@ export * from "./ListTranscriptionJobsCommand";
29
32
  export * from "./ListVocabulariesCommand";
30
33
  export * from "./ListVocabularyFiltersCommand";
31
34
  export * from "./StartCallAnalyticsJobCommand";
35
+ export * from "./StartMedicalScribeJobCommand";
32
36
  export * from "./StartMedicalTranscriptionJobCommand";
33
37
  export * from "./StartTranscriptionJobCommand";
34
38
  export * from "./TagResourceCommand";