@aws-sdk/client-transcribe 3.215.0 → 3.218.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 (49) hide show
  1. package/README.md +7 -9
  2. package/dist-cjs/models/models_0.js +8 -3
  3. package/dist-cjs/protocols/Aws_json1_1.js +3 -0
  4. package/dist-es/models/models_0.js +5 -0
  5. package/dist-es/protocols/Aws_json1_1.js +3 -0
  6. package/dist-types/Transcribe.d.ts +234 -251
  7. package/dist-types/TranscribeClient.d.ts +9 -11
  8. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +12 -22
  9. package/dist-types/commands/CreateLanguageModelCommand.d.ts +3 -4
  10. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +12 -11
  11. package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -9
  12. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +9 -8
  13. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +2 -2
  14. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +3 -2
  15. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +3 -3
  16. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +3 -3
  17. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +2 -2
  18. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +3 -2
  19. package/dist-types/commands/DeleteVocabularyCommand.d.ts +3 -3
  20. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +3 -3
  21. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +3 -5
  22. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -2
  23. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +11 -10
  24. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +6 -6
  25. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +5 -6
  26. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +8 -8
  27. package/dist-types/commands/GetVocabularyCommand.d.ts +6 -6
  28. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -6
  29. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +3 -3
  30. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +3 -4
  31. package/dist-types/commands/ListLanguageModelsCommand.d.ts +3 -4
  32. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +3 -4
  33. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +3 -4
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  35. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +3 -4
  36. package/dist-types/commands/ListVocabulariesCommand.d.ts +3 -4
  37. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -2
  38. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +28 -26
  39. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +20 -20
  40. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +29 -29
  41. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  42. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  43. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +3 -2
  44. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +3 -3
  45. package/dist-types/commands/UpdateVocabularyCommand.d.ts +3 -2
  46. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +3 -3
  47. package/dist-types/models/models_0.d.ts +1349 -1305
  48. package/dist-types/ts3.4/models/models_0.d.ts +7 -0
  49. package/package.json +4 -4
@@ -40,9 +40,8 @@ import { UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput } from "./c
40
40
  import { UpdateVocabularyFilterCommandInput, UpdateVocabularyFilterCommandOutput } from "./commands/UpdateVocabularyFilterCommand";
41
41
  import { TranscribeClient } from "./TranscribeClient";
42
42
  /**
43
- * <p>Amazon Transcribe offers three main types of batch transcription:
44
- * <b>Standard</b>, <b>Medical</b>, and
45
- * <b>Call Analytics</b>.</p>
43
+ * <p>Amazon Transcribe offers three main types of batch transcription: <b>Standard</b>, <b>Medical</b>, and
44
+ * <b>Call Analytics</b>.</p>
46
45
  * <ul>
47
46
  * <li>
48
47
  * <p>
@@ -51,58 +50,47 @@ import { TranscribeClient } from "./TranscribeClient";
51
50
  * </li>
52
51
  * <li>
53
52
  * <p>
54
- * <b>Medical transcriptions</b> are tailored to medical
55
- * professionals and incorporate medical terms. A common use case for this service is
56
- * transcribing doctor-patient dialogue into after-visit notes. Refer to
57
- * for details.</p>
53
+ * <b>Medical transcriptions</b> are tailored to
54
+ * medical professionals and incorporate medical terms. A common use case for this
55
+ * service is transcribing doctor-patient dialogue into after-visit notes. Refer to
56
+ * for details.</p>
58
57
  * </li>
59
58
  * <li>
60
59
  * <p>
61
- * <b>Call Analytics transcriptions</b> are designed for use
62
- * with call center audio on two different channels; if you're looking for insight into customer
63
- * service calls, use this option. Refer to for
64
- * details.</p>
60
+ * <b>Call Analytics transcriptions</b> are designed
61
+ * for use with call center audio on two different channels; if you're looking for
62
+ * insight into customer service calls, use this option. Refer to for details.</p>
65
63
  * </li>
66
64
  * </ul>
67
65
  */
68
66
  export declare class Transcribe extends TranscribeClient {
69
67
  /**
70
68
  * <p>Creates a new Call Analytics category.</p>
71
- * <p>All categories are automatically applied to your Call Analytics jobs. Note that in order to apply
72
- * your categories to your jobs, you must create them before submitting your job request, as
73
- * categories cannot be applied retroactively.</p>
69
+ * <p>All categories are automatically applied to your Call Analytics transcriptions. Note that in
70
+ * order to apply categories to your transcriptions, you must create them before submitting your
71
+ * transcription request, as categories cannot be applied retroactively.</p>
72
+ * <p>When creating a new category, you can use the <code>InputType</code> parameter to
73
+ * label the category as a batch category (<code>POST_CALL</code>) or a streaming category
74
+ * (<code>REAL_TIME</code>). Batch categories can only be applied to batch transcriptions and
75
+ * streaming categories can only be applied to streaming transcriptions. If you do not include
76
+ * <code>InputType</code>, your category is created as a batch category by default.</p>
74
77
  * <p>Call Analytics categories are composed of rules. For each category, you must create
75
- * between 1 and 20 rules. Rules can include these parameters: ,
76
- * , , and
77
- * .</p>
78
+ * between 1 and 20 rules. Rules can include these parameters: , , , and .</p>
78
79
  * <p>To update an existing category, see .</p>
79
- * <p>To learn more about:</p>
80
- * <ul>
81
- * <li>
82
- * <p>Call Analytics categories, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics-create-categories.html">Creating categories</a>
83
- * </p>
84
- * </li>
85
- * <li>
86
- * <p>Using rules, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics-create-categories.html#call-analytics-create-categories-rules">Rule
87
- * criteria</a> and refer to the data type</p>
88
- * </li>
89
- * <li>
90
- * <p>Call Analytics, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics.html">Analyzing call center audio with Call
91
- * Analytics</a>
92
- * </p>
93
- * </li>
94
- * </ul>
80
+ * <p>To learn more about Call Analytics categories, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html">Creating categories for batch
81
+ * transcriptions</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-stream.html">Creating categories for
82
+ * streaming transcriptions</a>.</p>
95
83
  */
96
84
  createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<CreateCallAnalyticsCategoryCommandOutput>;
97
85
  createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, cb: (err: any, data?: CreateCallAnalyticsCategoryCommandOutput) => void): void;
98
86
  createCallAnalyticsCategory(args: CreateCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCallAnalyticsCategoryCommandOutput) => void): void;
99
87
  /**
100
88
  * <p>Creates a new custom language model.</p>
101
- * <p>When creating a new language model, you must specify:</p>
89
+ * <p>When creating a new custom language model, you must specify:</p>
102
90
  * <ul>
103
91
  * <li>
104
- * <p>If you want a Wideband (audio sample rates over 16,000 Hz) or Narrowband (audio sample
105
- * rates under 16,000 Hz) base model</p>
92
+ * <p>If you want a Wideband (audio sample rates over 16,000 Hz) or Narrowband
93
+ * (audio sample rates under 16,000 Hz) base model</p>
106
94
  * </li>
107
95
  * <li>
108
96
  * <p>The location of your training and tuning files (this must be an Amazon S3 URI)</p>
@@ -114,153 +102,155 @@ export declare class Transcribe extends TranscribeClient {
114
102
  * <p>A unique name for your model</p>
115
103
  * </li>
116
104
  * </ul>
117
- * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-language-models.html">Custom language models</a>.</p>
118
105
  */
119
106
  createLanguageModel(args: CreateLanguageModelCommandInput, options?: __HttpHandlerOptions): Promise<CreateLanguageModelCommandOutput>;
120
107
  createLanguageModel(args: CreateLanguageModelCommandInput, cb: (err: any, data?: CreateLanguageModelCommandOutput) => void): void;
121
108
  createLanguageModel(args: CreateLanguageModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLanguageModelCommandOutput) => void): void;
122
109
  /**
123
110
  * <p>Creates a new custom medical vocabulary.</p>
124
- * <p>Prior to creating a new medical vocabulary, you must first upload a text file that contains
125
- * your new entries, phrases, and terms into an Amazon S3 bucket. Note that this differs from
126
- * , where you can include a list of terms within
127
- * your request using the <code>Phrases</code> flag; <code>CreateMedicalVocabulary</code>
128
- * does not support the <code>Phrases</code> flag.</p>
129
- * <p>Each language has a character set that contains all allowed characters for that specific
130
- * language. If you use unsupported characters, your vocabulary request fails. Refer to
131
- * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for
132
- * Custom Vocabularies</a> to get the character set for your language.</p>
133
- * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary-create.html">Creating a custom
134
- * vocabulary</a>.</p>
111
+ * <p>Before creating a new custom medical vocabulary, you must first upload a text file
112
+ * that contains your new entries, phrases, and terms into an Amazon S3 bucket.
113
+ * Note that this differs from , where you can
114
+ * include a list of terms within your request using the <code>Phrases</code> flag;
115
+ * <code>CreateMedicalVocabulary</code> does not support the <code>Phrases</code>
116
+ * flag.</p>
117
+ * <p>Each language has a character set that contains all allowed characters for that
118
+ * specific language. If you use unsupported characters, your custom vocabulary request
119
+ * fails. Refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for Custom Vocabularies</a> to get the character set for your
120
+ * language.</p>
121
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html">Custom
122
+ * vocabularies</a>.</p>
135
123
  */
136
124
  createMedicalVocabulary(args: CreateMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateMedicalVocabularyCommandOutput>;
137
125
  createMedicalVocabulary(args: CreateMedicalVocabularyCommandInput, cb: (err: any, data?: CreateMedicalVocabularyCommandOutput) => void): void;
138
126
  createMedicalVocabulary(args: CreateMedicalVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMedicalVocabularyCommandOutput) => void): void;
139
127
  /**
140
128
  * <p>Creates a new custom vocabulary.</p>
141
- * <p>When creating a new vocabulary, you can either upload a text file that contains your new
142
- * entries, phrases, and terms into an Amazon S3 bucket and include the URI in your request, or
143
- * you can include a list of terms directly in your request using the <code>Phrases</code> flag.</p>
144
- * <p>Each language has a character set that contains all allowed characters for that specific
145
- * language. If you use unsupported characters, your vocabulary request fails. Refer to
146
- * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for
147
- * Custom Vocabularies</a> to get the character set for your language.</p>
148
- * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary-create.html">Creating a custom
149
- * vocabulary</a>.</p>
129
+ * <p>When creating a new custom vocabulary, you can either upload a text file that contains
130
+ * your new entries, phrases, and terms into an Amazon S3 bucket and include the
131
+ * URI in your request. Or you can include a list of terms directly in your request using
132
+ * the <code>Phrases</code> flag.</p>
133
+ * <p>Each language has a character set that contains all allowed characters for that
134
+ * specific language. If you use unsupported characters, your custom vocabulary request
135
+ * fails. Refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for Custom Vocabularies</a> to get the character set for your
136
+ * language.</p>
137
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/custom-vocabulary.html">Custom
138
+ * vocabularies</a>.</p>
150
139
  */
151
140
  createVocabulary(args: CreateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyCommandOutput>;
152
141
  createVocabulary(args: CreateVocabularyCommandInput, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
153
142
  createVocabulary(args: CreateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyCommandOutput) => void): void;
154
143
  /**
155
144
  * <p>Creates a new custom vocabulary filter.</p>
156
- * <p>You can use vocabulary filters to mask, delete, or flag specific words from your transcript.
157
- * Vocabulary filters are commonly used to mask profanity in transcripts.</p>
158
- * <p>Each language has a character set that contains all allowed characters for that specific
159
- * language. If you use unsupported characters, your vocabulary filter request fails. Refer to
160
- * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for
161
- * Custom Vocabularies</a> to get the character set for your language.</p>
162
- * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/vocabulary-filtering.html">Using vocabulary filtering with unwanted
163
- * words</a>.</p>
145
+ * <p>You can use custom vocabulary filters to mask, delete, or flag specific words from
146
+ * your transcript. Custom vocabulary filters are commonly used to mask profanity in
147
+ * transcripts.</p>
148
+ * <p>Each language has a character set that contains all allowed characters for that
149
+ * specific language. If you use unsupported characters, your custom vocabulary filter
150
+ * request fails. Refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/charsets.html">Character Sets for Custom
151
+ * Vocabularies</a> to get the character set for your language.</p>
152
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/vocabulary-filtering.html">Vocabulary
153
+ * filtering</a>.</p>
164
154
  */
165
155
  createVocabularyFilter(args: CreateVocabularyFilterCommandInput, options?: __HttpHandlerOptions): Promise<CreateVocabularyFilterCommandOutput>;
166
156
  createVocabularyFilter(args: CreateVocabularyFilterCommandInput, cb: (err: any, data?: CreateVocabularyFilterCommandOutput) => void): void;
167
157
  createVocabularyFilter(args: CreateVocabularyFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateVocabularyFilterCommandOutput) => void): void;
168
158
  /**
169
- * <p>Deletes a Call Analytics category. To use this operation, specify the name of the category
170
- * you want to delete using <code>CategoryName</code>. Category names are case
159
+ * <p>Deletes a Call Analytics category. To use this operation, specify the name of the
160
+ * category you want to delete using <code>CategoryName</code>. Category names are case
171
161
  * sensitive.</p>
172
162
  */
173
163
  deleteCallAnalyticsCategory(args: DeleteCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCallAnalyticsCategoryCommandOutput>;
174
164
  deleteCallAnalyticsCategory(args: DeleteCallAnalyticsCategoryCommandInput, cb: (err: any, data?: DeleteCallAnalyticsCategoryCommandOutput) => void): void;
175
165
  deleteCallAnalyticsCategory(args: DeleteCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCallAnalyticsCategoryCommandOutput) => void): void;
176
166
  /**
177
- * <p>Deletes a Call Analytics job. To use this operation, specify the name of the job you want to
178
- * delete using <code>CallAnalyticsJobName</code>. Job names are case sensitive.</p>
167
+ * <p>Deletes a Call Analytics job. To use this operation, specify the name of the job you
168
+ * want to delete using <code>CallAnalyticsJobName</code>. Job names are case
169
+ * sensitive.</p>
179
170
  */
180
171
  deleteCallAnalyticsJob(args: DeleteCallAnalyticsJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCallAnalyticsJobCommandOutput>;
181
172
  deleteCallAnalyticsJob(args: DeleteCallAnalyticsJobCommandInput, cb: (err: any, data?: DeleteCallAnalyticsJobCommandOutput) => void): void;
182
173
  deleteCallAnalyticsJob(args: DeleteCallAnalyticsJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCallAnalyticsJobCommandOutput) => void): void;
183
174
  /**
184
- * <p>Deletes a custom language model. To use this operation, specify the name of the language
185
- * model you want to delete using <code>ModelName</code>. Language model names are case
186
- * sensitive.</p>
175
+ * <p>Deletes a custom language model. To use this operation, specify the name of the
176
+ * language model you want to delete using <code>ModelName</code>. custom language model
177
+ * names are case sensitive.</p>
187
178
  */
188
179
  deleteLanguageModel(args: DeleteLanguageModelCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLanguageModelCommandOutput>;
189
180
  deleteLanguageModel(args: DeleteLanguageModelCommandInput, cb: (err: any, data?: DeleteLanguageModelCommandOutput) => void): void;
190
181
  deleteLanguageModel(args: DeleteLanguageModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLanguageModelCommandOutput) => void): void;
191
182
  /**
192
- * <p>Deletes a medical transcription job. To use this operation, specify the name of the job you
193
- * want to delete using <code>MedicalTranscriptionJobName</code>. Job names are case
194
- * sensitive.</p>
183
+ * <p>Deletes a medical transcription job. To use this operation, specify the name of the
184
+ * job you want to delete using <code>MedicalTranscriptionJobName</code>. Job names are
185
+ * case sensitive.</p>
195
186
  */
196
187
  deleteMedicalTranscriptionJob(args: DeleteMedicalTranscriptionJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMedicalTranscriptionJobCommandOutput>;
197
188
  deleteMedicalTranscriptionJob(args: DeleteMedicalTranscriptionJobCommandInput, cb: (err: any, data?: DeleteMedicalTranscriptionJobCommandOutput) => void): void;
198
189
  deleteMedicalTranscriptionJob(args: DeleteMedicalTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMedicalTranscriptionJobCommandOutput) => void): void;
199
190
  /**
200
191
  * <p>Deletes a custom medical vocabulary. To use this operation, specify the name of the
201
- * vocabulary you want to delete using <code>VocabularyName</code>. Vocabulary names are
202
- * case sensitive.</p>
192
+ * custom vocabulary you want to delete using <code>VocabularyName</code>. Custom
193
+ * vocabulary names are case sensitive.</p>
203
194
  */
204
195
  deleteMedicalVocabulary(args: DeleteMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMedicalVocabularyCommandOutput>;
205
196
  deleteMedicalVocabulary(args: DeleteMedicalVocabularyCommandInput, cb: (err: any, data?: DeleteMedicalVocabularyCommandOutput) => void): void;
206
197
  deleteMedicalVocabulary(args: DeleteMedicalVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMedicalVocabularyCommandOutput) => void): void;
207
198
  /**
208
- * <p>Deletes a transcription job. To use this operation, specify the name of the job you want to
209
- * delete using <code>TranscriptionJobName</code>. Job names are case sensitive.</p>
199
+ * <p>Deletes a transcription job. To use this operation, specify the name of the job you
200
+ * want to delete using <code>TranscriptionJobName</code>. Job names are case
201
+ * sensitive.</p>
210
202
  */
211
203
  deleteTranscriptionJob(args: DeleteTranscriptionJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTranscriptionJobCommandOutput>;
212
204
  deleteTranscriptionJob(args: DeleteTranscriptionJobCommandInput, cb: (err: any, data?: DeleteTranscriptionJobCommandOutput) => void): void;
213
205
  deleteTranscriptionJob(args: DeleteTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTranscriptionJobCommandOutput) => void): void;
214
206
  /**
215
- * <p>Deletes a custom vocabulary. To use this operation, specify the name of the vocabulary you
216
- * want to delete using <code>VocabularyName</code>. Vocabulary names are case
217
- * sensitive.</p>
207
+ * <p>Deletes a custom vocabulary. To use this operation, specify the name of the custom
208
+ * vocabulary you want to delete using <code>VocabularyName</code>. Custom vocabulary names
209
+ * are case sensitive.</p>
218
210
  */
219
211
  deleteVocabulary(args: DeleteVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVocabularyCommandOutput>;
220
212
  deleteVocabulary(args: DeleteVocabularyCommandInput, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
221
213
  deleteVocabulary(args: DeleteVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVocabularyCommandOutput) => void): void;
222
214
  /**
223
- * <p>Deletes a vocabulary filter. To use this operation, specify the name of the vocabulary filter
224
- * you want to delete using <code>VocabularyFilterName</code>. Vocabulary filter names are
225
- * case sensitive.</p>
215
+ * <p>Deletes a custom vocabulary filter. To use this operation, specify the name of the
216
+ * custom vocabulary filter you want to delete using <code>VocabularyFilterName</code>.
217
+ * Custom vocabulary filter names are case sensitive.</p>
226
218
  */
227
219
  deleteVocabularyFilter(args: DeleteVocabularyFilterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteVocabularyFilterCommandOutput>;
228
220
  deleteVocabularyFilter(args: DeleteVocabularyFilterCommandInput, cb: (err: any, data?: DeleteVocabularyFilterCommandOutput) => void): void;
229
221
  deleteVocabularyFilter(args: DeleteVocabularyFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteVocabularyFilterCommandOutput) => void): void;
230
222
  /**
231
223
  * <p>Provides information about the specified custom language model.</p>
232
- * <p>This operation also shows if the base language model you used to create your custom
233
- * language model has been updated. If Amazon Transcribe has updated the base model, you
234
- * can create a new custom language model using the updated base model.</p>
224
+ * <p>This operation also shows if the base language model that you used to create your
225
+ * custom language model has been updated. If Amazon Transcribe has updated the base
226
+ * model, you can create a new custom language model using the updated base model.</p>
235
227
  * <p>If you tried to create a new custom language model and the request wasn't successful,
236
228
  * you can use <code>DescribeLanguageModel</code> to help identify the reason for this
237
229
  * failure.</p>
238
- * <p>To get a list of your custom language models, use the
239
- * operation.</p>
240
230
  */
241
231
  describeLanguageModel(args: DescribeLanguageModelCommandInput, options?: __HttpHandlerOptions): Promise<DescribeLanguageModelCommandOutput>;
242
232
  describeLanguageModel(args: DescribeLanguageModelCommandInput, cb: (err: any, data?: DescribeLanguageModelCommandOutput) => void): void;
243
233
  describeLanguageModel(args: DescribeLanguageModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeLanguageModelCommandOutput) => void): void;
244
234
  /**
245
235
  * <p>Provides information about the specified Call Analytics category.</p>
246
- * <p>To get a list of your Call Analytics categories, use the
247
- * operation.</p>
236
+ * <p>To get a list of your Call Analytics categories, use the operation.</p>
248
237
  */
249
238
  getCallAnalyticsCategory(args: GetCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<GetCallAnalyticsCategoryCommandOutput>;
250
239
  getCallAnalyticsCategory(args: GetCallAnalyticsCategoryCommandInput, cb: (err: any, data?: GetCallAnalyticsCategoryCommandOutput) => void): void;
251
240
  getCallAnalyticsCategory(args: GetCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCallAnalyticsCategoryCommandOutput) => void): void;
252
241
  /**
253
242
  * <p>Provides information about the specified Call Analytics job.</p>
254
- * <p>To view the job's status, refer to <code>CallAnalyticsJobStatus</code>. If the status is
255
- * <code>COMPLETED</code>, the job is finished. You can find your completed transcript at
256
- * the URI specified in <code>TranscriptFileUri</code>. If the status is <code>FAILED</code>,
257
- * <code>FailureReason</code> provides details on why your transcription job failed.</p>
258
- * <p>If you enabled personally identifiable information (PII) redaction, the redacted transcript
259
- * appears at the location specified in <code>RedactedTranscriptFileUri</code>.</p>
260
- * <p>If you chose to redact the audio in your media file, you can find your redacted media file
261
- * at the location specified in <code>RedactedMediaFileUri</code>.</p>
262
- * <p>To get a list of your Call Analytics jobs, use the
263
- * operation.</p>
243
+ * <p>To view the job's status, refer to <code>CallAnalyticsJobStatus</code>. If the status
244
+ * is <code>COMPLETED</code>, the job is finished. You can find your completed transcript
245
+ * at the URI specified in <code>TranscriptFileUri</code>. If the status is
246
+ * <code>FAILED</code>, <code>FailureReason</code> provides details on why your
247
+ * transcription job failed.</p>
248
+ * <p>If you enabled personally identifiable information (PII) redaction, the redacted
249
+ * transcript appears at the location specified in
250
+ * <code>RedactedTranscriptFileUri</code>.</p>
251
+ * <p>If you chose to redact the audio in your media file, you can find your redacted media
252
+ * file at the location specified in <code>RedactedMediaFileUri</code>.</p>
253
+ * <p>To get a list of your Call Analytics jobs, use the operation.</p>
264
254
  */
265
255
  getCallAnalyticsJob(args: GetCallAnalyticsJobCommandInput, options?: __HttpHandlerOptions): Promise<GetCallAnalyticsJobCommandOutput>;
266
256
  getCallAnalyticsJob(args: GetCallAnalyticsJobCommandInput, cb: (err: any, data?: GetCallAnalyticsJobCommandOutput) => void): void;
@@ -268,24 +258,23 @@ export declare class Transcribe extends TranscribeClient {
268
258
  /**
269
259
  * <p>Provides information about the specified medical transcription job.</p>
270
260
  * <p>To view the status of the specified medical transcription job, check the
271
- * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>, the
272
- * job is finished and you can find the results at the location specified in
273
- * <code>TranscriptFileUri</code>. If the status is <code>FAILED</code>,
274
- * <code>FailureReason</code> provides details on why your transcription job failed.</p>
275
- * <p>To get a list of your medical transcription jobs, use the
276
- * operation.</p>
261
+ * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
262
+ * the job is finished. You can find the results at the location specified in
263
+ * <code>TranscriptFileUri</code>. If the status is <code>FAILED</code>,
264
+ * <code>FailureReason</code> provides details on why your transcription job
265
+ * failed.</p>
266
+ * <p>To get a list of your medical transcription jobs, use the operation.</p>
277
267
  */
278
268
  getMedicalTranscriptionJob(args: GetMedicalTranscriptionJobCommandInput, options?: __HttpHandlerOptions): Promise<GetMedicalTranscriptionJobCommandOutput>;
279
269
  getMedicalTranscriptionJob(args: GetMedicalTranscriptionJobCommandInput, cb: (err: any, data?: GetMedicalTranscriptionJobCommandOutput) => void): void;
280
270
  getMedicalTranscriptionJob(args: GetMedicalTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMedicalTranscriptionJobCommandOutput) => void): void;
281
271
  /**
282
272
  * <p>Provides information about the specified custom medical vocabulary.</p>
283
- * <p>To view the status of the specified medical vocabulary, check the
284
- * <code>VocabularyState</code> field. If the status is <code>READY</code>, your vocabulary
285
- * is available to use. If the status is <code>FAILED</code>, <code>FailureReason</code> provides
286
- * details on why your vocabulary failed.</p>
287
- * <p>To get a list of your custom medical vocabularies, use the
288
- * operation.</p>
273
+ * <p>To view the status of the specified custom medical vocabulary, check the
274
+ * <code>VocabularyState</code> field. If the status is <code>READY</code>, your custom
275
+ * vocabulary is available to use. If the status is <code>FAILED</code>,
276
+ * <code>FailureReason</code> provides details on why your vocabulary failed.</p>
277
+ * <p>To get a list of your custom medical vocabularies, use the operation.</p>
289
278
  */
290
279
  getMedicalVocabulary(args: GetMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<GetMedicalVocabularyCommandOutput>;
291
280
  getMedicalVocabulary(args: GetMedicalVocabularyCommandInput, cb: (err: any, data?: GetMedicalVocabularyCommandOutput) => void): void;
@@ -293,82 +282,73 @@ export declare class Transcribe extends TranscribeClient {
293
282
  /**
294
283
  * <p>Provides information about the specified transcription job.</p>
295
284
  * <p>To view the status of the specified transcription job, check the
296
- * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>, the
297
- * job is finished and you can find the results at the location specified in
298
- * <code>TranscriptFileUri</code>. If the status is <code>FAILED</code>,
299
- * <code>FailureReason</code> provides details on why your transcription job failed.</p>
300
- * <p>If you enabled content redaction, the redacted transcript
301
- * can be found at the location specified in <code>RedactedTranscriptFileUri</code>.</p>
302
- * <p>To get a list of your transcription jobs, use the
303
- * operation.</p>
285
+ * <code>TranscriptionJobStatus</code> field. If the status is <code>COMPLETED</code>,
286
+ * the job is finished. You can find the results at the location specified in
287
+ * <code>TranscriptFileUri</code>. If the status is <code>FAILED</code>,
288
+ * <code>FailureReason</code> provides details on why your transcription job
289
+ * failed.</p>
290
+ * <p>If you enabled content redaction, the redacted transcript can be found at the location
291
+ * specified in <code>RedactedTranscriptFileUri</code>.</p>
292
+ * <p>To get a list of your transcription jobs, use the operation.</p>
304
293
  */
305
294
  getTranscriptionJob(args: GetTranscriptionJobCommandInput, options?: __HttpHandlerOptions): Promise<GetTranscriptionJobCommandOutput>;
306
295
  getTranscriptionJob(args: GetTranscriptionJobCommandInput, cb: (err: any, data?: GetTranscriptionJobCommandOutput) => void): void;
307
296
  getTranscriptionJob(args: GetTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTranscriptionJobCommandOutput) => void): void;
308
297
  /**
309
298
  * <p>Provides information about the specified custom vocabulary.</p>
310
- * <p>To view the status of the specified vocabulary, check the <code>VocabularyState</code>
311
- * field. If the status is <code>READY</code>, your vocabulary is available to use. If the status
312
- * is <code>FAILED</code>, <code>FailureReason</code> provides details on why your
313
- * vocabulary failed.</p>
314
- * <p>To get a list of your custom vocabularies, use the
315
- * operation.</p>
299
+ * <p>To view the status of the specified custom vocabulary, check the
300
+ * <code>VocabularyState</code> field. If the status is <code>READY</code>, your custom
301
+ * vocabulary is available to use. If the status is <code>FAILED</code>,
302
+ * <code>FailureReason</code> provides details on why your custom vocabulary
303
+ * failed.</p>
304
+ * <p>To get a list of your custom vocabularies, use the operation.</p>
316
305
  */
317
306
  getVocabulary(args: GetVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<GetVocabularyCommandOutput>;
318
307
  getVocabulary(args: GetVocabularyCommandInput, cb: (err: any, data?: GetVocabularyCommandOutput) => void): void;
319
308
  getVocabulary(args: GetVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVocabularyCommandOutput) => void): void;
320
309
  /**
321
310
  * <p>Provides information about the specified custom vocabulary filter.</p>
322
- * <p>To view the status of the specified vocabulary filter, check the <code>VocabularyState</code>
323
- * field. If the status is <code>READY</code>, your vocabulary is available to use. If the status is
324
- * <code>FAILED</code>, <code>FailureReason</code> provides details on why your vocabulary
325
- * filter failed.</p>
326
- * <p>To get a list of your custom vocabulary filters, use the
327
- * operation.</p>
311
+ * <p>To get a list of your custom vocabulary filters, use the operation.</p>
328
312
  */
329
313
  getVocabularyFilter(args: GetVocabularyFilterCommandInput, options?: __HttpHandlerOptions): Promise<GetVocabularyFilterCommandOutput>;
330
314
  getVocabularyFilter(args: GetVocabularyFilterCommandInput, cb: (err: any, data?: GetVocabularyFilterCommandOutput) => void): void;
331
315
  getVocabularyFilter(args: GetVocabularyFilterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetVocabularyFilterCommandOutput) => void): void;
332
316
  /**
333
- * <p>Provides a list of Call Analytics categories, including all rules that make up each category.</p>
334
- * <p>To get detailed information about a specific Call Analytics category, use the
335
- * operation.</p>
317
+ * <p>Provides a list of Call Analytics categories, including all rules that make up each
318
+ * category.</p>
319
+ * <p>To get detailed information about a specific Call Analytics category, use the operation.</p>
336
320
  */
337
321
  listCallAnalyticsCategories(args: ListCallAnalyticsCategoriesCommandInput, options?: __HttpHandlerOptions): Promise<ListCallAnalyticsCategoriesCommandOutput>;
338
322
  listCallAnalyticsCategories(args: ListCallAnalyticsCategoriesCommandInput, cb: (err: any, data?: ListCallAnalyticsCategoriesCommandOutput) => void): void;
339
323
  listCallAnalyticsCategories(args: ListCallAnalyticsCategoriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCallAnalyticsCategoriesCommandOutput) => void): void;
340
324
  /**
341
- * <p>Provides a list of Call Analytics jobs that match the specified criteria. If no criteria are
342
- * specified, all Call Analytics jobs are returned.</p>
343
- * <p>To get detailed information about a specific Call Analytics job, use the
344
- * operation.</p>
325
+ * <p>Provides a list of Call Analytics jobs that match the specified criteria. If no
326
+ * criteria are specified, all Call Analytics jobs are returned.</p>
327
+ * <p>To get detailed information about a specific Call Analytics job, use the operation.</p>
345
328
  */
346
329
  listCallAnalyticsJobs(args: ListCallAnalyticsJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListCallAnalyticsJobsCommandOutput>;
347
330
  listCallAnalyticsJobs(args: ListCallAnalyticsJobsCommandInput, cb: (err: any, data?: ListCallAnalyticsJobsCommandOutput) => void): void;
348
331
  listCallAnalyticsJobs(args: ListCallAnalyticsJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCallAnalyticsJobsCommandOutput) => void): void;
349
332
  /**
350
- * <p>Provides a list of custom language models that match the specified criteria. If no criteria
351
- * are specified, all language models are returned.</p>
352
- * <p>To get detailed information about a specific custom language model, use the
353
- * operation.</p>
333
+ * <p>Provides a list of custom language models that match the specified criteria. If no
334
+ * criteria are specified, all custom language models are returned.</p>
335
+ * <p>To get detailed information about a specific custom language model, use the operation.</p>
354
336
  */
355
337
  listLanguageModels(args: ListLanguageModelsCommandInput, options?: __HttpHandlerOptions): Promise<ListLanguageModelsCommandOutput>;
356
338
  listLanguageModels(args: ListLanguageModelsCommandInput, cb: (err: any, data?: ListLanguageModelsCommandOutput) => void): void;
357
339
  listLanguageModels(args: ListLanguageModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLanguageModelsCommandOutput) => void): void;
358
340
  /**
359
- * <p>Provides a list of medical transcription jobs that match the specified criteria. If no criteria are
360
- * specified, all medical transcription jobs are returned.</p>
361
- * <p>To get detailed information about a specific medical transcription job, use the
362
- * operation.</p>
341
+ * <p>Provides a list of medical transcription jobs that match the specified criteria. If no
342
+ * criteria are specified, all medical transcription jobs are returned.</p>
343
+ * <p>To get detailed information about a specific medical transcription job, use the operation.</p>
363
344
  */
364
345
  listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListMedicalTranscriptionJobsCommandOutput>;
365
346
  listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, cb: (err: any, data?: ListMedicalTranscriptionJobsCommandOutput) => void): void;
366
347
  listMedicalTranscriptionJobs(args: ListMedicalTranscriptionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMedicalTranscriptionJobsCommandOutput) => void): void;
367
348
  /**
368
- * <p>Provides a list of custom medical vocabularies that match the specified criteria. If no
369
- * criteria are specified, all custom medical vocabularies are returned.</p>
370
- * <p>To get detailed information about a specific custom medical vocabulary, use the
371
- * operation.</p>
349
+ * <p>Provides a list of custom medical vocabularies that match the specified criteria. If
350
+ * no criteria are specified, all custom medical vocabularies are returned.</p>
351
+ * <p>To get detailed information about a specific custom medical vocabulary, use the operation.</p>
372
352
  */
373
353
  listMedicalVocabularies(args: ListMedicalVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListMedicalVocabulariesCommandOutput>;
374
354
  listMedicalVocabularies(args: ListMedicalVocabulariesCommandInput, cb: (err: any, data?: ListMedicalVocabulariesCommandOutput) => void): void;
@@ -376,25 +356,24 @@ export declare class Transcribe extends TranscribeClient {
376
356
  /**
377
357
  * <p>Lists all tags associated with the specified transcription job, vocabulary, model, or
378
358
  * resource.</p>
379
- * <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging resources</a>.</p>
359
+ * <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
360
+ * resources</a>.</p>
380
361
  */
381
362
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
382
363
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
383
364
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
384
365
  /**
385
- * <p>Provides a list of transcription jobs that match the specified criteria. If no criteria are
386
- * specified, all transcription jobs are returned.</p>
387
- * <p>To get detailed information about a specific transcription job, use the
388
- * operation.</p>
366
+ * <p>Provides a list of transcription jobs that match the specified criteria. If no
367
+ * criteria are specified, all transcription jobs are returned.</p>
368
+ * <p>To get detailed information about a specific transcription job, use the operation.</p>
389
369
  */
390
370
  listTranscriptionJobs(args: ListTranscriptionJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListTranscriptionJobsCommandOutput>;
391
371
  listTranscriptionJobs(args: ListTranscriptionJobsCommandInput, cb: (err: any, data?: ListTranscriptionJobsCommandOutput) => void): void;
392
372
  listTranscriptionJobs(args: ListTranscriptionJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTranscriptionJobsCommandOutput) => void): void;
393
373
  /**
394
- * <p>Provides a list of custom vocabularies that match the specified criteria. If no criteria are
395
- * specified, all custom vocabularies are returned.</p>
396
- * <p>To get detailed information about a specific custom vocabulary, use the
397
- * operation.</p>
374
+ * <p>Provides a list of custom vocabularies that match the specified criteria. If no
375
+ * criteria are specified, all custom vocabularies are returned.</p>
376
+ * <p>To get detailed information about a specific custom vocabulary, use the operation.</p>
398
377
  */
399
378
  listVocabularies(args: ListVocabulariesCommandInput, options?: __HttpHandlerOptions): Promise<ListVocabulariesCommandOutput>;
400
379
  listVocabularies(args: ListVocabulariesCommandInput, cb: (err: any, data?: ListVocabulariesCommandOutput) => void): void;
@@ -402,8 +381,7 @@ export declare class Transcribe extends TranscribeClient {
402
381
  /**
403
382
  * <p>Provides a list of custom vocabulary filters that match the specified criteria. If no
404
383
  * criteria are specified, all custom vocabularies are returned.</p>
405
- * <p>To get detailed information about a specific custom vocabulary filter, use the
406
- * operation.</p>
384
+ * <p>To get detailed information about a specific custom vocabulary filter, use the operation.</p>
407
385
  */
408
386
  listVocabularyFilters(args: ListVocabularyFiltersCommandInput, options?: __HttpHandlerOptions): Promise<ListVocabularyFiltersCommandOutput>;
409
387
  listVocabularyFilters(args: ListVocabularyFiltersCommandInput, cb: (err: any, data?: ListVocabularyFiltersCommandOutput) => void): void;
@@ -411,76 +389,77 @@ export declare class Transcribe extends TranscribeClient {
411
389
  /**
412
390
  * <p>Transcribes the audio from a customer service call and applies any additional Request
413
391
  * Parameters you choose to include in your request.</p>
414
- * <p>In addition to many of the standard transcription features, Call Analytics provides you with
415
- * call characteristics, call summarization, speaker sentiment, and optional redaction of your text
416
- * transcript and your audio file. You can also apply custom categories to flag specified conditions. To
417
- * learn more about these features and insights, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics.html">Analyzing call center audio with Call
418
- * Analytics</a>.</p>
392
+ * <p>In addition to many standard transcription features, Call Analytics provides you with
393
+ * call characteristics, call summarization, speaker sentiment, and optional redaction of
394
+ * your text transcript and your audio file. You can also apply custom categories to flag
395
+ * specified conditions. To learn more about these features and insights, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics.html">Analyzing call
396
+ * center audio with Call Analytics</a>.</p>
419
397
  * <p>If you want to apply categories to your Call Analytics job, you must create them
420
- * before submitting your job request. Categories cannot be retroactively applied to a job. To
421
- * create a new category, use the operation.
422
- * To learn more about Call Analytics categories, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/call-analytics-create-categories.html">Creating
423
- * categories</a>.</p>
424
- * <p>To make a <code>StartCallAnalyticsJob</code> request, you must first upload your media file
425
- * into an Amazon S3 bucket; you can then specify the Amazon S3 location of the file
426
- * using the <code>Media</code> parameter.</p>
398
+ * before submitting your job request. Categories cannot be retroactively applied to a job.
399
+ * To create a new category, use the
400
+ * operation. To learn more about Call Analytics categories, see <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-batch.html">Creating categories for batch
401
+ * transcriptions</a> and <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tca-categories-stream.html">Creating categories for
402
+ * streaming transcriptions</a>.</p>
403
+ * <p>To make a <code>StartCallAnalyticsJob</code> request, you must first upload your media
404
+ * file into an Amazon S3 bucket; you can then specify the Amazon S3
405
+ * location of the file using the <code>Media</code> parameter.</p>
427
406
  * <p>You must include the following parameters in your <code>StartCallAnalyticsJob</code>
428
407
  * request:</p>
429
408
  * <ul>
430
409
  * <li>
431
410
  * <p>
432
411
  * <code>region</code>: The Amazon Web Services Region where you are making your
433
- * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer
434
- * to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe
435
- * endpoints and quotas</a>.</p>
412
+ * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe endpoints and
413
+ * quotas</a>.</p>
436
414
  * </li>
437
415
  * <li>
438
416
  * <p>
439
- * <code>CallAnalyticsJobName</code>: A custom name you create for your transcription job
440
- * that is unique within your Amazon Web Services account.</p>
417
+ * <code>CallAnalyticsJobName</code>: A custom name that you create for your
418
+ * transcription job that's unique within your Amazon Web Services account.</p>
441
419
  * </li>
442
420
  * <li>
443
421
  * <p>
444
- * <code>DataAccessRoleArn</code>: The Amazon Resource Name (ARN) of an IAM role that
445
- * has permissions to access the Amazon S3 bucket that contains your input files.</p>
422
+ * <code>DataAccessRoleArn</code>: The Amazon Resource Name (ARN) of an IAM role
423
+ * that has permissions to access the Amazon S3 bucket that contains your
424
+ * input files.</p>
446
425
  * </li>
447
426
  * <li>
448
427
  * <p>
449
- * <code>Media</code> (<code>MediaFileUri</code> or <code>RedactedMediaFileUri</code>):
450
- * The Amazon S3 location of your media file.</p>
428
+ * <code>Media</code> (<code>MediaFileUri</code> or
429
+ * <code>RedactedMediaFileUri</code>): The Amazon S3 location of your
430
+ * media file.</p>
451
431
  * </li>
452
432
  * </ul>
453
433
  * <note>
454
- * <p>With Call Analytics, you can redact the audio contained in your media file by including
455
- * <code>RedactedMediaFileUri</code>, instead of <code>MediaFileUri</code>, to specify the
456
- * location of your input audio. If you choose to redact your audio, you can find your redacted
457
- * media at the location specified in the <code>RedactedMediaFileUri</code> field of your
458
- * response.</p>
434
+ * <p>With Call Analytics, you can redact the audio contained in your media file by
435
+ * including <code>RedactedMediaFileUri</code>, instead of <code>MediaFileUri</code>,
436
+ * to specify the location of your input audio. If you choose to redact your audio, you
437
+ * can find your redacted media at the location specified in the
438
+ * <code>RedactedMediaFileUri</code> field of your response.</p>
459
439
  * </note>
460
440
  */
461
441
  startCallAnalyticsJob(args: StartCallAnalyticsJobCommandInput, options?: __HttpHandlerOptions): Promise<StartCallAnalyticsJobCommandOutput>;
462
442
  startCallAnalyticsJob(args: StartCallAnalyticsJobCommandInput, cb: (err: any, data?: StartCallAnalyticsJobCommandOutput) => void): void;
463
443
  startCallAnalyticsJob(args: StartCallAnalyticsJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCallAnalyticsJobCommandOutput) => void): void;
464
444
  /**
465
- * <p>Transcribes the audio from a medical dictation or conversation and applies any additional
466
- * Request Parameters you choose to include in your request.</p>
467
- * <p>In addition to many of the standard transcription features, Amazon Transcribe Medical provides
468
- * you with a robust medical vocabulary and, optionally, content identification, which adds flags to
469
- * personal health information (PHI). To learn more about these features, refer to
470
- * <a href="https://docs.aws.amazon.com/transcribe/latest/dg/how-it-works-med.html">How
471
- * Amazon Transcribe Medical works</a>.</p>
472
- * <p>To make a <code>StartMedicalTranscriptionJob</code> request, you must first upload your media
473
- * file into an Amazon S3 bucket; you can then specify the S3 location of the file using the
474
- * <code>Media</code> parameter.</p>
475
- * <p>You must include the following parameters in your <code>StartMedicalTranscriptionJob</code>
476
- * request:</p>
445
+ * <p>Transcribes the audio from a medical dictation or conversation and applies any
446
+ * additional Request Parameters you choose to include in your request.</p>
447
+ * <p>In addition to many standard transcription features, Amazon Transcribe Medical
448
+ * provides you with a robust medical vocabulary and, optionally, content identification,
449
+ * which adds flags to personal health information (PHI). To learn more about these
450
+ * features, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/how-it-works-med.html">How Amazon Transcribe Medical
451
+ * works</a>.</p>
452
+ * <p>To make a <code>StartMedicalTranscriptionJob</code> request, you must first upload
453
+ * your media file into an Amazon S3 bucket; you can then specify the S3 location
454
+ * of the file using the <code>Media</code> parameter.</p>
455
+ * <p>You must include the following parameters in your
456
+ * <code>StartMedicalTranscriptionJob</code> request:</p>
477
457
  * <ul>
478
458
  * <li>
479
459
  * <p>
480
460
  * <code>region</code>: The Amazon Web Services Region where you are making your
481
- * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer
482
- * to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe
483
- * endpoints and quotas</a>.</p>
461
+ * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe endpoints and
462
+ * quotas</a>.</p>
484
463
  * </li>
485
464
  * <li>
486
465
  * <p>
@@ -489,8 +468,8 @@ export declare class Transcribe extends TranscribeClient {
489
468
  * </li>
490
469
  * <li>
491
470
  * <p>
492
- * <code>Media</code> (<code>MediaFileUri</code>): The Amazon S3 location of
493
- * your media file.</p>
471
+ * <code>Media</code> (<code>MediaFileUri</code>): The Amazon S3 location
472
+ * of your media file.</p>
494
473
  * </li>
495
474
  * <li>
496
475
  * <p>
@@ -499,8 +478,8 @@ export declare class Transcribe extends TranscribeClient {
499
478
  * <li>
500
479
  * <p>
501
480
  * <code>OutputBucketName</code>: The Amazon S3 bucket where you want
502
- * your transcript stored. If you want your output stored in a sub-folder of this bucket, you must
503
- * also include <code>OutputKey</code>.</p>
481
+ * your transcript stored. If you want your output stored in a sub-folder of this
482
+ * bucket, you must also include <code>OutputKey</code>.</p>
504
483
  * </li>
505
484
  * <li>
506
485
  * <p>
@@ -508,7 +487,8 @@ export declare class Transcribe extends TranscribeClient {
508
487
  * </li>
509
488
  * <li>
510
489
  * <p>
511
- * <code>Type</code>: Choose whether your audio is a conversation or a dictation.</p>
490
+ * <code>Type</code>: Choose whether your audio is a conversation or a
491
+ * dictation.</p>
512
492
  * </li>
513
493
  * </ul>
514
494
  */
@@ -516,40 +496,40 @@ export declare class Transcribe extends TranscribeClient {
516
496
  startMedicalTranscriptionJob(args: StartMedicalTranscriptionJobCommandInput, cb: (err: any, data?: StartMedicalTranscriptionJobCommandOutput) => void): void;
517
497
  startMedicalTranscriptionJob(args: StartMedicalTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartMedicalTranscriptionJobCommandOutput) => void): void;
518
498
  /**
519
- * <p>Transcribes the audio from a media file and applies any additional Request Parameters you
520
- * choose to include in your request.</p>
521
- * <p>To make a <code>StartTranscriptionJob</code> request, you must first upload your media file
522
- * into an Amazon S3 bucket; you can then specify the Amazon S3 location of the file
523
- * using the <code>Media</code> parameter.</p>
524
- * <p>You must include the following parameters in your <code>StartTranscriptionJob</code>
525
- * request:</p>
526
- * <ul>
499
+ * <p>Transcribes the audio from a media file and applies any additional Request Parameters
500
+ * you choose to include in your request.</p>
501
+ * <p>To make a <code>StartTranscriptionJob</code> request, you must first upload your media
502
+ * file into an Amazon S3 bucket; you can then specify the Amazon S3
503
+ * location of the file using the <code>Media</code> parameter.</p>
504
+ * <p>You must include the following parameters in your <code>StartTranscriptionJob</code>
505
+ * request:</p>
506
+ * <ul>
527
507
  * <li>
528
- * <p>
508
+ * <p>
529
509
  * <code>region</code>: The Amazon Web Services Region where you are making your
530
- * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer
531
- * to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe
532
- * endpoints and quotas</a>.</p>
533
- * </li>
510
+ * request. For a list of Amazon Web Services Regions supported with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/general/latest/gr/transcribe.html">Amazon Transcribe endpoints and
511
+ * quotas</a>.</p>
512
+ * </li>
534
513
  * <li>
535
- * <p>
536
- * <code>TranscriptionJobName</code>: A custom name you create for your transcription
537
- * job that is unique within your Amazon Web Services account.</p>
538
- * </li>
514
+ * <p>
515
+ * <code>TranscriptionJobName</code>: A custom name you create for your
516
+ * transcription job that is unique within your Amazon Web Services account.</p>
517
+ * </li>
539
518
  * <li>
540
- * <p>
541
- * <code>Media</code> (<code>MediaFileUri</code>): The Amazon S3 location of
542
- * your media file.</p>
543
- * </li>
519
+ * <p>
520
+ * <code>Media</code> (<code>MediaFileUri</code>): The Amazon S3 location
521
+ * of your media file.</p>
522
+ * </li>
544
523
  * <li>
545
- * <p>One of <code>LanguageCode</code>, <code>IdentifyLanguage</code>, or
546
- * <code>IdentifyMultipleLanguages</code>: If you know the language of your media file,
547
- * specify it using the <code>LanguageCode</code> parameter; you can find all valid language
548
- * codes in the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported languages</a> table.
549
- * If you don't know the languages spoken in your media, use either
550
- * <code>IdentifyLanguage</code> or <code>IdentifyMultipleLanguages</code> and let
551
- * Amazon Transcribe identify the languages for you.</p>
552
- * </li>
524
+ * <p>One of <code>LanguageCode</code>, <code>IdentifyLanguage</code>, or
525
+ * <code>IdentifyMultipleLanguages</code>: If you know the language of your
526
+ * media file, specify it using the <code>LanguageCode</code> parameter; you can
527
+ * find all valid language codes in the <a href="https://docs.aws.amazon.com/transcribe/latest/dg/supported-languages.html">Supported
528
+ * languages</a> table. If you don't know the languages spoken in your
529
+ * media, use either <code>IdentifyLanguage</code> or
530
+ * <code>IdentifyMultipleLanguages</code> and let Amazon Transcribe identify
531
+ * the languages for you.</p>
532
+ * </li>
553
533
  * </ul>
554
534
  */
555
535
  startTranscriptionJob(args: StartTranscriptionJobCommandInput, options?: __HttpHandlerOptions): Promise<StartTranscriptionJobCommandOutput>;
@@ -558,7 +538,8 @@ export declare class Transcribe extends TranscribeClient {
558
538
  /**
559
539
  * <p>Adds one or more custom tags, each in the form of a key:value pair, to the specified
560
540
  * resource.</p>
561
- * <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging resources</a>.</p>
541
+ * <p>To learn more about using tags with Amazon Transcribe, refer to <a href="https://docs.aws.amazon.com/transcribe/latest/dg/tagging.html">Tagging
542
+ * resources</a>.</p>
562
543
  */
563
544
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
564
545
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
@@ -566,39 +547,41 @@ export declare class Transcribe extends TranscribeClient {
566
547
  /**
567
548
  * <p>Removes the specified tags from the specified Amazon Transcribe resource.</p>
568
549
  * <p>If you include <code>UntagResource</code> in your request, you must also include
569
- * <code>ResourceArn</code> and <code>TagKeys</code>.</p>
550
+ * <code>ResourceArn</code> and <code>TagKeys</code>.</p>
570
551
  */
571
552
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
572
553
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
573
554
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
574
555
  /**
575
556
  * <p>Updates the specified Call Analytics category with new rules. Note that the
576
- * <code>UpdateCallAnalyticsCategory</code> operation overwrites all existing rules contained in
577
- * the specified category. You cannot append additional rules onto an existing category.</p>
557
+ * <code>UpdateCallAnalyticsCategory</code> operation overwrites all existing rules
558
+ * contained in the specified category. You cannot append additional rules onto an existing
559
+ * category.</p>
578
560
  * <p>To create a new category, see .</p>
579
561
  */
580
562
  updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCallAnalyticsCategoryCommandOutput>;
581
563
  updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, cb: (err: any, data?: UpdateCallAnalyticsCategoryCommandOutput) => void): void;
582
564
  updateCallAnalyticsCategory(args: UpdateCallAnalyticsCategoryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCallAnalyticsCategoryCommandOutput) => void): void;
583
565
  /**
584
- * <p>Updates an existing custom medical vocabulary with new values. This operation overwrites
585
- * all existing information with your new values; you cannot append new terms onto an existing
586
- * vocabulary.</p>
566
+ * <p>Updates an existing custom medical vocabulary with new values. This operation
567
+ * overwrites all existing information with your new values; you cannot append new terms
568
+ * onto an existing custom vocabulary.</p>
587
569
  */
588
570
  updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateMedicalVocabularyCommandOutput>;
589
571
  updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, cb: (err: any, data?: UpdateMedicalVocabularyCommandOutput) => void): void;
590
572
  updateMedicalVocabulary(args: UpdateMedicalVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMedicalVocabularyCommandOutput) => void): void;
591
573
  /**
592
- * <p>Updates an existing custom vocabulary with new values. This operation overwrites all existing
593
- * information with your new values; you cannot append new terms onto an existing vocabulary.</p>
574
+ * <p>Updates an existing custom vocabulary with new values. This operation overwrites all
575
+ * existing information with your new values; you cannot append new terms onto an existing
576
+ * custom vocabulary.</p>
594
577
  */
595
578
  updateVocabulary(args: UpdateVocabularyCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVocabularyCommandOutput>;
596
579
  updateVocabulary(args: UpdateVocabularyCommandInput, cb: (err: any, data?: UpdateVocabularyCommandOutput) => void): void;
597
580
  updateVocabulary(args: UpdateVocabularyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateVocabularyCommandOutput) => void): void;
598
581
  /**
599
- * <p>Updates an existing custom vocabulary filter with a new list of words. The new list you provide
600
- * overwrites all previous entries; you cannot append new terms onto an existing vocabulary
601
- * filter.</p>
582
+ * <p>Updates an existing custom vocabulary filter with a new list of words. The new list
583
+ * you provide overwrites all previous entries; you cannot append new terms onto an
584
+ * existing custom vocabulary filter.</p>
602
585
  */
603
586
  updateVocabularyFilter(args: UpdateVocabularyFilterCommandInput, options?: __HttpHandlerOptions): Promise<UpdateVocabularyFilterCommandOutput>;
604
587
  updateVocabularyFilter(args: UpdateVocabularyFilterCommandInput, cb: (err: any, data?: UpdateVocabularyFilterCommandOutput) => void): void;