@aws-sdk/client-transcribe 3.39.0 → 3.43.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.
- package/CHANGELOG.md +42 -0
- package/dist-cjs/endpoints.js +165 -25
- package/dist-cjs/models/models_0.js +9 -3
- package/dist-cjs/protocols/Aws_json1_1.js +53 -0
- package/dist-cjs/runtimeConfig.browser.js +6 -3
- package/dist-cjs/runtimeConfig.js +5 -3
- package/dist-es/endpoints.js +165 -25
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +48 -3
- package/dist-es/runtimeConfig.browser.js +3 -2
- package/dist-es/runtimeConfig.js +3 -3
- package/dist-types/Transcribe.d.ts +1 -1
- package/dist-types/TranscribeClient.d.ts +8 -0
- package/dist-types/commands/CreateCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/CreateLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/CreateMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/CreateVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeLanguageModelCommand.d.ts +1 -1
- package/dist-types/commands/GetCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/GetCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/GetMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/GetTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/GetVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/GetVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/commands/ListCallAnalyticsCategoriesCommand.d.ts +1 -1
- package/dist-types/commands/ListCallAnalyticsJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListLanguageModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMedicalTranscriptionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMedicalVocabulariesCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTranscriptionJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListVocabulariesCommand.d.ts +1 -1
- package/dist-types/commands/ListVocabularyFiltersCommand.d.ts +1 -1
- package/dist-types/commands/StartCallAnalyticsJobCommand.d.ts +1 -1
- package/dist-types/commands/StartMedicalTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/StartTranscriptionJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCallAnalyticsCategoryCommand.d.ts +1 -1
- package/dist-types/commands/UpdateMedicalVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVocabularyCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVocabularyFilterCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +87 -11
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/TranscribeClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +25 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +23 -23
package/dist-es/endpoints.js
CHANGED
|
@@ -1,37 +1,107 @@
|
|
|
1
1
|
import { __assign, __awaiter, __generator } from "tslib";
|
|
2
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
3
3
|
var regionHash = {
|
|
4
|
+
"ca-central-1": {
|
|
5
|
+
variants: [
|
|
6
|
+
{
|
|
7
|
+
hostname: "transcribe.ca-central-1.amazonaws.com",
|
|
8
|
+
tags: [],
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
hostname: "fips.transcribe.ca-central-1.amazonaws.com",
|
|
12
|
+
tags: ["fips"],
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
},
|
|
4
16
|
"cn-north-1": {
|
|
5
|
-
|
|
17
|
+
variants: [
|
|
18
|
+
{
|
|
19
|
+
hostname: "cn.transcribe.cn-north-1.amazonaws.com.cn",
|
|
20
|
+
tags: [],
|
|
21
|
+
},
|
|
22
|
+
],
|
|
6
23
|
signingRegion: "cn-north-1",
|
|
7
24
|
},
|
|
8
25
|
"cn-northwest-1": {
|
|
9
|
-
|
|
26
|
+
variants: [
|
|
27
|
+
{
|
|
28
|
+
hostname: "cn.transcribe.cn-northwest-1.amazonaws.com.cn",
|
|
29
|
+
tags: [],
|
|
30
|
+
},
|
|
31
|
+
],
|
|
10
32
|
signingRegion: "cn-northwest-1",
|
|
11
33
|
},
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
34
|
+
"us-east-1": {
|
|
35
|
+
variants: [
|
|
36
|
+
{
|
|
37
|
+
hostname: "transcribe.us-east-1.amazonaws.com",
|
|
38
|
+
tags: [],
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
hostname: "fips.transcribe.us-east-1.amazonaws.com",
|
|
42
|
+
tags: ["fips"],
|
|
43
|
+
},
|
|
44
|
+
],
|
|
15
45
|
},
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
46
|
+
"us-east-2": {
|
|
47
|
+
variants: [
|
|
48
|
+
{
|
|
49
|
+
hostname: "transcribe.us-east-2.amazonaws.com",
|
|
50
|
+
tags: [],
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
hostname: "fips.transcribe.us-east-2.amazonaws.com",
|
|
54
|
+
tags: ["fips"],
|
|
55
|
+
},
|
|
56
|
+
],
|
|
19
57
|
},
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
58
|
+
"us-gov-east-1": {
|
|
59
|
+
variants: [
|
|
60
|
+
{
|
|
61
|
+
hostname: "transcribe.us-gov-east-1.amazonaws.com",
|
|
62
|
+
tags: [],
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
hostname: "fips.transcribe.us-gov-east-1.amazonaws.com",
|
|
66
|
+
tags: ["fips"],
|
|
67
|
+
},
|
|
68
|
+
],
|
|
23
69
|
},
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
70
|
+
"us-gov-west-1": {
|
|
71
|
+
variants: [
|
|
72
|
+
{
|
|
73
|
+
hostname: "transcribe.us-gov-west-1.amazonaws.com",
|
|
74
|
+
tags: [],
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
hostname: "fips.transcribe.us-gov-west-1.amazonaws.com",
|
|
78
|
+
tags: ["fips"],
|
|
79
|
+
},
|
|
80
|
+
],
|
|
27
81
|
},
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
82
|
+
"us-west-1": {
|
|
83
|
+
variants: [
|
|
84
|
+
{
|
|
85
|
+
hostname: "transcribe.us-west-1.amazonaws.com",
|
|
86
|
+
tags: [],
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
hostname: "fips.transcribe.us-west-1.amazonaws.com",
|
|
90
|
+
tags: ["fips"],
|
|
91
|
+
},
|
|
92
|
+
],
|
|
31
93
|
},
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
94
|
+
"us-west-2": {
|
|
95
|
+
variants: [
|
|
96
|
+
{
|
|
97
|
+
hostname: "transcribe.us-west-2.amazonaws.com",
|
|
98
|
+
tags: [],
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
hostname: "fips.transcribe.us-west-2.amazonaws.com",
|
|
102
|
+
tags: ["fips"],
|
|
103
|
+
},
|
|
104
|
+
],
|
|
35
105
|
},
|
|
36
106
|
};
|
|
37
107
|
var partitionHash = {
|
|
@@ -52,6 +122,7 @@ var partitionHash = {
|
|
|
52
122
|
"eu-west-1",
|
|
53
123
|
"eu-west-2",
|
|
54
124
|
"eu-west-3",
|
|
125
|
+
"fips-ca-central-1",
|
|
55
126
|
"fips-us-east-1",
|
|
56
127
|
"fips-us-east-2",
|
|
57
128
|
"fips-us-west-1",
|
|
@@ -64,27 +135,96 @@ var partitionHash = {
|
|
|
64
135
|
"us-west-2",
|
|
65
136
|
],
|
|
66
137
|
regionRegex: "^(us|eu|ap|sa|ca|me|af)\\-\\w+\\-\\d+$",
|
|
67
|
-
|
|
138
|
+
variants: [
|
|
139
|
+
{
|
|
140
|
+
hostname: "transcribe.{region}.amazonaws.com",
|
|
141
|
+
tags: [],
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
hostname: "fips.transcribe.{region}.amazonaws.com",
|
|
145
|
+
tags: ["fips"],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
hostname: "transcribe-fips.{region}.api.aws",
|
|
149
|
+
tags: ["dualstack", "fips"],
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
hostname: "transcribe.{region}.api.aws",
|
|
153
|
+
tags: ["dualstack"],
|
|
154
|
+
},
|
|
155
|
+
],
|
|
68
156
|
},
|
|
69
157
|
"aws-cn": {
|
|
70
158
|
regions: ["cn-north-1", "cn-northwest-1"],
|
|
71
159
|
regionRegex: "^cn\\-\\w+\\-\\d+$",
|
|
72
|
-
|
|
160
|
+
variants: [
|
|
161
|
+
{
|
|
162
|
+
hostname: "transcribe.{region}.amazonaws.com.cn",
|
|
163
|
+
tags: [],
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
hostname: "transcribe-fips.{region}.amazonaws.com.cn",
|
|
167
|
+
tags: ["fips"],
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
hostname: "transcribe-fips.{region}.api.amazonwebservices.com.cn",
|
|
171
|
+
tags: ["dualstack", "fips"],
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
hostname: "transcribe.{region}.api.amazonwebservices.com.cn",
|
|
175
|
+
tags: ["dualstack"],
|
|
176
|
+
},
|
|
177
|
+
],
|
|
73
178
|
},
|
|
74
179
|
"aws-iso": {
|
|
75
180
|
regions: ["us-iso-east-1", "us-iso-west-1"],
|
|
76
181
|
regionRegex: "^us\\-iso\\-\\w+\\-\\d+$",
|
|
77
|
-
|
|
182
|
+
variants: [
|
|
183
|
+
{
|
|
184
|
+
hostname: "transcribe.{region}.c2s.ic.gov",
|
|
185
|
+
tags: [],
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
hostname: "transcribe-fips.{region}.c2s.ic.gov",
|
|
189
|
+
tags: ["fips"],
|
|
190
|
+
},
|
|
191
|
+
],
|
|
78
192
|
},
|
|
79
193
|
"aws-iso-b": {
|
|
80
194
|
regions: ["us-isob-east-1"],
|
|
81
195
|
regionRegex: "^us\\-isob\\-\\w+\\-\\d+$",
|
|
82
|
-
|
|
196
|
+
variants: [
|
|
197
|
+
{
|
|
198
|
+
hostname: "transcribe.{region}.sc2s.sgov.gov",
|
|
199
|
+
tags: [],
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
hostname: "transcribe-fips.{region}.sc2s.sgov.gov",
|
|
203
|
+
tags: ["fips"],
|
|
204
|
+
},
|
|
205
|
+
],
|
|
83
206
|
},
|
|
84
207
|
"aws-us-gov": {
|
|
85
208
|
regions: ["fips-us-gov-east-1", "fips-us-gov-west-1", "us-gov-east-1", "us-gov-west-1"],
|
|
86
209
|
regionRegex: "^us\\-gov\\-\\w+\\-\\d+$",
|
|
87
|
-
|
|
210
|
+
variants: [
|
|
211
|
+
{
|
|
212
|
+
hostname: "transcribe.{region}.amazonaws.com",
|
|
213
|
+
tags: [],
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
hostname: "fips.transcribe.{region}.amazonaws.com",
|
|
217
|
+
tags: ["fips"],
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
hostname: "transcribe-fips.{region}.api.aws",
|
|
221
|
+
tags: ["dualstack", "fips"],
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
hostname: "transcribe.{region}.api.aws",
|
|
225
|
+
tags: ["dualstack"],
|
|
226
|
+
},
|
|
227
|
+
],
|
|
88
228
|
},
|
|
89
229
|
};
|
|
90
230
|
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
@@ -98,6 +98,10 @@ export var ContentRedaction;
|
|
|
98
98
|
(function (ContentRedaction) {
|
|
99
99
|
ContentRedaction.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
100
|
})(ContentRedaction || (ContentRedaction = {}));
|
|
101
|
+
export var LanguageIdSettings;
|
|
102
|
+
(function (LanguageIdSettings) {
|
|
103
|
+
LanguageIdSettings.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
+
})(LanguageIdSettings || (LanguageIdSettings = {}));
|
|
101
105
|
export var VocabularyFilterMethod;
|
|
102
106
|
(function (VocabularyFilterMethod) {
|
|
103
107
|
VocabularyFilterMethod["MASK"] = "mask";
|
|
@@ -3544,9 +3544,12 @@ var serializeAws_json1_1AbsoluteTimeRange = function (input, context) {
|
|
|
3544
3544
|
return __assign(__assign(__assign(__assign({}, (input.EndTime !== undefined && input.EndTime !== null && { EndTime: input.EndTime })), (input.First !== undefined && input.First !== null && { First: input.First })), (input.Last !== undefined && input.Last !== null && { Last: input.Last })), (input.StartTime !== undefined && input.StartTime !== null && { StartTime: input.StartTime }));
|
|
3545
3545
|
};
|
|
3546
3546
|
var serializeAws_json1_1CallAnalyticsJobSettings = function (input, context) {
|
|
3547
|
-
return __assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentRedaction !== undefined &&
|
|
3547
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentRedaction !== undefined &&
|
|
3548
3548
|
input.ContentRedaction !== null && {
|
|
3549
3549
|
ContentRedaction: serializeAws_json1_1ContentRedaction(input.ContentRedaction, context),
|
|
3550
|
+
})), (input.LanguageIdSettings !== undefined &&
|
|
3551
|
+
input.LanguageIdSettings !== null && {
|
|
3552
|
+
LanguageIdSettings: serializeAws_json1_1LanguageIdSettingsMap(input.LanguageIdSettings, context),
|
|
3550
3553
|
})), (input.LanguageModelName !== undefined &&
|
|
3551
3554
|
input.LanguageModelName !== null && { LanguageModelName: input.LanguageModelName })), (input.LanguageOptions !== undefined &&
|
|
3552
3555
|
input.LanguageOptions !== null && {
|
|
@@ -3691,6 +3694,22 @@ var serializeAws_json1_1KMSEncryptionContextMap = function (input, context) {
|
|
|
3691
3694
|
return __assign(__assign({}, acc), (_b = {}, _b[key] = value, _b));
|
|
3692
3695
|
}, {});
|
|
3693
3696
|
};
|
|
3697
|
+
var serializeAws_json1_1LanguageIdSettings = function (input, context) {
|
|
3698
|
+
return __assign(__assign(__assign({}, (input.LanguageModelName !== undefined &&
|
|
3699
|
+
input.LanguageModelName !== null && { LanguageModelName: input.LanguageModelName })), (input.VocabularyFilterName !== undefined &&
|
|
3700
|
+
input.VocabularyFilterName !== null && { VocabularyFilterName: input.VocabularyFilterName })), (input.VocabularyName !== undefined &&
|
|
3701
|
+
input.VocabularyName !== null && { VocabularyName: input.VocabularyName }));
|
|
3702
|
+
};
|
|
3703
|
+
var serializeAws_json1_1LanguageIdSettingsMap = function (input, context) {
|
|
3704
|
+
return Object.entries(input).reduce(function (acc, _a) {
|
|
3705
|
+
var _b;
|
|
3706
|
+
var _c = __read(_a, 2), key = _c[0], value = _c[1];
|
|
3707
|
+
if (value === null) {
|
|
3708
|
+
return acc;
|
|
3709
|
+
}
|
|
3710
|
+
return __assign(__assign({}, acc), (_b = {}, _b[key] = serializeAws_json1_1LanguageIdSettings(value, context), _b));
|
|
3711
|
+
}, {});
|
|
3712
|
+
};
|
|
3694
3713
|
var serializeAws_json1_1LanguageOptions = function (input, context) {
|
|
3695
3714
|
return input
|
|
3696
3715
|
.filter(function (e) { return e != null; })
|
|
@@ -3850,7 +3869,7 @@ var serializeAws_json1_1StartMedicalTranscriptionJobRequest = function (input, c
|
|
|
3850
3869
|
})), (input.Specialty !== undefined && input.Specialty !== null && { Specialty: input.Specialty })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_json1_1TagList(input.Tags, context) })), (input.Type !== undefined && input.Type !== null && { Type: input.Type }));
|
|
3851
3870
|
};
|
|
3852
3871
|
var serializeAws_json1_1StartTranscriptionJobRequest = function (input, context) {
|
|
3853
|
-
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentRedaction !== undefined &&
|
|
3872
|
+
return __assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.ContentRedaction !== undefined &&
|
|
3854
3873
|
input.ContentRedaction !== null && {
|
|
3855
3874
|
ContentRedaction: serializeAws_json1_1ContentRedaction(input.ContentRedaction, context),
|
|
3856
3875
|
})), (input.IdentifyLanguage !== undefined &&
|
|
@@ -3860,7 +3879,10 @@ var serializeAws_json1_1StartTranscriptionJobRequest = function (input, context)
|
|
|
3860
3879
|
})), (input.KMSEncryptionContext !== undefined &&
|
|
3861
3880
|
input.KMSEncryptionContext !== null && {
|
|
3862
3881
|
KMSEncryptionContext: serializeAws_json1_1KMSEncryptionContextMap(input.KMSEncryptionContext, context),
|
|
3863
|
-
})), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.
|
|
3882
|
+
})), (input.LanguageCode !== undefined && input.LanguageCode !== null && { LanguageCode: input.LanguageCode })), (input.LanguageIdSettings !== undefined &&
|
|
3883
|
+
input.LanguageIdSettings !== null && {
|
|
3884
|
+
LanguageIdSettings: serializeAws_json1_1LanguageIdSettingsMap(input.LanguageIdSettings, context),
|
|
3885
|
+
})), (input.LanguageOptions !== undefined &&
|
|
3864
3886
|
input.LanguageOptions !== null && {
|
|
3865
3887
|
LanguageOptions: serializeAws_json1_1LanguageOptions(input.LanguageOptions, context),
|
|
3866
3888
|
})), (input.Media !== undefined &&
|
|
@@ -4023,6 +4045,9 @@ var deserializeAws_json1_1CallAnalyticsJobSettings = function (output, context)
|
|
|
4023
4045
|
ContentRedaction: output.ContentRedaction !== undefined && output.ContentRedaction !== null
|
|
4024
4046
|
? deserializeAws_json1_1ContentRedaction(output.ContentRedaction, context)
|
|
4025
4047
|
: undefined,
|
|
4048
|
+
LanguageIdSettings: output.LanguageIdSettings !== undefined && output.LanguageIdSettings !== null
|
|
4049
|
+
? deserializeAws_json1_1LanguageIdSettingsMap(output.LanguageIdSettings, context)
|
|
4050
|
+
: undefined,
|
|
4026
4051
|
LanguageModelName: __expectString(output.LanguageModelName),
|
|
4027
4052
|
LanguageOptions: output.LanguageOptions !== undefined && output.LanguageOptions !== null
|
|
4028
4053
|
? deserializeAws_json1_1LanguageOptions(output.LanguageOptions, context)
|
|
@@ -4265,6 +4290,23 @@ var deserializeAws_json1_1JobExecutionSettings = function (output, context) {
|
|
|
4265
4290
|
DataAccessRoleArn: __expectString(output.DataAccessRoleArn),
|
|
4266
4291
|
};
|
|
4267
4292
|
};
|
|
4293
|
+
var deserializeAws_json1_1LanguageIdSettings = function (output, context) {
|
|
4294
|
+
return {
|
|
4295
|
+
LanguageModelName: __expectString(output.LanguageModelName),
|
|
4296
|
+
VocabularyFilterName: __expectString(output.VocabularyFilterName),
|
|
4297
|
+
VocabularyName: __expectString(output.VocabularyName),
|
|
4298
|
+
};
|
|
4299
|
+
};
|
|
4300
|
+
var deserializeAws_json1_1LanguageIdSettingsMap = function (output, context) {
|
|
4301
|
+
return Object.entries(output).reduce(function (acc, _a) {
|
|
4302
|
+
var _b;
|
|
4303
|
+
var _c = __read(_a, 2), key = _c[0], value = _c[1];
|
|
4304
|
+
if (value === null) {
|
|
4305
|
+
return acc;
|
|
4306
|
+
}
|
|
4307
|
+
return __assign(__assign({}, acc), (_b = {}, _b[key] = deserializeAws_json1_1LanguageIdSettings(value, context), _b));
|
|
4308
|
+
}, {});
|
|
4309
|
+
};
|
|
4268
4310
|
var deserializeAws_json1_1LanguageModel = function (output, context) {
|
|
4269
4311
|
return {
|
|
4270
4312
|
BaseModelName: __expectString(output.BaseModelName),
|
|
@@ -4692,6 +4734,9 @@ var deserializeAws_json1_1TranscriptionJob = function (output, context) {
|
|
|
4692
4734
|
? deserializeAws_json1_1JobExecutionSettings(output.JobExecutionSettings, context)
|
|
4693
4735
|
: undefined,
|
|
4694
4736
|
LanguageCode: __expectString(output.LanguageCode),
|
|
4737
|
+
LanguageIdSettings: output.LanguageIdSettings !== undefined && output.LanguageIdSettings !== null
|
|
4738
|
+
? deserializeAws_json1_1LanguageIdSettingsMap(output.LanguageIdSettings, context)
|
|
4739
|
+
: undefined,
|
|
4695
4740
|
LanguageOptions: output.LanguageOptions !== undefined && output.LanguageOptions !== null
|
|
4696
4741
|
? deserializeAws_json1_1LanguageOptions(output.LanguageOptions, context)
|
|
4697
4742
|
: undefined,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import packageInfo from "../package.json";
|
|
3
3
|
import { Sha256 } from "@aws-crypto/sha256-browser";
|
|
4
|
+
import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT } from "@aws-sdk/config-resolver";
|
|
4
5
|
import { FetchHttpHandler, streamCollector } from "@aws-sdk/fetch-http-handler";
|
|
5
6
|
import { invalidProvider } from "@aws-sdk/invalid-dependency";
|
|
6
7
|
import { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } from "@aws-sdk/middleware-retry";
|
|
@@ -10,7 +11,7 @@ import { defaultUserAgent } from "@aws-sdk/util-user-agent-browser";
|
|
|
10
11
|
import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-browser";
|
|
11
12
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
12
13
|
export var getRuntimeConfig = function (config) {
|
|
13
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
14
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
14
15
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
15
|
-
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector,
|
|
16
|
+
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "browser", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : (function (_) { return function () { return Promise.reject(new Error("Credential is missing")); }; }), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : DEFAULT_MAX_ATTEMPTS, region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : invalidProvider("Region is missing"), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new FetchHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : (function () { return Promise.resolve(DEFAULT_RETRY_MODE); }), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Sha256, streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : (function () { return Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT); }), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : (function () { return Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT); }), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
16
17
|
};
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __assign } from "tslib";
|
|
2
2
|
import packageInfo from "../package.json";
|
|
3
3
|
import { decorateDefaultCredentialProvider } from "@aws-sdk/client-sts";
|
|
4
|
-
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS } from "@aws-sdk/config-resolver";
|
|
4
|
+
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@aws-sdk/config-resolver";
|
|
5
5
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
6
6
|
import { Hash } from "@aws-sdk/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@aws-sdk/middleware-retry";
|
|
@@ -14,8 +14,8 @@ import { fromUtf8, toUtf8 } from "@aws-sdk/util-utf8-node";
|
|
|
14
14
|
import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
|
|
15
15
|
import { emitWarningIfUnsupportedVersion } from "@aws-sdk/smithy-client";
|
|
16
16
|
export var getRuntimeConfig = function (config) {
|
|
17
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
17
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
18
18
|
emitWarningIfUnsupportedVersion(process.version);
|
|
19
19
|
var clientSharedValues = getSharedRuntimeConfig(config);
|
|
20
|
-
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector,
|
|
20
|
+
return __assign(__assign(__assign({}, clientSharedValues), config), { runtime: "node", base64Decoder: (_a = config === null || config === void 0 ? void 0 : config.base64Decoder) !== null && _a !== void 0 ? _a : fromBase64, base64Encoder: (_b = config === null || config === void 0 ? void 0 : config.base64Encoder) !== null && _b !== void 0 ? _b : toBase64, bodyLengthChecker: (_c = config === null || config === void 0 ? void 0 : config.bodyLengthChecker) !== null && _c !== void 0 ? _c : calculateBodyLength, credentialDefaultProvider: (_d = config === null || config === void 0 ? void 0 : config.credentialDefaultProvider) !== null && _d !== void 0 ? _d : decorateDefaultCredentialProvider(credentialDefaultProvider), defaultUserAgentProvider: (_e = config === null || config === void 0 ? void 0 : config.defaultUserAgentProvider) !== null && _e !== void 0 ? _e : defaultUserAgent({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }), maxAttempts: (_f = config === null || config === void 0 ? void 0 : config.maxAttempts) !== null && _f !== void 0 ? _f : loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS), region: (_g = config === null || config === void 0 ? void 0 : config.region) !== null && _g !== void 0 ? _g : loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS), requestHandler: (_h = config === null || config === void 0 ? void 0 : config.requestHandler) !== null && _h !== void 0 ? _h : new NodeHttpHandler(), retryMode: (_j = config === null || config === void 0 ? void 0 : config.retryMode) !== null && _j !== void 0 ? _j : loadNodeConfig(NODE_RETRY_MODE_CONFIG_OPTIONS), sha256: (_k = config === null || config === void 0 ? void 0 : config.sha256) !== null && _k !== void 0 ? _k : Hash.bind(null, "sha256"), streamCollector: (_l = config === null || config === void 0 ? void 0 : config.streamCollector) !== null && _l !== void 0 ? _l : streamCollector, useDualstackEndpoint: (_m = config === null || config === void 0 ? void 0 : config.useDualstackEndpoint) !== null && _m !== void 0 ? _m : loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS), useFipsEndpoint: (_o = config === null || config === void 0 ? void 0 : config.useFipsEndpoint) !== null && _o !== void 0 ? _o : loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS), utf8Decoder: (_p = config === null || config === void 0 ? void 0 : config.utf8Decoder) !== null && _p !== void 0 ? _p : fromUtf8, utf8Encoder: (_q = config === null || config === void 0 ? void 0 : config.utf8Encoder) !== null && _q !== void 0 ? _q : toUtf8 });
|
|
21
21
|
};
|
|
@@ -273,7 +273,7 @@ export declare class Transcribe extends TranscribeClient {
|
|
|
273
273
|
startTranscriptionJob(args: StartTranscriptionJobCommandInput, cb: (err: any, data?: StartTranscriptionJobCommandOutput) => void): void;
|
|
274
274
|
startTranscriptionJob(args: StartTranscriptionJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartTranscriptionJobCommandOutput) => void): void;
|
|
275
275
|
/**
|
|
276
|
-
* <p>Tags
|
|
276
|
+
* <p>Tags an Amazon Transcribe resource with the given list of tags.</p>
|
|
277
277
|
*/
|
|
278
278
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
279
279
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
@@ -115,6 +115,14 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
115
115
|
* Optional logger for logging debug/info/warn/error.
|
|
116
116
|
*/
|
|
117
117
|
logger?: __Logger;
|
|
118
|
+
/**
|
|
119
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
120
|
+
*/
|
|
121
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
122
|
+
/**
|
|
123
|
+
* Enables FIPS compatible endpoints.
|
|
124
|
+
*/
|
|
125
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
118
126
|
/**
|
|
119
127
|
* Unique service identifier.
|
|
120
128
|
* @internal
|
|
@@ -24,7 +24,7 @@ export interface CreateCallAnalyticsCategoryCommandOutput extends CreateCallAnal
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link CreateCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link CreateCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class CreateCallAnalyticsCategoryCommand extends $Command<CreateCallAnalyticsCategoryCommandInput, CreateCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface CreateLanguageModelCommandOutput extends CreateLanguageModelRes
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link CreateLanguageModelCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link CreateLanguageModelCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class CreateLanguageModelCommand extends $Command<CreateLanguageModelCommandInput, CreateLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface CreateMedicalVocabularyCommandOutput extends CreateMedicalVocab
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link CreateMedicalVocabularyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link CreateMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class CreateMedicalVocabularyCommand extends $Command<CreateMedicalVocabularyCommandInput, CreateMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface CreateVocabularyCommandOutput extends CreateVocabularyResponse,
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link CreateVocabularyCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link CreateVocabularyCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class CreateVocabularyCommand extends $Command<CreateVocabularyCommandInput, CreateVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface CreateVocabularyFilterCommandOutput extends CreateVocabularyFil
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link CreateVocabularyFilterCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link CreateVocabularyFilterCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class CreateVocabularyFilterCommand extends $Command<CreateVocabularyFilterCommandInput, CreateVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteCallAnalyticsCategoryCommandOutput extends DeleteCallAnal
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteCallAnalyticsCategoryCommand extends $Command<DeleteCallAnalyticsCategoryCommandInput, DeleteCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteCallAnalyticsJobCommandOutput extends DeleteCallAnalytics
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteCallAnalyticsJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteCallAnalyticsJobCommand extends $Command<DeleteCallAnalyticsJobCommandInput, DeleteCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteLanguageModelCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteLanguageModelCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteLanguageModelCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteLanguageModelCommand extends $Command<DeleteLanguageModelCommandInput, DeleteLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteMedicalTranscriptionJobCommandOutput extends __MetadataBe
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteMedicalTranscriptionJobCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteMedicalTranscriptionJobCommand extends $Command<DeleteMedicalTranscriptionJobCommandInput, DeleteMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteMedicalVocabularyCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteMedicalVocabularyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteMedicalVocabularyCommand extends $Command<DeleteMedicalVocabularyCommandInput, DeleteMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -21,7 +21,7 @@ export interface DeleteTranscriptionJobCommandOutput extends __MetadataBearer {
|
|
|
21
21
|
*
|
|
22
22
|
* @see {@link DeleteTranscriptionJobCommandInput} for command's `input` shape.
|
|
23
23
|
* @see {@link DeleteTranscriptionJobCommandOutput} for command's `response` shape.
|
|
24
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
24
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
25
25
|
*
|
|
26
26
|
*/
|
|
27
27
|
export declare class DeleteTranscriptionJobCommand extends $Command<DeleteTranscriptionJobCommandInput, DeleteTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteVocabularyCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteVocabularyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteVocabularyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteVocabularyCommand extends $Command<DeleteVocabularyCommandInput, DeleteVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface DeleteVocabularyFilterCommandOutput extends __MetadataBearer {
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link DeleteVocabularyFilterCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link DeleteVocabularyFilterCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class DeleteVocabularyFilterCommand extends $Command<DeleteVocabularyFilterCommandInput, DeleteVocabularyFilterCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface DescribeLanguageModelCommandOutput extends DescribeLanguageMode
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link DescribeLanguageModelCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link DescribeLanguageModelCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class DescribeLanguageModelCommand extends $Command<DescribeLanguageModelCommandInput, DescribeLanguageModelCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetCallAnalyticsCategoryCommandOutput extends GetCallAnalyticsC
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetCallAnalyticsCategoryCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetCallAnalyticsCategoryCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetCallAnalyticsCategoryCommand extends $Command<GetCallAnalyticsCategoryCommandInput, GetCallAnalyticsCategoryCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -24,7 +24,7 @@ export interface GetCallAnalyticsJobCommandOutput extends GetCallAnalyticsJobRes
|
|
|
24
24
|
*
|
|
25
25
|
* @see {@link GetCallAnalyticsJobCommandInput} for command's `input` shape.
|
|
26
26
|
* @see {@link GetCallAnalyticsJobCommandOutput} for command's `response` shape.
|
|
27
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
27
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export declare class GetCallAnalyticsJobCommand extends $Command<GetCallAnalyticsJobCommandInput, GetCallAnalyticsJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -22,7 +22,7 @@ export interface GetMedicalTranscriptionJobCommandOutput extends GetMedicalTrans
|
|
|
22
22
|
*
|
|
23
23
|
* @see {@link GetMedicalTranscriptionJobCommandInput} for command's `input` shape.
|
|
24
24
|
* @see {@link GetMedicalTranscriptionJobCommandOutput} for command's `response` shape.
|
|
25
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
25
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
26
26
|
*
|
|
27
27
|
*/
|
|
28
28
|
export declare class GetMedicalTranscriptionJobCommand extends $Command<GetMedicalTranscriptionJobCommandInput, GetMedicalTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -20,7 +20,7 @@ export interface GetMedicalVocabularyCommandOutput extends GetMedicalVocabularyR
|
|
|
20
20
|
*
|
|
21
21
|
* @see {@link GetMedicalVocabularyCommandInput} for command's `input` shape.
|
|
22
22
|
* @see {@link GetMedicalVocabularyCommandOutput} for command's `response` shape.
|
|
23
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
23
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
24
24
|
*
|
|
25
25
|
*/
|
|
26
26
|
export declare class GetMedicalVocabularyCommand extends $Command<GetMedicalVocabularyCommandInput, GetMedicalVocabularyCommandOutput, TranscribeClientResolvedConfig> {
|
|
@@ -23,7 +23,7 @@ export interface GetTranscriptionJobCommandOutput extends GetTranscriptionJobRes
|
|
|
23
23
|
*
|
|
24
24
|
* @see {@link GetTranscriptionJobCommandInput} for command's `input` shape.
|
|
25
25
|
* @see {@link GetTranscriptionJobCommandOutput} for command's `response` shape.
|
|
26
|
-
* @see {@link TranscribeClientResolvedConfig | config} for
|
|
26
|
+
* @see {@link TranscribeClientResolvedConfig | config} for TranscribeClient's `config` shape.
|
|
27
27
|
*
|
|
28
28
|
*/
|
|
29
29
|
export declare class GetTranscriptionJobCommand extends $Command<GetTranscriptionJobCommandInput, GetTranscriptionJobCommandOutput, TranscribeClientResolvedConfig> {
|