@aws-sdk/client-transcribe 3.321.1 → 3.326.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 (40) hide show
  1. package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +87 -0
  2. package/dist-types/commands/CreateLanguageModelCommand.d.ts +14 -0
  3. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +10 -0
  4. package/dist-types/commands/CreateVocabularyCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +8 -0
  6. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +4 -0
  11. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteVocabularyCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +4 -0
  14. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +20 -0
  15. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +87 -0
  16. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +55 -0
  17. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +40 -0
  18. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +11 -0
  19. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +82 -0
  20. package/dist-types/commands/GetVocabularyCommand.d.ts +11 -0
  21. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +9 -0
  22. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +90 -0
  23. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +18 -0
  24. package/dist-types/commands/ListLanguageModelsCommand.d.ts +23 -0
  25. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +22 -0
  26. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +15 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  28. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +38 -0
  29. package/dist-types/commands/ListVocabulariesCommand.d.ts +15 -0
  30. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +13 -0
  31. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +55 -0
  32. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +40 -0
  33. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +82 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  36. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +87 -0
  37. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +9 -0
  38. package/dist-types/commands/UpdateVocabularyCommand.d.ts +9 -0
  39. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +8 -0
  40. package/package.json +16 -16
@@ -123,6 +123,91 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
123
123
  * };
124
124
  * const command = new CreateCallAnalyticsCategoryCommand(input);
125
125
  * const response = await client.send(command);
126
+ * // { // CreateCallAnalyticsCategoryResponse
127
+ * // CategoryProperties: { // CategoryProperties
128
+ * // CategoryName: "STRING_VALUE",
129
+ * // Rules: [ // RuleList
130
+ * // { // Rule Union: only one key present
131
+ * // NonTalkTimeFilter: { // NonTalkTimeFilter
132
+ * // Threshold: Number("long"),
133
+ * // AbsoluteTimeRange: { // AbsoluteTimeRange
134
+ * // StartTime: Number("long"),
135
+ * // EndTime: Number("long"),
136
+ * // First: Number("long"),
137
+ * // Last: Number("long"),
138
+ * // },
139
+ * // RelativeTimeRange: { // RelativeTimeRange
140
+ * // StartPercentage: Number("int"),
141
+ * // EndPercentage: Number("int"),
142
+ * // First: Number("int"),
143
+ * // Last: Number("int"),
144
+ * // },
145
+ * // Negate: true || false,
146
+ * // },
147
+ * // InterruptionFilter: { // InterruptionFilter
148
+ * // Threshold: Number("long"),
149
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
150
+ * // AbsoluteTimeRange: {
151
+ * // StartTime: Number("long"),
152
+ * // EndTime: Number("long"),
153
+ * // First: Number("long"),
154
+ * // Last: Number("long"),
155
+ * // },
156
+ * // RelativeTimeRange: {
157
+ * // StartPercentage: Number("int"),
158
+ * // EndPercentage: Number("int"),
159
+ * // First: Number("int"),
160
+ * // Last: Number("int"),
161
+ * // },
162
+ * // Negate: true || false,
163
+ * // },
164
+ * // TranscriptFilter: { // TranscriptFilter
165
+ * // TranscriptFilterType: "EXACT", // required
166
+ * // AbsoluteTimeRange: {
167
+ * // StartTime: Number("long"),
168
+ * // EndTime: Number("long"),
169
+ * // First: Number("long"),
170
+ * // Last: Number("long"),
171
+ * // },
172
+ * // RelativeTimeRange: {
173
+ * // StartPercentage: Number("int"),
174
+ * // EndPercentage: Number("int"),
175
+ * // First: Number("int"),
176
+ * // Last: Number("int"),
177
+ * // },
178
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
179
+ * // Negate: true || false,
180
+ * // Targets: [ // StringTargetList // required
181
+ * // "STRING_VALUE",
182
+ * // ],
183
+ * // },
184
+ * // SentimentFilter: { // SentimentFilter
185
+ * // Sentiments: [ // SentimentValueList // required
186
+ * // "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
187
+ * // ],
188
+ * // AbsoluteTimeRange: {
189
+ * // StartTime: Number("long"),
190
+ * // EndTime: Number("long"),
191
+ * // First: Number("long"),
192
+ * // Last: Number("long"),
193
+ * // },
194
+ * // RelativeTimeRange: {
195
+ * // StartPercentage: Number("int"),
196
+ * // EndPercentage: Number("int"),
197
+ * // First: Number("int"),
198
+ * // Last: Number("int"),
199
+ * // },
200
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
201
+ * // Negate: true || false,
202
+ * // },
203
+ * // },
204
+ * // ],
205
+ * // CreateTime: new Date("TIMESTAMP"),
206
+ * // LastUpdateTime: new Date("TIMESTAMP"),
207
+ * // InputType: "REAL_TIME" || "POST_CALL",
208
+ * // },
209
+ * // };
210
+ *
126
211
  * ```
127
212
  *
128
213
  * @param CreateCallAnalyticsCategoryCommandInput - {@link CreateCallAnalyticsCategoryCommandInput}
@@ -149,6 +234,8 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
149
234
  * <p>You've either sent too many requests or your input file is too long. Wait before
150
235
  * retrying your request, or use a smaller file and try your request again.</p>
151
236
  *
237
+ * @throws {@link TranscribeServiceException}
238
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
152
239
  *
153
240
  */
154
241
  export declare class CreateCallAnalyticsCategoryCommand extends $Command<CreateCallAnalyticsCategoryCommandInput, CreateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
@@ -60,6 +60,18 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes
60
60
  * };
61
61
  * const command = new CreateLanguageModelCommand(input);
62
62
  * const response = await client.send(command);
63
+ * // { // CreateLanguageModelResponse
64
+ * // LanguageCode: "en-US" || "hi-IN" || "es-US" || "en-GB" || "en-AU" || "de-DE" || "ja-JP",
65
+ * // BaseModelName: "NarrowBand" || "WideBand",
66
+ * // ModelName: "STRING_VALUE",
67
+ * // InputDataConfig: { // InputDataConfig
68
+ * // S3Uri: "STRING_VALUE", // required
69
+ * // TuningDataS3Uri: "STRING_VALUE",
70
+ * // DataAccessRoleArn: "STRING_VALUE", // required
71
+ * // },
72
+ * // ModelStatus: "IN_PROGRESS" || "FAILED" || "COMPLETED",
73
+ * // };
74
+ *
63
75
  * ```
64
76
  *
65
77
  * @param CreateLanguageModelCommandInput - {@link CreateLanguageModelCommandInput}
@@ -86,6 +98,8 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes
86
98
  * <p>You've either sent too many requests or your input file is too long. Wait before
87
99
  * retrying your request, or use a smaller file and try your request again.</p>
88
100
  *
101
+ * @throws {@link TranscribeServiceException}
102
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
89
103
  *
90
104
  */
91
105
  export declare class CreateLanguageModelCommand extends $Command<CreateLanguageModelCommandInput, CreateLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
@@ -51,6 +51,14 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab
51
51
  * };
52
52
  * const command = new CreateMedicalVocabularyCommand(input);
53
53
  * const response = await client.send(command);
54
+ * // { // CreateMedicalVocabularyResponse
55
+ * // VocabularyName: "STRING_VALUE",
56
+ * // 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",
57
+ * // VocabularyState: "PENDING" || "READY" || "FAILED",
58
+ * // LastModifiedTime: new Date("TIMESTAMP"),
59
+ * // FailureReason: "STRING_VALUE",
60
+ * // };
61
+ *
54
62
  * ```
55
63
  *
56
64
  * @param CreateMedicalVocabularyCommandInput - {@link CreateMedicalVocabularyCommandInput}
@@ -77,6 +85,8 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab
77
85
  * <p>You've either sent too many requests or your input file is too long. Wait before
78
86
  * retrying your request, or use a smaller file and try your request again.</p>
79
87
  *
88
+ * @throws {@link TranscribeServiceException}
89
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
80
90
  *
81
91
  */
82
92
  export declare class CreateMedicalVocabularyCommand extends $Command<CreateMedicalVocabularyCommandInput, CreateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -53,6 +53,14 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse,
53
53
  * };
54
54
  * const command = new CreateVocabularyCommand(input);
55
55
  * const response = await client.send(command);
56
+ * // { // CreateVocabularyResponse
57
+ * // VocabularyName: "STRING_VALUE",
58
+ * // 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",
59
+ * // VocabularyState: "PENDING" || "READY" || "FAILED",
60
+ * // LastModifiedTime: new Date("TIMESTAMP"),
61
+ * // FailureReason: "STRING_VALUE",
62
+ * // };
63
+ *
56
64
  * ```
57
65
  *
58
66
  * @param CreateVocabularyCommandInput - {@link CreateVocabularyCommandInput}
@@ -79,6 +87,8 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse,
79
87
  * <p>You've either sent too many requests or your input file is too long. Wait before
80
88
  * retrying your request, or use a smaller file and try your request again.</p>
81
89
  *
90
+ * @throws {@link TranscribeServiceException}
91
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
82
92
  *
83
93
  */
84
94
  export declare class CreateVocabularyCommand extends $Command<CreateVocabularyCommandInput, CreateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -52,6 +52,12 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil
52
52
  * };
53
53
  * const command = new CreateVocabularyFilterCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // { // CreateVocabularyFilterResponse
56
+ * // VocabularyFilterName: "STRING_VALUE",
57
+ * // 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",
58
+ * // LastModifiedTime: new Date("TIMESTAMP"),
59
+ * // };
60
+ *
55
61
  * ```
56
62
  *
57
63
  * @param CreateVocabularyFilterCommandInput - {@link CreateVocabularyFilterCommandInput}
@@ -78,6 +84,8 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil
78
84
  * <p>You've either sent too many requests or your input file is too long. Wait before
79
85
  * retrying your request, or use a smaller file and try your request again.</p>
80
86
  *
87
+ * @throws {@link TranscribeServiceException}
88
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
81
89
  *
82
90
  */
83
91
  export declare class CreateVocabularyFilterCommand extends $Command<CreateVocabularyFilterCommandInput, CreateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
33
33
  * };
34
34
  * const command = new DeleteCallAnalyticsCategoryCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteCallAnalyticsCategoryCommandInput - {@link DeleteCallAnalyticsCategoryCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
59
61
  * <p>We can't find the requested resource. Check that the specified name is correct and try
60
62
  * your request again.</p>
61
63
  *
64
+ * @throws {@link TranscribeServiceException}
65
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteCallAnalyticsCategoryCommand extends $Command<DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
33
33
  * };
34
34
  * const command = new DeleteCallAnalyticsJobCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteCallAnalyticsJobCommandInput - {@link DeleteCallAnalyticsJobCommandInput}
@@ -55,6 +57,8 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
55
57
  * <p>You've either sent too many requests or your input file is too long. Wait before
56
58
  * retrying your request, or use a smaller file and try your request again.</p>
57
59
  *
60
+ * @throws {@link TranscribeServiceException}
61
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeleteCallAnalyticsJobCommand extends $Command<DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteLanguageModelCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteLanguageModelCommandInput - {@link DeleteLanguageModelCommandInput}
@@ -55,6 +57,8 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
55
57
  * <p>You've either sent too many requests or your input file is too long. Wait before
56
58
  * retrying your request, or use a smaller file and try your request again.</p>
57
59
  *
60
+ * @throws {@link TranscribeServiceException}
61
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeleteLanguageModelCommand extends $Command<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
33
33
  * };
34
34
  * const command = new DeleteMedicalTranscriptionJobCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteMedicalTranscriptionJobCommandInput - {@link DeleteMedicalTranscriptionJobCommandInput}
@@ -55,6 +57,8 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
55
57
  * <p>You've either sent too many requests or your input file is too long. Wait before
56
58
  * retrying your request, or use a smaller file and try your request again.</p>
57
59
  *
60
+ * @throws {@link TranscribeServiceException}
61
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeleteMedicalTranscriptionJobCommand extends $Command<DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteMedicalVocabularyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteMedicalVocabularyCommandInput - {@link DeleteMedicalVocabularyCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
59
61
  * <p>We can't find the requested resource. Check that the specified name is correct and try
60
62
  * your request again.</p>
61
63
  *
64
+ * @throws {@link TranscribeServiceException}
65
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteMedicalVocabularyCommand extends $Command<DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteTranscriptionJobCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteTranscriptionJobCommandInput - {@link DeleteTranscriptionJobCommandInput}
@@ -55,6 +57,8 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
55
57
  * <p>You've either sent too many requests or your input file is too long. Wait before
56
58
  * retrying your request, or use a smaller file and try your request again.</p>
57
59
  *
60
+ * @throws {@link TranscribeServiceException}
61
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
58
62
  *
59
63
  */
60
64
  export declare class DeleteTranscriptionJobCommand extends $Command<DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteVocabularyCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteVocabularyCommandInput - {@link DeleteVocabularyCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
59
61
  * <p>We can't find the requested resource. Check that the specified name is correct and try
60
62
  * your request again.</p>
61
63
  *
64
+ * @throws {@link TranscribeServiceException}
65
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteVocabularyCommand extends $Command<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput, TranscribeClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteVocabularyFilterCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteVocabularyFilterCommandInput - {@link DeleteVocabularyFilterCommandInput}
@@ -59,6 +61,8 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
59
61
  * <p>We can't find the requested resource. Check that the specified name is correct and try
60
62
  * your request again.</p>
61
63
  *
64
+ * @throws {@link TranscribeServiceException}
65
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
62
66
  *
63
67
  */
64
68
  export declare class DeleteVocabularyFilterCommand extends $Command<DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
@@ -37,6 +37,24 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
37
37
  * };
38
38
  * const command = new DescribeLanguageModelCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // DescribeLanguageModelResponse
41
+ * // LanguageModel: { // LanguageModel
42
+ * // ModelName: "STRING_VALUE",
43
+ * // CreateTime: new Date("TIMESTAMP"),
44
+ * // LastModifiedTime: new Date("TIMESTAMP"),
45
+ * // LanguageCode: "en-US" || "hi-IN" || "es-US" || "en-GB" || "en-AU" || "de-DE" || "ja-JP",
46
+ * // BaseModelName: "NarrowBand" || "WideBand",
47
+ * // ModelStatus: "IN_PROGRESS" || "FAILED" || "COMPLETED",
48
+ * // UpgradeAvailability: true || false,
49
+ * // FailureReason: "STRING_VALUE",
50
+ * // InputDataConfig: { // InputDataConfig
51
+ * // S3Uri: "STRING_VALUE", // required
52
+ * // TuningDataS3Uri: "STRING_VALUE",
53
+ * // DataAccessRoleArn: "STRING_VALUE", // required
54
+ * // },
55
+ * // },
56
+ * // };
57
+ *
40
58
  * ```
41
59
  *
42
60
  * @param DescribeLanguageModelCommandInput - {@link DescribeLanguageModelCommandInput}
@@ -63,6 +81,8 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
63
81
  * <p>We can't find the requested resource. Check that the specified name is correct and try
64
82
  * your request again.</p>
65
83
  *
84
+ * @throws {@link TranscribeServiceException}
85
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
66
86
  *
67
87
  */
68
88
  export declare class DescribeLanguageModelCommand extends $Command<DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
@@ -32,6 +32,91 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
32
32
  * };
33
33
  * const command = new GetCallAnalyticsCategoryCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetCallAnalyticsCategoryResponse
36
+ * // CategoryProperties: { // CategoryProperties
37
+ * // CategoryName: "STRING_VALUE",
38
+ * // Rules: [ // RuleList
39
+ * // { // Rule Union: only one key present
40
+ * // NonTalkTimeFilter: { // NonTalkTimeFilter
41
+ * // Threshold: Number("long"),
42
+ * // AbsoluteTimeRange: { // AbsoluteTimeRange
43
+ * // StartTime: Number("long"),
44
+ * // EndTime: Number("long"),
45
+ * // First: Number("long"),
46
+ * // Last: Number("long"),
47
+ * // },
48
+ * // RelativeTimeRange: { // RelativeTimeRange
49
+ * // StartPercentage: Number("int"),
50
+ * // EndPercentage: Number("int"),
51
+ * // First: Number("int"),
52
+ * // Last: Number("int"),
53
+ * // },
54
+ * // Negate: true || false,
55
+ * // },
56
+ * // InterruptionFilter: { // InterruptionFilter
57
+ * // Threshold: Number("long"),
58
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
59
+ * // AbsoluteTimeRange: {
60
+ * // StartTime: Number("long"),
61
+ * // EndTime: Number("long"),
62
+ * // First: Number("long"),
63
+ * // Last: Number("long"),
64
+ * // },
65
+ * // RelativeTimeRange: {
66
+ * // StartPercentage: Number("int"),
67
+ * // EndPercentage: Number("int"),
68
+ * // First: Number("int"),
69
+ * // Last: Number("int"),
70
+ * // },
71
+ * // Negate: true || false,
72
+ * // },
73
+ * // TranscriptFilter: { // TranscriptFilter
74
+ * // TranscriptFilterType: "EXACT", // required
75
+ * // AbsoluteTimeRange: {
76
+ * // StartTime: Number("long"),
77
+ * // EndTime: Number("long"),
78
+ * // First: Number("long"),
79
+ * // Last: Number("long"),
80
+ * // },
81
+ * // RelativeTimeRange: {
82
+ * // StartPercentage: Number("int"),
83
+ * // EndPercentage: Number("int"),
84
+ * // First: Number("int"),
85
+ * // Last: Number("int"),
86
+ * // },
87
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
88
+ * // Negate: true || false,
89
+ * // Targets: [ // StringTargetList // required
90
+ * // "STRING_VALUE",
91
+ * // ],
92
+ * // },
93
+ * // SentimentFilter: { // SentimentFilter
94
+ * // Sentiments: [ // SentimentValueList // required
95
+ * // "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
96
+ * // ],
97
+ * // AbsoluteTimeRange: {
98
+ * // StartTime: Number("long"),
99
+ * // EndTime: Number("long"),
100
+ * // First: Number("long"),
101
+ * // Last: Number("long"),
102
+ * // },
103
+ * // RelativeTimeRange: {
104
+ * // StartPercentage: Number("int"),
105
+ * // EndPercentage: Number("int"),
106
+ * // First: Number("int"),
107
+ * // Last: Number("int"),
108
+ * // },
109
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
110
+ * // Negate: true || false,
111
+ * // },
112
+ * // },
113
+ * // ],
114
+ * // CreateTime: new Date("TIMESTAMP"),
115
+ * // LastUpdateTime: new Date("TIMESTAMP"),
116
+ * // InputType: "REAL_TIME" || "POST_CALL",
117
+ * // },
118
+ * // };
119
+ *
35
120
  * ```
36
121
  *
37
122
  * @param GetCallAnalyticsCategoryCommandInput - {@link GetCallAnalyticsCategoryCommandInput}
@@ -58,6 +143,8 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
58
143
  * <p>We can't find the requested resource. Check that the specified name is correct and try
59
144
  * your request again.</p>
60
145
  *
146
+ * @throws {@link TranscribeServiceException}
147
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
61
148
  *
62
149
  */
63
150
  export declare class GetCallAnalyticsCategoryCommand extends $Command<GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
@@ -42,6 +42,59 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
42
42
  * };
43
43
  * const command = new GetCallAnalyticsJobCommand(input);
44
44
  * const response = await client.send(command);
45
+ * // { // GetCallAnalyticsJobResponse
46
+ * // CallAnalyticsJob: { // CallAnalyticsJob
47
+ * // CallAnalyticsJobName: "STRING_VALUE",
48
+ * // CallAnalyticsJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
49
+ * // 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",
50
+ * // MediaSampleRateHertz: Number("int"),
51
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
52
+ * // Media: { // Media
53
+ * // MediaFileUri: "STRING_VALUE",
54
+ * // RedactedMediaFileUri: "STRING_VALUE",
55
+ * // },
56
+ * // Transcript: { // Transcript
57
+ * // TranscriptFileUri: "STRING_VALUE",
58
+ * // RedactedTranscriptFileUri: "STRING_VALUE",
59
+ * // },
60
+ * // StartTime: new Date("TIMESTAMP"),
61
+ * // CreationTime: new Date("TIMESTAMP"),
62
+ * // CompletionTime: new Date("TIMESTAMP"),
63
+ * // FailureReason: "STRING_VALUE",
64
+ * // DataAccessRoleArn: "STRING_VALUE",
65
+ * // IdentifiedLanguageScore: Number("float"),
66
+ * // Settings: { // CallAnalyticsJobSettings
67
+ * // VocabularyName: "STRING_VALUE",
68
+ * // VocabularyFilterName: "STRING_VALUE",
69
+ * // VocabularyFilterMethod: "remove" || "mask" || "tag",
70
+ * // LanguageModelName: "STRING_VALUE",
71
+ * // ContentRedaction: { // ContentRedaction
72
+ * // RedactionType: "PII", // required
73
+ * // RedactionOutput: "redacted" || "redacted_and_unredacted", // required
74
+ * // PiiEntityTypes: [ // PiiEntityTypes
75
+ * // "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
76
+ * // ],
77
+ * // },
78
+ * // LanguageOptions: [ // LanguageOptions
79
+ * // "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",
80
+ * // ],
81
+ * // LanguageIdSettings: { // LanguageIdSettingsMap
82
+ * // "<keys>": { // LanguageIdSettings
83
+ * // VocabularyName: "STRING_VALUE",
84
+ * // VocabularyFilterName: "STRING_VALUE",
85
+ * // LanguageModelName: "STRING_VALUE",
86
+ * // },
87
+ * // },
88
+ * // },
89
+ * // ChannelDefinitions: [ // ChannelDefinitions
90
+ * // { // ChannelDefinition
91
+ * // ChannelId: Number("int"),
92
+ * // ParticipantRole: "AGENT" || "CUSTOMER",
93
+ * // },
94
+ * // ],
95
+ * // },
96
+ * // };
97
+ *
45
98
  * ```
46
99
  *
47
100
  * @param GetCallAnalyticsJobCommandInput - {@link GetCallAnalyticsJobCommandInput}
@@ -68,6 +121,8 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
68
121
  * <p>We can't find the requested resource. Check that the specified name is correct and try
69
122
  * your request again.</p>
70
123
  *
124
+ * @throws {@link TranscribeServiceException}
125
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
71
126
  *
72
127
  */
73
128
  export declare class GetCallAnalyticsJobCommand extends $Command<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -38,6 +38,44 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
38
38
  * };
39
39
  * const command = new GetMedicalTranscriptionJobCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // { // GetMedicalTranscriptionJobResponse
42
+ * // MedicalTranscriptionJob: { // MedicalTranscriptionJob
43
+ * // MedicalTranscriptionJobName: "STRING_VALUE",
44
+ * // TranscriptionJobStatus: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
45
+ * // 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",
46
+ * // MediaSampleRateHertz: Number("int"),
47
+ * // MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
48
+ * // Media: { // Media
49
+ * // MediaFileUri: "STRING_VALUE",
50
+ * // RedactedMediaFileUri: "STRING_VALUE",
51
+ * // },
52
+ * // Transcript: { // MedicalTranscript
53
+ * // TranscriptFileUri: "STRING_VALUE",
54
+ * // },
55
+ * // StartTime: new Date("TIMESTAMP"),
56
+ * // CreationTime: new Date("TIMESTAMP"),
57
+ * // CompletionTime: new Date("TIMESTAMP"),
58
+ * // FailureReason: "STRING_VALUE",
59
+ * // Settings: { // MedicalTranscriptionSetting
60
+ * // ShowSpeakerLabels: true || false,
61
+ * // MaxSpeakerLabels: Number("int"),
62
+ * // ChannelIdentification: true || false,
63
+ * // ShowAlternatives: true || false,
64
+ * // MaxAlternatives: Number("int"),
65
+ * // VocabularyName: "STRING_VALUE",
66
+ * // },
67
+ * // ContentIdentificationType: "PHI",
68
+ * // Specialty: "PRIMARYCARE",
69
+ * // Type: "CONVERSATION" || "DICTATION",
70
+ * // Tags: [ // TagList
71
+ * // { // Tag
72
+ * // Key: "STRING_VALUE", // required
73
+ * // Value: "STRING_VALUE", // required
74
+ * // },
75
+ * // ],
76
+ * // },
77
+ * // };
78
+ *
41
79
  * ```
42
80
  *
43
81
  * @param GetMedicalTranscriptionJobCommandInput - {@link GetMedicalTranscriptionJobCommandInput}
@@ -64,6 +102,8 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
64
102
  * <p>We can't find the requested resource. Check that the specified name is correct and try
65
103
  * your request again.</p>
66
104
  *
105
+ * @throws {@link TranscribeServiceException}
106
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
67
107
  *
68
108
  */
69
109
  export declare class GetMedicalTranscriptionJobCommand extends $Command<GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
@@ -36,6 +36,15 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
36
36
  * };
37
37
  * const command = new GetMedicalVocabularyCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // GetMedicalVocabularyResponse
40
+ * // VocabularyName: "STRING_VALUE",
41
+ * // 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",
42
+ * // VocabularyState: "PENDING" || "READY" || "FAILED",
43
+ * // LastModifiedTime: new Date("TIMESTAMP"),
44
+ * // FailureReason: "STRING_VALUE",
45
+ * // DownloadUri: "STRING_VALUE",
46
+ * // };
47
+ *
39
48
  * ```
40
49
  *
41
50
  * @param GetMedicalVocabularyCommandInput - {@link GetMedicalVocabularyCommandInput}
@@ -62,6 +71,8 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
62
71
  * <p>We can't find the requested resource. Check that the specified name is correct and try
63
72
  * your request again.</p>
64
73
  *
74
+ * @throws {@link TranscribeServiceException}
75
+ * <p>Base exception class for all service exceptions from Transcribe service.</p>
65
76
  *
66
77
  */
67
78
  export declare class GetMedicalVocabularyCommand extends $Command<GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {