@aws-sdk/client-transcribe 3.300.0 → 3.301.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 +11 -11
  2. package/dist-types/commands/CreateLanguageModelCommand.d.ts +4 -4
  3. package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +3 -3
  4. package/dist-types/commands/CreateVocabularyCommand.d.ts +4 -4
  5. package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +4 -4
  6. package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteLanguageModelCommand.d.ts +1 -1
  9. package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +1 -1
  10. package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteVocabularyCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeLanguageModelCommand.d.ts +1 -1
  15. package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -1
  16. package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +1 -1
  17. package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +1 -1
  18. package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +1 -1
  19. package/dist-types/commands/GetTranscriptionJobCommand.d.ts +1 -1
  20. package/dist-types/commands/GetVocabularyCommand.d.ts +1 -1
  21. package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -1
  22. package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +1 -1
  23. package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListLanguageModelsCommand.d.ts +1 -1
  25. package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +1 -1
  26. package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +1 -1
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  28. package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +1 -1
  29. package/dist-types/commands/ListVocabulariesCommand.d.ts +1 -1
  30. package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -1
  31. package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +10 -10
  32. package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +6 -6
  33. package/dist-types/commands/StartTranscriptionJobCommand.d.ts +15 -15
  34. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  35. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  36. package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +11 -11
  37. package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateVocabularyCommand.d.ts +2 -2
  39. package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +2 -2
  40. package/package.json +3 -3
@@ -41,19 +41,19 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
41
41
  * import { TranscribeClient, CreateCallAnalyticsCategoryCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
42
42
  * // const { TranscribeClient, CreateCallAnalyticsCategoryCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
43
43
  * const client = new TranscribeClient(config);
44
- * const input = {
44
+ * const input = { // CreateCallAnalyticsCategoryRequest
45
45
  * CategoryName: "STRING_VALUE", // required
46
- * Rules: [ // required
47
- * { // Union: only one key present
48
- * NonTalkTimeFilter: {
46
+ * Rules: [ // RuleList // required
47
+ * { // Rule Union: only one key present
48
+ * NonTalkTimeFilter: { // NonTalkTimeFilter
49
49
  * Threshold: Number("long"),
50
- * AbsoluteTimeRange: {
50
+ * AbsoluteTimeRange: { // AbsoluteTimeRange
51
51
  * StartTime: Number("long"),
52
52
  * EndTime: Number("long"),
53
53
  * First: Number("long"),
54
54
  * Last: Number("long"),
55
55
  * },
56
- * RelativeTimeRange: {
56
+ * RelativeTimeRange: { // RelativeTimeRange
57
57
  * StartPercentage: Number("int"),
58
58
  * EndPercentage: Number("int"),
59
59
  * First: Number("int"),
@@ -61,7 +61,7 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
61
61
  * },
62
62
  * Negate: true || false,
63
63
  * },
64
- * InterruptionFilter: {
64
+ * InterruptionFilter: { // InterruptionFilter
65
65
  * Threshold: Number("long"),
66
66
  * ParticipantRole: "AGENT" || "CUSTOMER",
67
67
  * AbsoluteTimeRange: {
@@ -78,7 +78,7 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
78
78
  * },
79
79
  * Negate: true || false,
80
80
  * },
81
- * TranscriptFilter: {
81
+ * TranscriptFilter: { // TranscriptFilter
82
82
  * TranscriptFilterType: "EXACT", // required
83
83
  * AbsoluteTimeRange: {
84
84
  * StartTime: Number("long"),
@@ -94,12 +94,12 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
94
94
  * },
95
95
  * ParticipantRole: "AGENT" || "CUSTOMER",
96
96
  * Negate: true || false,
97
- * Targets: [ // required
97
+ * Targets: [ // StringTargetList // required
98
98
  * "STRING_VALUE",
99
99
  * ],
100
100
  * },
101
- * SentimentFilter: {
102
- * Sentiments: [ // required
101
+ * SentimentFilter: { // SentimentFilter
102
+ * Sentiments: [ // SentimentValueList // required
103
103
  * "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
104
104
  * ],
105
105
  * AbsoluteTimeRange: {
@@ -42,17 +42,17 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes
42
42
  * import { TranscribeClient, CreateLanguageModelCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
43
43
  * // const { TranscribeClient, CreateLanguageModelCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
44
44
  * const client = new TranscribeClient(config);
45
- * const input = {
45
+ * const input = { // CreateLanguageModelRequest
46
46
  * LanguageCode: "en-US" || "hi-IN" || "es-US" || "en-GB" || "en-AU" || "de-DE" || "ja-JP", // required
47
47
  * BaseModelName: "NarrowBand" || "WideBand", // required
48
48
  * ModelName: "STRING_VALUE", // required
49
- * InputDataConfig: {
49
+ * InputDataConfig: { // InputDataConfig
50
50
  * S3Uri: "STRING_VALUE", // required
51
51
  * TuningDataS3Uri: "STRING_VALUE",
52
52
  * DataAccessRoleArn: "STRING_VALUE", // required
53
53
  * },
54
- * Tags: [
55
- * {
54
+ * Tags: [ // TagList
55
+ * { // Tag
56
56
  * Key: "STRING_VALUE", // required
57
57
  * Value: "STRING_VALUE", // required
58
58
  * },
@@ -38,12 +38,12 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab
38
38
  * import { TranscribeClient, CreateMedicalVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
39
39
  * // const { TranscribeClient, CreateMedicalVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
40
40
  * const client = new TranscribeClient(config);
41
- * const input = {
41
+ * const input = { // CreateMedicalVocabularyRequest
42
42
  * VocabularyName: "STRING_VALUE", // required
43
43
  * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
44
44
  * VocabularyFileUri: "STRING_VALUE", // required
45
- * Tags: [
46
- * {
45
+ * Tags: [ // TagList
46
+ * { // Tag
47
47
  * Key: "STRING_VALUE", // required
48
48
  * Value: "STRING_VALUE", // required
49
49
  * },
@@ -36,15 +36,15 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse,
36
36
  * import { TranscribeClient, CreateVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
37
37
  * // const { TranscribeClient, CreateVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
38
38
  * const client = new TranscribeClient(config);
39
- * const input = {
39
+ * const input = { // CreateVocabularyRequest
40
40
  * VocabularyName: "STRING_VALUE", // required
41
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", // required
42
- * Phrases: [
42
+ * Phrases: [ // Phrases
43
43
  * "STRING_VALUE",
44
44
  * ],
45
45
  * VocabularyFileUri: "STRING_VALUE",
46
- * Tags: [
47
- * {
46
+ * Tags: [ // TagList
47
+ * { // Tag
48
48
  * Key: "STRING_VALUE", // required
49
49
  * Value: "STRING_VALUE", // required
50
50
  * },
@@ -35,15 +35,15 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil
35
35
  * import { TranscribeClient, CreateVocabularyFilterCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
36
36
  * // const { TranscribeClient, CreateVocabularyFilterCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
37
37
  * const client = new TranscribeClient(config);
38
- * const input = {
38
+ * const input = { // CreateVocabularyFilterRequest
39
39
  * VocabularyFilterName: "STRING_VALUE", // required
40
40
  * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
41
- * Words: [
41
+ * Words: [ // Words
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * VocabularyFilterFileUri: "STRING_VALUE",
45
- * Tags: [
46
- * {
45
+ * Tags: [ // TagList
46
+ * { // Tag
47
47
  * Key: "STRING_VALUE", // required
48
48
  * Value: "STRING_VALUE", // required
49
49
  * },
@@ -28,7 +28,7 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
28
28
  * import { TranscribeClient, DeleteCallAnalyticsCategoryCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteCallAnalyticsCategoryCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteCallAnalyticsCategoryRequest
32
32
  * CategoryName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteCallAnalyticsCategoryCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
28
28
  * import { TranscribeClient, DeleteCallAnalyticsJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteCallAnalyticsJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteCallAnalyticsJobRequest
32
32
  * CallAnalyticsJobName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteCallAnalyticsJobCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
28
28
  * import { TranscribeClient, DeleteLanguageModelCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteLanguageModelCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteLanguageModelRequest
32
32
  * ModelName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteLanguageModelCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
28
28
  * import { TranscribeClient, DeleteMedicalTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteMedicalTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteMedicalTranscriptionJobRequest
32
32
  * MedicalTranscriptionJobName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteMedicalTranscriptionJobCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
28
28
  * import { TranscribeClient, DeleteMedicalVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteMedicalVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteMedicalVocabularyRequest
32
32
  * VocabularyName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteMedicalVocabularyCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
28
28
  * import { TranscribeClient, DeleteTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteTranscriptionJobRequest
32
32
  * TranscriptionJobName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteTranscriptionJobCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
28
28
  * import { TranscribeClient, DeleteVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteVocabularyRequest
32
32
  * VocabularyName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteVocabularyCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
28
28
  * import { TranscribeClient, DeleteVocabularyFilterCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, DeleteVocabularyFilterCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // DeleteVocabularyFilterRequest
32
32
  * VocabularyFilterName: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new DeleteVocabularyFilterCommand(input);
@@ -32,7 +32,7 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
32
32
  * import { TranscribeClient, DescribeLanguageModelCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
33
33
  * // const { TranscribeClient, DescribeLanguageModelCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
34
34
  * const client = new TranscribeClient(config);
35
- * const input = {
35
+ * const input = { // DescribeLanguageModelRequest
36
36
  * ModelName: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new DescribeLanguageModelCommand(input);
@@ -27,7 +27,7 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
27
27
  * import { TranscribeClient, GetCallAnalyticsCategoryCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
28
28
  * // const { TranscribeClient, GetCallAnalyticsCategoryCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
29
29
  * const client = new TranscribeClient(config);
30
- * const input = {
30
+ * const input = { // GetCallAnalyticsCategoryRequest
31
31
  * CategoryName: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetCallAnalyticsCategoryCommand(input);
@@ -37,7 +37,7 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
37
37
  * import { TranscribeClient, GetCallAnalyticsJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
38
38
  * // const { TranscribeClient, GetCallAnalyticsJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
39
39
  * const client = new TranscribeClient(config);
40
- * const input = {
40
+ * const input = { // GetCallAnalyticsJobRequest
41
41
  * CallAnalyticsJobName: "STRING_VALUE", // required
42
42
  * };
43
43
  * const command = new GetCallAnalyticsJobCommand(input);
@@ -33,7 +33,7 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
33
33
  * import { TranscribeClient, GetMedicalTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
34
34
  * // const { TranscribeClient, GetMedicalTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
35
35
  * const client = new TranscribeClient(config);
36
- * const input = {
36
+ * const input = { // GetMedicalTranscriptionJobRequest
37
37
  * MedicalTranscriptionJobName: "STRING_VALUE", // required
38
38
  * };
39
39
  * const command = new GetMedicalTranscriptionJobCommand(input);
@@ -31,7 +31,7 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
31
31
  * import { TranscribeClient, GetMedicalVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
32
32
  * // const { TranscribeClient, GetMedicalVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
33
33
  * const client = new TranscribeClient(config);
34
- * const input = {
34
+ * const input = { // GetMedicalVocabularyRequest
35
35
  * VocabularyName: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new GetMedicalVocabularyCommand(input);
@@ -35,7 +35,7 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
35
35
  * import { TranscribeClient, GetTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
36
36
  * // const { TranscribeClient, GetTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
37
37
  * const client = new TranscribeClient(config);
38
- * const input = {
38
+ * const input = { // GetTranscriptionJobRequest
39
39
  * TranscriptionJobName: "STRING_VALUE", // required
40
40
  * };
41
41
  * const command = new GetTranscriptionJobCommand(input);
@@ -32,7 +32,7 @@ export interface GetVocabularyCommandOutput extends GetVocabularyResponse, __Met
32
32
  * import { TranscribeClient, GetVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
33
33
  * // const { TranscribeClient, GetVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
34
34
  * const client = new TranscribeClient(config);
35
- * const input = {
35
+ * const input = { // GetVocabularyRequest
36
36
  * VocabularyName: "STRING_VALUE", // required
37
37
  * };
38
38
  * const command = new GetVocabularyCommand(input);
@@ -27,7 +27,7 @@ export interface GetVocabularyFilterCommandOutput extends GetVocabularyFilterRes
27
27
  * import { TranscribeClient, GetVocabularyFilterCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
28
28
  * // const { TranscribeClient, GetVocabularyFilterCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
29
29
  * const client = new TranscribeClient(config);
30
- * const input = {
30
+ * const input = { // GetVocabularyFilterRequest
31
31
  * VocabularyFilterName: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetVocabularyFilterCommand(input);
@@ -28,7 +28,7 @@ export interface ListCallAnalyticsCategoriesCommandOutput extends ListCallAnalyt
28
28
  * import { TranscribeClient, ListCallAnalyticsCategoriesCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListCallAnalyticsCategoriesCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListCallAnalyticsCategoriesRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * };
@@ -28,7 +28,7 @@ export interface ListCallAnalyticsJobsCommandOutput extends ListCallAnalyticsJob
28
28
  * import { TranscribeClient, ListCallAnalyticsJobsCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListCallAnalyticsJobsCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListCallAnalyticsJobsRequest
32
32
  * Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
33
33
  * JobNameContains: "STRING_VALUE",
34
34
  * NextToken: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListLanguageModelsCommandOutput extends ListLanguageModelsRespo
28
28
  * import { TranscribeClient, ListLanguageModelsCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListLanguageModelsCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListLanguageModelsRequest
32
32
  * StatusEquals: "IN_PROGRESS" || "FAILED" || "COMPLETED",
33
33
  * NameContains: "STRING_VALUE",
34
34
  * NextToken: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListMedicalTranscriptionJobsCommandOutput extends ListMedicalTr
28
28
  * import { TranscribeClient, ListMedicalTranscriptionJobsCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListMedicalTranscriptionJobsCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListMedicalTranscriptionJobsRequest
32
32
  * Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
33
33
  * JobNameContains: "STRING_VALUE",
34
34
  * NextToken: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListMedicalVocabulariesCommandOutput extends ListMedicalVocabul
28
28
  * import { TranscribeClient, ListMedicalVocabulariesCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListMedicalVocabulariesCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListMedicalVocabulariesRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * StateEquals: "PENDING" || "READY" || "FAILED",
@@ -29,7 +29,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
29
29
  * import { TranscribeClient, ListTagsForResourceCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
30
30
  * // const { TranscribeClient, ListTagsForResourceCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
31
31
  * const client = new TranscribeClient(config);
32
- * const input = {
32
+ * const input = { // ListTagsForResourceRequest
33
33
  * ResourceArn: "STRING_VALUE", // required
34
34
  * };
35
35
  * const command = new ListTagsForResourceCommand(input);
@@ -28,7 +28,7 @@ export interface ListTranscriptionJobsCommandOutput extends ListTranscriptionJob
28
28
  * import { TranscribeClient, ListTranscriptionJobsCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListTranscriptionJobsCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListTranscriptionJobsRequest
32
32
  * Status: "QUEUED" || "IN_PROGRESS" || "FAILED" || "COMPLETED",
33
33
  * JobNameContains: "STRING_VALUE",
34
34
  * NextToken: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListVocabulariesCommandOutput extends ListVocabulariesResponse,
28
28
  * import { TranscribeClient, ListVocabulariesCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListVocabulariesCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListVocabulariesRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * StateEquals: "PENDING" || "READY" || "FAILED",
@@ -28,7 +28,7 @@ export interface ListVocabularyFiltersCommandOutput extends ListVocabularyFilter
28
28
  * import { TranscribeClient, ListVocabularyFiltersCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, ListVocabularyFiltersCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // ListVocabularyFiltersRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * NameContains: "STRING_VALUE",
@@ -76,40 +76,40 @@ export interface StartCallAnalyticsJobCommandOutput extends StartCallAnalyticsJo
76
76
  * import { TranscribeClient, StartCallAnalyticsJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
77
77
  * // const { TranscribeClient, StartCallAnalyticsJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
78
78
  * const client = new TranscribeClient(config);
79
- * const input = {
79
+ * const input = { // StartCallAnalyticsJobRequest
80
80
  * CallAnalyticsJobName: "STRING_VALUE", // required
81
- * Media: {
81
+ * Media: { // Media
82
82
  * MediaFileUri: "STRING_VALUE",
83
83
  * RedactedMediaFileUri: "STRING_VALUE",
84
84
  * },
85
85
  * OutputLocation: "STRING_VALUE",
86
86
  * OutputEncryptionKMSKeyId: "STRING_VALUE",
87
87
  * DataAccessRoleArn: "STRING_VALUE",
88
- * Settings: {
88
+ * Settings: { // CallAnalyticsJobSettings
89
89
  * VocabularyName: "STRING_VALUE",
90
90
  * VocabularyFilterName: "STRING_VALUE",
91
91
  * VocabularyFilterMethod: "remove" || "mask" || "tag",
92
92
  * LanguageModelName: "STRING_VALUE",
93
- * ContentRedaction: {
93
+ * ContentRedaction: { // ContentRedaction
94
94
  * RedactionType: "PII", // required
95
95
  * RedactionOutput: "redacted" || "redacted_and_unredacted", // required
96
- * PiiEntityTypes: [
96
+ * PiiEntityTypes: [ // PiiEntityTypes
97
97
  * "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
98
98
  * ],
99
99
  * },
100
- * LanguageOptions: [
100
+ * LanguageOptions: [ // LanguageOptions
101
101
  * "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",
102
102
  * ],
103
- * LanguageIdSettings: {
104
- * "<keys>": {
103
+ * LanguageIdSettings: { // LanguageIdSettingsMap
104
+ * "<keys>": { // LanguageIdSettings
105
105
  * VocabularyName: "STRING_VALUE",
106
106
  * VocabularyFilterName: "STRING_VALUE",
107
107
  * LanguageModelName: "STRING_VALUE",
108
108
  * },
109
109
  * },
110
110
  * },
111
- * ChannelDefinitions: [
112
- * {
111
+ * ChannelDefinitions: [ // ChannelDefinitions
112
+ * { // ChannelDefinition
113
113
  * ChannelId: Number("int"),
114
114
  * ParticipantRole: "AGENT" || "CUSTOMER",
115
115
  * },
@@ -74,22 +74,22 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
74
74
  * import { TranscribeClient, StartMedicalTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
75
75
  * // const { TranscribeClient, StartMedicalTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
76
76
  * const client = new TranscribeClient(config);
77
- * const input = {
77
+ * const input = { // StartMedicalTranscriptionJobRequest
78
78
  * MedicalTranscriptionJobName: "STRING_VALUE", // required
79
79
  * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
80
80
  * MediaSampleRateHertz: Number("int"),
81
81
  * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
82
- * Media: {
82
+ * Media: { // Media
83
83
  * MediaFileUri: "STRING_VALUE",
84
84
  * RedactedMediaFileUri: "STRING_VALUE",
85
85
  * },
86
86
  * OutputBucketName: "STRING_VALUE", // required
87
87
  * OutputKey: "STRING_VALUE",
88
88
  * OutputEncryptionKMSKeyId: "STRING_VALUE",
89
- * KMSEncryptionContext: {
89
+ * KMSEncryptionContext: { // KMSEncryptionContextMap
90
90
  * "<keys>": "STRING_VALUE",
91
91
  * },
92
- * Settings: {
92
+ * Settings: { // MedicalTranscriptionSetting
93
93
  * ShowSpeakerLabels: true || false,
94
94
  * MaxSpeakerLabels: Number("int"),
95
95
  * ChannelIdentification: true || false,
@@ -100,8 +100,8 @@ export interface StartMedicalTranscriptionJobCommandOutput extends StartMedicalT
100
100
  * ContentIdentificationType: "PHI",
101
101
  * Specialty: "PRIMARYCARE", // required
102
102
  * Type: "CONVERSATION" || "DICTATION", // required
103
- * Tags: [
104
- * {
103
+ * Tags: [ // TagList
104
+ * { // Tag
105
105
  * Key: "STRING_VALUE", // required
106
106
  * Value: "STRING_VALUE", // required
107
107
  * },
@@ -60,22 +60,22 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
60
60
  * import { TranscribeClient, StartTranscriptionJobCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
61
61
  * // const { TranscribeClient, StartTranscriptionJobCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
62
62
  * const client = new TranscribeClient(config);
63
- * const input = {
63
+ * const input = { // StartTranscriptionJobRequest
64
64
  * TranscriptionJobName: "STRING_VALUE", // required
65
65
  * 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",
66
66
  * MediaSampleRateHertz: Number("int"),
67
67
  * MediaFormat: "mp3" || "mp4" || "wav" || "flac" || "ogg" || "amr" || "webm",
68
- * Media: {
68
+ * Media: { // Media
69
69
  * MediaFileUri: "STRING_VALUE",
70
70
  * RedactedMediaFileUri: "STRING_VALUE",
71
71
  * },
72
72
  * OutputBucketName: "STRING_VALUE",
73
73
  * OutputKey: "STRING_VALUE",
74
74
  * OutputEncryptionKMSKeyId: "STRING_VALUE",
75
- * KMSEncryptionContext: {
75
+ * KMSEncryptionContext: { // KMSEncryptionContextMap
76
76
  * "<keys>": "STRING_VALUE",
77
77
  * },
78
- * Settings: {
78
+ * Settings: { // Settings
79
79
  * VocabularyName: "STRING_VALUE",
80
80
  * ShowSpeakerLabels: true || false,
81
81
  * MaxSpeakerLabels: Number("int"),
@@ -85,39 +85,39 @@ export interface StartTranscriptionJobCommandOutput extends StartTranscriptionJo
85
85
  * VocabularyFilterName: "STRING_VALUE",
86
86
  * VocabularyFilterMethod: "remove" || "mask" || "tag",
87
87
  * },
88
- * ModelSettings: {
88
+ * ModelSettings: { // ModelSettings
89
89
  * LanguageModelName: "STRING_VALUE",
90
90
  * },
91
- * JobExecutionSettings: {
91
+ * JobExecutionSettings: { // JobExecutionSettings
92
92
  * AllowDeferredExecution: true || false,
93
93
  * DataAccessRoleArn: "STRING_VALUE",
94
94
  * },
95
- * ContentRedaction: {
95
+ * ContentRedaction: { // ContentRedaction
96
96
  * RedactionType: "PII", // required
97
97
  * RedactionOutput: "redacted" || "redacted_and_unredacted", // required
98
- * PiiEntityTypes: [
98
+ * PiiEntityTypes: [ // PiiEntityTypes
99
99
  * "BANK_ACCOUNT_NUMBER" || "BANK_ROUTING" || "CREDIT_DEBIT_NUMBER" || "CREDIT_DEBIT_CVV" || "CREDIT_DEBIT_EXPIRY" || "PIN" || "EMAIL" || "ADDRESS" || "NAME" || "PHONE" || "SSN" || "ALL",
100
100
  * ],
101
101
  * },
102
102
  * IdentifyLanguage: true || false,
103
103
  * IdentifyMultipleLanguages: true || false,
104
- * LanguageOptions: [
104
+ * LanguageOptions: [ // LanguageOptions
105
105
  * "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",
106
106
  * ],
107
- * Subtitles: {
108
- * Formats: [
107
+ * Subtitles: { // Subtitles
108
+ * Formats: [ // SubtitleFormats
109
109
  * "vtt" || "srt",
110
110
  * ],
111
111
  * OutputStartIndex: Number("int"),
112
112
  * },
113
- * Tags: [
114
- * {
113
+ * Tags: [ // TagList
114
+ * { // Tag
115
115
  * Key: "STRING_VALUE", // required
116
116
  * Value: "STRING_VALUE", // required
117
117
  * },
118
118
  * ],
119
- * LanguageIdSettings: {
120
- * "<keys>": {
119
+ * LanguageIdSettings: { // LanguageIdSettingsMap
120
+ * "<keys>": { // LanguageIdSettings
121
121
  * VocabularyName: "STRING_VALUE",
122
122
  * VocabularyFilterName: "STRING_VALUE",
123
123
  * LanguageModelName: "STRING_VALUE",
@@ -29,10 +29,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
29
29
  * import { TranscribeClient, TagResourceCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
30
30
  * // const { TranscribeClient, TagResourceCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
31
31
  * const client = new TranscribeClient(config);
32
- * const input = {
32
+ * const input = { // TagResourceRequest
33
33
  * ResourceArn: "STRING_VALUE", // required
34
- * Tags: [ // required
35
- * {
34
+ * Tags: [ // TagList // required
35
+ * { // Tag
36
36
  * Key: "STRING_VALUE", // required
37
37
  * Value: "STRING_VALUE", // required
38
38
  * },
@@ -28,9 +28,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
28
28
  * import { TranscribeClient, UntagResourceCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, UntagResourceCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // UntagResourceRequest
32
32
  * ResourceArn: "STRING_VALUE", // required
33
- * TagKeys: [ // required
33
+ * TagKeys: [ // TagKeyList // required
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * };
@@ -30,19 +30,19 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
30
30
  * import { TranscribeClient, UpdateCallAnalyticsCategoryCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
31
31
  * // const { TranscribeClient, UpdateCallAnalyticsCategoryCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
32
32
  * const client = new TranscribeClient(config);
33
- * const input = {
33
+ * const input = { // UpdateCallAnalyticsCategoryRequest
34
34
  * CategoryName: "STRING_VALUE", // required
35
- * Rules: [ // required
36
- * { // Union: only one key present
37
- * NonTalkTimeFilter: {
35
+ * Rules: [ // RuleList // required
36
+ * { // Rule Union: only one key present
37
+ * NonTalkTimeFilter: { // NonTalkTimeFilter
38
38
  * Threshold: Number("long"),
39
- * AbsoluteTimeRange: {
39
+ * AbsoluteTimeRange: { // AbsoluteTimeRange
40
40
  * StartTime: Number("long"),
41
41
  * EndTime: Number("long"),
42
42
  * First: Number("long"),
43
43
  * Last: Number("long"),
44
44
  * },
45
- * RelativeTimeRange: {
45
+ * RelativeTimeRange: { // RelativeTimeRange
46
46
  * StartPercentage: Number("int"),
47
47
  * EndPercentage: Number("int"),
48
48
  * First: Number("int"),
@@ -50,7 +50,7 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
50
50
  * },
51
51
  * Negate: true || false,
52
52
  * },
53
- * InterruptionFilter: {
53
+ * InterruptionFilter: { // InterruptionFilter
54
54
  * Threshold: Number("long"),
55
55
  * ParticipantRole: "AGENT" || "CUSTOMER",
56
56
  * AbsoluteTimeRange: {
@@ -67,7 +67,7 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
67
67
  * },
68
68
  * Negate: true || false,
69
69
  * },
70
- * TranscriptFilter: {
70
+ * TranscriptFilter: { // TranscriptFilter
71
71
  * TranscriptFilterType: "EXACT", // required
72
72
  * AbsoluteTimeRange: {
73
73
  * StartTime: Number("long"),
@@ -83,12 +83,12 @@ export interface UpdateCallAnalyticsCategoryCommandOutput extends UpdateCallAnal
83
83
  * },
84
84
  * ParticipantRole: "AGENT" || "CUSTOMER",
85
85
  * Negate: true || false,
86
- * Targets: [ // required
86
+ * Targets: [ // StringTargetList // required
87
87
  * "STRING_VALUE",
88
88
  * ],
89
89
  * },
90
- * SentimentFilter: {
91
- * Sentiments: [ // required
90
+ * SentimentFilter: { // SentimentFilter
91
+ * Sentiments: [ // SentimentValueList // required
92
92
  * "POSITIVE" || "NEGATIVE" || "NEUTRAL" || "MIXED",
93
93
  * ],
94
94
  * AbsoluteTimeRange: {
@@ -28,7 +28,7 @@ export interface UpdateMedicalVocabularyCommandOutput extends UpdateMedicalVocab
28
28
  * import { TranscribeClient, UpdateMedicalVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, UpdateMedicalVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // UpdateMedicalVocabularyRequest
32
32
  * VocabularyName: "STRING_VALUE", // required
33
33
  * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
34
34
  * VocabularyFileUri: "STRING_VALUE", // required
@@ -28,10 +28,10 @@ export interface UpdateVocabularyCommandOutput extends UpdateVocabularyResponse,
28
28
  * import { TranscribeClient, UpdateVocabularyCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, UpdateVocabularyCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // UpdateVocabularyRequest
32
32
  * VocabularyName: "STRING_VALUE", // required
33
33
  * LanguageCode: "af-ZA" || "ar-AE" || "ar-SA" || "da-DK" || "de-CH" || "de-DE" || "en-AB" || "en-AU" || "en-GB" || "en-IE" || "en-IN" || "en-US" || "en-WL" || "es-ES" || "es-US" || "fa-IR" || "fr-CA" || "fr-FR" || "he-IL" || "hi-IN" || "id-ID" || "it-IT" || "ja-JP" || "ko-KR" || "ms-MY" || "nl-NL" || "pt-BR" || "pt-PT" || "ru-RU" || "ta-IN" || "te-IN" || "tr-TR" || "zh-CN" || "zh-TW" || "th-TH" || "en-ZA" || "en-NZ" || "vi-VN" || "sv-SE", // required
34
- * Phrases: [
34
+ * Phrases: [ // Phrases
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * VocabularyFileUri: "STRING_VALUE",
@@ -28,9 +28,9 @@ export interface UpdateVocabularyFilterCommandOutput extends UpdateVocabularyFil
28
28
  * import { TranscribeClient, UpdateVocabularyFilterCommand } from "@aws-sdk/client-transcribe"; // ES Modules import
29
29
  * // const { TranscribeClient, UpdateVocabularyFilterCommand } = require("@aws-sdk/client-transcribe"); // CommonJS import
30
30
  * const client = new TranscribeClient(config);
31
- * const input = {
31
+ * const input = { // UpdateVocabularyFilterRequest
32
32
  * VocabularyFilterName: "STRING_VALUE", // required
33
- * Words: [
33
+ * Words: [ // Words
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * VocabularyFilterFileUri: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-transcribe",
3
3
  "description": "AWS SDK for JavaScript Transcribe Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",