@aws-sdk/client-elementalinference 3.1053.0 → 3.1055.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/README.md +42 -0
- package/dist-cjs/index.js +123 -0
- package/dist-cjs/schemas/schemas_0.js +144 -14
- package/dist-es/ElementalInference.js +14 -0
- package/dist-es/commands/CreateDictionaryCommand.js +16 -0
- package/dist-es/commands/DeleteDictionaryCommand.js +16 -0
- package/dist-es/commands/ExportDictionaryEntriesCommand.js +16 -0
- package/dist-es/commands/GetDictionaryCommand.js +16 -0
- package/dist-es/commands/ListDictionariesCommand.js +16 -0
- package/dist-es/commands/UpdateDictionaryCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +31 -0
- package/dist-es/pagination/ListDictionariesPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +142 -13
- package/dist-types/ElementalInference.d.ts +50 -0
- package/dist-types/ElementalInferenceClient.d.ts +8 -2
- package/dist-types/commands/AssociateFeedCommand.d.ts +14 -5
- package/dist-types/commands/CreateDictionaryCommand.d.ts +109 -0
- package/dist-types/commands/CreateFeedCommand.d.ts +23 -5
- package/dist-types/commands/DeleteDictionaryCommand.d.ts +96 -0
- package/dist-types/commands/DeleteFeedCommand.d.ts +4 -4
- package/dist-types/commands/DisassociateFeedCommand.d.ts +4 -4
- package/dist-types/commands/ExportDictionaryEntriesCommand.d.ts +91 -0
- package/dist-types/commands/GetDictionaryCommand.d.ts +101 -0
- package/dist-types/commands/GetFeedCommand.d.ts +11 -2
- package/dist-types/commands/ListDictionariesCommand.d.ts +98 -0
- package/dist-types/commands/ListFeedsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/TagResourceCommand.d.ts +4 -4
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateDictionaryCommand.d.ts +107 -0
- package/dist-types/commands/UpdateFeedCommand.d.ts +23 -5
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +63 -0
- package/dist-types/models/errors.d.ts +4 -4
- package/dist-types/models/models_0.d.ts +399 -52
- package/dist-types/pagination/ListDictionariesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +21 -0
- package/dist-types/ts3.4/ElementalInference.d.ts +110 -0
- package/dist-types/ts3.4/ElementalInferenceClient.d.ts +36 -0
- package/dist-types/ts3.4/commands/CreateDictionaryCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/DeleteDictionaryCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ExportDictionaryEntriesCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetDictionaryCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/ListDictionariesCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/UpdateDictionaryCommand.d.ts +52 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +100 -1
- package/dist-types/ts3.4/pagination/ListDictionariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +21 -0
- package/package.json +3 -3
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteDictionary$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteDictionaryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("ElementalInference", "DeleteDictionary", {})
|
|
13
|
+
.n("ElementalInferenceClient", "DeleteDictionaryCommand")
|
|
14
|
+
.sc(DeleteDictionary$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ExportDictionaryEntries$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ExportDictionaryEntriesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("ElementalInference", "ExportDictionaryEntries", {})
|
|
13
|
+
.n("ElementalInferenceClient", "ExportDictionaryEntriesCommand")
|
|
14
|
+
.sc(ExportDictionaryEntries$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetDictionary$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetDictionaryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("ElementalInference", "GetDictionary", {})
|
|
13
|
+
.n("ElementalInferenceClient", "GetDictionaryCommand")
|
|
14
|
+
.sc(GetDictionary$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListDictionaries$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListDictionariesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("ElementalInference", "ListDictionaries", {})
|
|
13
|
+
.n("ElementalInferenceClient", "ListDictionariesCommand")
|
|
14
|
+
.sc(ListDictionaries$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateDictionary$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateDictionaryCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("ElementalInference", "UpdateDictionary", {})
|
|
13
|
+
.n("ElementalInferenceClient", "UpdateDictionaryCommand")
|
|
14
|
+
.sc(UpdateDictionary$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
export * from "./AssociateFeedCommand";
|
|
2
|
+
export * from "./CreateDictionaryCommand";
|
|
2
3
|
export * from "./CreateFeedCommand";
|
|
4
|
+
export * from "./DeleteDictionaryCommand";
|
|
3
5
|
export * from "./DeleteFeedCommand";
|
|
4
6
|
export * from "./DisassociateFeedCommand";
|
|
7
|
+
export * from "./ExportDictionaryEntriesCommand";
|
|
8
|
+
export * from "./GetDictionaryCommand";
|
|
5
9
|
export * from "./GetFeedCommand";
|
|
10
|
+
export * from "./ListDictionariesCommand";
|
|
6
11
|
export * from "./ListFeedsCommand";
|
|
7
12
|
export * from "./ListTagsForResourceCommand";
|
|
8
13
|
export * from "./TagResourceCommand";
|
|
9
14
|
export * from "./UntagResourceCommand";
|
|
15
|
+
export * from "./UpdateDictionaryCommand";
|
|
10
16
|
export * from "./UpdateFeedCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
|
+
export const TranscriptionLanguage = {
|
|
2
|
+
DEU: "deu",
|
|
3
|
+
ENG: "eng",
|
|
4
|
+
ENG_AU: "eng-au",
|
|
5
|
+
ENG_GB: "eng-gb",
|
|
6
|
+
ENG_US: "eng-us",
|
|
7
|
+
FRA: "fra",
|
|
8
|
+
ITA: "ita",
|
|
9
|
+
POR: "por",
|
|
10
|
+
SPA: "spa",
|
|
11
|
+
};
|
|
12
|
+
export const ProfanityFilterMode = {
|
|
13
|
+
CENSOR: "CENSOR",
|
|
14
|
+
DISABLED: "DISABLED",
|
|
15
|
+
DROP: "DROP",
|
|
16
|
+
};
|
|
1
17
|
export const OutputStatus = {
|
|
2
18
|
DISABLED: "DISABLED",
|
|
3
19
|
ENABLED: "ENABLED",
|
|
4
20
|
};
|
|
21
|
+
export const DictionaryLanguage = {
|
|
22
|
+
DEU: "deu",
|
|
23
|
+
ENG: "eng",
|
|
24
|
+
FRA: "fra",
|
|
25
|
+
ITA: "ita",
|
|
26
|
+
POR: "por",
|
|
27
|
+
SPA: "spa",
|
|
28
|
+
};
|
|
29
|
+
export const DictionaryStatus = {
|
|
30
|
+
AVAILABLE: "AVAILABLE",
|
|
31
|
+
CREATING: "CREATING",
|
|
32
|
+
DELETED: "DELETED",
|
|
33
|
+
DELETING: "DELETING",
|
|
34
|
+
REFERENCED: "REFERENCED",
|
|
35
|
+
};
|
|
5
36
|
export const FeedStatus = {
|
|
6
37
|
ACTIVE: "ACTIVE",
|
|
7
38
|
ARCHIVED: "ARCHIVED",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDictionariesCommand, } from "../commands/ListDictionariesCommand";
|
|
3
|
+
import { ElementalInferenceClient } from "../ElementalInferenceClient";
|
|
4
|
+
export const paginateListDictionaries = createPaginator(ElementalInferenceClient, ListDictionariesCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -2,29 +2,47 @@ const _ADE = "AccessDeniedException";
|
|
|
2
2
|
const _AF = "AssociateFeed";
|
|
3
3
|
const _AFR = "AssociateFeedRequest";
|
|
4
4
|
const _AFRs = "AssociateFeedResponse";
|
|
5
|
+
const _AR = "AspectRatio";
|
|
5
6
|
const _CC = "ClippingConfig";
|
|
6
7
|
const _CCr = "CroppingConfig";
|
|
8
|
+
const _CD = "CreateDictionary";
|
|
9
|
+
const _CDR = "CreateDictionaryRequest";
|
|
10
|
+
const _CDRr = "CreateDictionaryResponse";
|
|
7
11
|
const _CE = "ConflictException";
|
|
8
12
|
const _CF = "CreateFeed";
|
|
9
13
|
const _CFR = "CreateFeedRequest";
|
|
10
14
|
const _CFRr = "CreateFeedResponse";
|
|
11
15
|
const _CO = "CreateOutput";
|
|
12
16
|
const _COL = "CreateOutputList";
|
|
17
|
+
const _DD = "DeleteDictionary";
|
|
18
|
+
const _DDR = "DeleteDictionaryRequest";
|
|
19
|
+
const _DDRe = "DeleteDictionaryResponse";
|
|
13
20
|
const _DF = "DeleteFeed";
|
|
14
21
|
const _DFR = "DeleteFeedRequest";
|
|
15
22
|
const _DFRe = "DeleteFeedResponse";
|
|
16
23
|
const _DFRi = "DisassociateFeedRequest";
|
|
17
24
|
const _DFRis = "DisassociateFeedResponse";
|
|
18
25
|
const _DFi = "DisassociateFeed";
|
|
26
|
+
const _DS = "DictionarySummary";
|
|
27
|
+
const _DSL = "DictionarySummaryList";
|
|
28
|
+
const _EDE = "ExportDictionaryEntries";
|
|
29
|
+
const _EDER = "ExportDictionaryEntriesRequest";
|
|
30
|
+
const _EDERx = "ExportDictionaryEntriesResponse";
|
|
19
31
|
const _FA = "FeedAssociation";
|
|
20
32
|
const _FS = "FeedSummary";
|
|
21
33
|
const _FSL = "FeedSummaryList";
|
|
34
|
+
const _GD = "GetDictionary";
|
|
35
|
+
const _GDR = "GetDictionaryRequest";
|
|
36
|
+
const _GDRe = "GetDictionaryResponse";
|
|
22
37
|
const _GF = "GetFeed";
|
|
23
38
|
const _GFR = "GetFeedRequest";
|
|
24
39
|
const _GFRe = "GetFeedResponse";
|
|
25
40
|
const _GO = "GetOutput";
|
|
26
41
|
const _GOL = "GetOutputList";
|
|
27
42
|
const _ISEE = "InternalServerErrorException";
|
|
43
|
+
const _LD = "ListDictionaries";
|
|
44
|
+
const _LDR = "ListDictionariesRequest";
|
|
45
|
+
const _LDRi = "ListDictionariesResponse";
|
|
28
46
|
const _LF = "ListFeeds";
|
|
29
47
|
const _LFR = "ListFeedsRequest";
|
|
30
48
|
const _LFRi = "ListFeedsResponse";
|
|
@@ -33,10 +51,14 @@ const _LTFRR = "ListTagsForResourceRequest";
|
|
|
33
51
|
const _LTFRRi = "ListTagsForResourceResponse";
|
|
34
52
|
const _OC = "OutputConfig";
|
|
35
53
|
const _RNFE = "ResourceNotFoundException";
|
|
54
|
+
const _SC = "SubtitlingConfig";
|
|
36
55
|
const _SQEE = "ServiceQuotaExceededException";
|
|
37
56
|
const _TMRE = "TooManyRequestException";
|
|
38
57
|
const _TR = "TagResource";
|
|
39
58
|
const _TRR = "TagResourceRequest";
|
|
59
|
+
const _UD = "UpdateDictionary";
|
|
60
|
+
const _UDR = "UpdateDictionaryRequest";
|
|
61
|
+
const _UDRp = "UpdateDictionaryResponse";
|
|
40
62
|
const _UF = "UpdateFeed";
|
|
41
63
|
const _UFR = "UpdateFeedRequest";
|
|
42
64
|
const _UFRp = "UpdateFeedResponse";
|
|
@@ -46,6 +68,7 @@ const _UR = "UntagResource";
|
|
|
46
68
|
const _URR = "UntagResourceRequest";
|
|
47
69
|
const _VE = "ValidationException";
|
|
48
70
|
const _a = "arn";
|
|
71
|
+
const _aR = "aspectRatio";
|
|
49
72
|
const _aRN = "associatedResourceName";
|
|
50
73
|
const _as = "association";
|
|
51
74
|
const _c = "client";
|
|
@@ -55,25 +78,34 @@ const _cr = "cropping";
|
|
|
55
78
|
const _d = "description";
|
|
56
79
|
const _dE = "dataEndpoints";
|
|
57
80
|
const _dR = "dryRun";
|
|
81
|
+
const _di = "dictionaries";
|
|
82
|
+
const _dic = "dictionary";
|
|
58
83
|
const _e = "error";
|
|
84
|
+
const _en = "entries";
|
|
59
85
|
const _f = "feeds";
|
|
60
86
|
const _fA = "fromAssociation";
|
|
61
|
-
const _h = "
|
|
87
|
+
const _h = "height";
|
|
62
88
|
const _hE = "httpError";
|
|
63
89
|
const _hQ = "httpQuery";
|
|
90
|
+
const _ht = "http";
|
|
64
91
|
const _i = "id";
|
|
92
|
+
const _l = "language";
|
|
65
93
|
const _m = "message";
|
|
66
94
|
const _mR = "maxResults";
|
|
67
95
|
const _n = "name";
|
|
68
96
|
const _nT = "nextToken";
|
|
69
97
|
const _o = "outputs";
|
|
70
98
|
const _oC = "outputConfig";
|
|
99
|
+
const _pF = "profanityFilter";
|
|
100
|
+
const _r = "references";
|
|
71
101
|
const _rA = "resourceArn";
|
|
72
102
|
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.elementalinference";
|
|
73
103
|
const _se = "server";
|
|
74
104
|
const _st = "status";
|
|
105
|
+
const _su = "subtitling";
|
|
75
106
|
const _t = "tags";
|
|
76
107
|
const _tK = "tagKeys";
|
|
108
|
+
const _w = "width";
|
|
77
109
|
const n0 = "com.amazonaws.elementalinference";
|
|
78
110
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
79
111
|
import { ElementalInferenceServiceException } from "../models/ElementalInferenceServiceException";
|
|
@@ -128,6 +160,11 @@ export const errorTypeRegistries = [
|
|
|
128
160
|
_s_registry,
|
|
129
161
|
n0_registry,
|
|
130
162
|
];
|
|
163
|
+
export var AspectRatio$ = [3, n0, _AR,
|
|
164
|
+
0,
|
|
165
|
+
[_w, _h],
|
|
166
|
+
[1, 1], 2
|
|
167
|
+
];
|
|
131
168
|
export var AssociateFeedRequest$ = [3, n0, _AFR,
|
|
132
169
|
0,
|
|
133
170
|
[_i, _o, _aRN, _dR],
|
|
@@ -143,6 +180,16 @@ export var ClippingConfig$ = [3, n0, _CC,
|
|
|
143
180
|
[_cM],
|
|
144
181
|
[0]
|
|
145
182
|
];
|
|
183
|
+
export var CreateDictionaryRequest$ = [3, n0, _CDR,
|
|
184
|
+
0,
|
|
185
|
+
[_n, _l, _en, _t],
|
|
186
|
+
[0, 0, 0, 128 | 0], 2
|
|
187
|
+
];
|
|
188
|
+
export var CreateDictionaryResponse$ = [3, n0, _CDRr,
|
|
189
|
+
0,
|
|
190
|
+
[_n, _a, _i, _l, _st, _r, _t],
|
|
191
|
+
[0, 0, 0, 0, 0, 64 | 0, 128 | 0], 5
|
|
192
|
+
];
|
|
146
193
|
export var CreateFeedRequest$ = [3, n0, _CFR,
|
|
147
194
|
0,
|
|
148
195
|
[_n, _o, _t],
|
|
@@ -163,6 +210,16 @@ export var CroppingConfig$ = [3, n0, _CCr,
|
|
|
163
210
|
[],
|
|
164
211
|
[]
|
|
165
212
|
];
|
|
213
|
+
export var DeleteDictionaryRequest$ = [3, n0, _DDR,
|
|
214
|
+
0,
|
|
215
|
+
[_i],
|
|
216
|
+
[[0, 1]], 1
|
|
217
|
+
];
|
|
218
|
+
export var DeleteDictionaryResponse$ = [3, n0, _DDRe,
|
|
219
|
+
0,
|
|
220
|
+
[_a, _i, _st],
|
|
221
|
+
[0, 0, 0], 3
|
|
222
|
+
];
|
|
166
223
|
export var DeleteFeedRequest$ = [3, n0, _DFR,
|
|
167
224
|
0,
|
|
168
225
|
[_i],
|
|
@@ -173,6 +230,11 @@ export var DeleteFeedResponse$ = [3, n0, _DFRe,
|
|
|
173
230
|
[_a, _i, _st],
|
|
174
231
|
[0, 0, 0], 3
|
|
175
232
|
];
|
|
233
|
+
export var DictionarySummary$ = [3, n0, _DS,
|
|
234
|
+
0,
|
|
235
|
+
[_a, _i, _n, _l, _st],
|
|
236
|
+
[0, 0, 0, 0, 0], 5
|
|
237
|
+
];
|
|
176
238
|
export var DisassociateFeedRequest$ = [3, n0, _DFRi,
|
|
177
239
|
0,
|
|
178
240
|
[_i, _aRN, _dR],
|
|
@@ -183,6 +245,16 @@ export var DisassociateFeedResponse$ = [3, n0, _DFRis,
|
|
|
183
245
|
[_a, _i],
|
|
184
246
|
[0, 0], 2
|
|
185
247
|
];
|
|
248
|
+
export var ExportDictionaryEntriesRequest$ = [3, n0, _EDER,
|
|
249
|
+
0,
|
|
250
|
+
[_i],
|
|
251
|
+
[[0, 1]], 1
|
|
252
|
+
];
|
|
253
|
+
export var ExportDictionaryEntriesResponse$ = [3, n0, _EDERx,
|
|
254
|
+
0,
|
|
255
|
+
[_en],
|
|
256
|
+
[0]
|
|
257
|
+
];
|
|
186
258
|
export var FeedAssociation$ = [3, n0, _FA,
|
|
187
259
|
0,
|
|
188
260
|
[_aRN],
|
|
@@ -193,6 +265,16 @@ export var FeedSummary$ = [3, n0, _FS,
|
|
|
193
265
|
[_a, _i, _n, _st, _as],
|
|
194
266
|
[0, 0, 0, 0, () => FeedAssociation$], 4
|
|
195
267
|
];
|
|
268
|
+
export var GetDictionaryRequest$ = [3, n0, _GDR,
|
|
269
|
+
0,
|
|
270
|
+
[_i],
|
|
271
|
+
[[0, 1]], 1
|
|
272
|
+
];
|
|
273
|
+
export var GetDictionaryResponse$ = [3, n0, _GDRe,
|
|
274
|
+
0,
|
|
275
|
+
[_n, _a, _i, _l, _st, _r, _t],
|
|
276
|
+
[0, 0, 0, 0, 0, 64 | 0, 128 | 0], 5
|
|
277
|
+
];
|
|
196
278
|
export var GetFeedRequest$ = [3, n0, _GFR,
|
|
197
279
|
0,
|
|
198
280
|
[_i],
|
|
@@ -208,6 +290,16 @@ export var GetOutput$ = [3, n0, _GO,
|
|
|
208
290
|
[_n, _oC, _st, _d, _fA],
|
|
209
291
|
[0, () => OutputConfig$, 0, 0, 2], 3
|
|
210
292
|
];
|
|
293
|
+
export var ListDictionariesRequest$ = [3, n0, _LDR,
|
|
294
|
+
0,
|
|
295
|
+
[_mR, _nT],
|
|
296
|
+
[[1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
297
|
+
];
|
|
298
|
+
export var ListDictionariesResponse$ = [3, n0, _LDRi,
|
|
299
|
+
0,
|
|
300
|
+
[_di, _nT],
|
|
301
|
+
[() => DictionarySummaryList, 0], 1
|
|
302
|
+
];
|
|
211
303
|
export var ListFeedsRequest$ = [3, n0, _LFR,
|
|
212
304
|
0,
|
|
213
305
|
[_mR, _nT],
|
|
@@ -228,6 +320,11 @@ export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
|
228
320
|
[_t],
|
|
229
321
|
[128 | 0]
|
|
230
322
|
];
|
|
323
|
+
export var SubtitlingConfig$ = [3, n0, _SC,
|
|
324
|
+
0,
|
|
325
|
+
[_l, _aR, _dic, _pF],
|
|
326
|
+
[0, () => AspectRatio$, 0, 0], 1
|
|
327
|
+
];
|
|
231
328
|
export var TagResourceRequest$ = [3, n0, _TRR,
|
|
232
329
|
0,
|
|
233
330
|
[_rA, _t],
|
|
@@ -238,6 +335,16 @@ export var UntagResourceRequest$ = [3, n0, _URR,
|
|
|
238
335
|
[_rA, _tK],
|
|
239
336
|
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
240
337
|
];
|
|
338
|
+
export var UpdateDictionaryRequest$ = [3, n0, _UDR,
|
|
339
|
+
0,
|
|
340
|
+
[_i, _n, _l, _en],
|
|
341
|
+
[[0, 1], 0, 0, 0], 1
|
|
342
|
+
];
|
|
343
|
+
export var UpdateDictionaryResponse$ = [3, n0, _UDRp,
|
|
344
|
+
0,
|
|
345
|
+
[_n, _a, _i, _l, _st, _r, _t],
|
|
346
|
+
[0, 0, 0, 0, 0, 64 | 0, 128 | 0], 5
|
|
347
|
+
];
|
|
241
348
|
export var UpdateFeedRequest$ = [3, n0, _UFR,
|
|
242
349
|
0,
|
|
243
350
|
[_n, _i, _o],
|
|
@@ -257,6 +364,10 @@ var __Unit = "unit";
|
|
|
257
364
|
var CreateOutputList = [1, n0, _COL,
|
|
258
365
|
0, () => CreateOutput$
|
|
259
366
|
];
|
|
367
|
+
var DictionarySummaryList = [1, n0, _DSL,
|
|
368
|
+
0, () => DictionarySummary$
|
|
369
|
+
];
|
|
370
|
+
var FeedReferences = 64 | 0;
|
|
260
371
|
var FeedSummaryList = [1, n0, _FSL,
|
|
261
372
|
0, () => FeedSummary$
|
|
262
373
|
];
|
|
@@ -271,36 +382,54 @@ var UpdateOutputList = [1, n0, _UOL,
|
|
|
271
382
|
var TagMap = 128 | 0;
|
|
272
383
|
export var OutputConfig$ = [4, n0, _OC,
|
|
273
384
|
0,
|
|
274
|
-
[_cr, _cl],
|
|
275
|
-
[() => CroppingConfig$, () => ClippingConfig$]
|
|
385
|
+
[_cr, _cl, _su],
|
|
386
|
+
[() => CroppingConfig$, () => ClippingConfig$, () => SubtitlingConfig$]
|
|
276
387
|
];
|
|
277
388
|
export var AssociateFeed$ = [9, n0, _AF,
|
|
278
|
-
{ [
|
|
389
|
+
{ [_ht]: ["POST", "/v1/feed/{id}/associate", 200] }, () => AssociateFeedRequest$, () => AssociateFeedResponse$
|
|
390
|
+
];
|
|
391
|
+
export var CreateDictionary$ = [9, n0, _CD,
|
|
392
|
+
{ [_ht]: ["POST", "/v1/dictionary", 202] }, () => CreateDictionaryRequest$, () => CreateDictionaryResponse$
|
|
279
393
|
];
|
|
280
394
|
export var CreateFeed$ = [9, n0, _CF,
|
|
281
|
-
{ [
|
|
395
|
+
{ [_ht]: ["POST", "/v1/feed", 202] }, () => CreateFeedRequest$, () => CreateFeedResponse$
|
|
396
|
+
];
|
|
397
|
+
export var DeleteDictionary$ = [9, n0, _DD,
|
|
398
|
+
{ [_ht]: ["DELETE", "/v1/dictionary/{id}", 202] }, () => DeleteDictionaryRequest$, () => DeleteDictionaryResponse$
|
|
282
399
|
];
|
|
283
400
|
export var DeleteFeed$ = [9, n0, _DF,
|
|
284
|
-
{ [
|
|
401
|
+
{ [_ht]: ["DELETE", "/v1/feed/{id}", 202] }, () => DeleteFeedRequest$, () => DeleteFeedResponse$
|
|
285
402
|
];
|
|
286
403
|
export var DisassociateFeed$ = [9, n0, _DFi,
|
|
287
|
-
{ [
|
|
404
|
+
{ [_ht]: ["POST", "/v1/feed/{id}/disassociate", 200] }, () => DisassociateFeedRequest$, () => DisassociateFeedResponse$
|
|
405
|
+
];
|
|
406
|
+
export var ExportDictionaryEntries$ = [9, n0, _EDE,
|
|
407
|
+
{ [_ht]: ["GET", "/v1/dictionary/{id}/entries/export", 200] }, () => ExportDictionaryEntriesRequest$, () => ExportDictionaryEntriesResponse$
|
|
408
|
+
];
|
|
409
|
+
export var GetDictionary$ = [9, n0, _GD,
|
|
410
|
+
{ [_ht]: ["GET", "/v1/dictionary/{id}", 200] }, () => GetDictionaryRequest$, () => GetDictionaryResponse$
|
|
288
411
|
];
|
|
289
412
|
export var GetFeed$ = [9, n0, _GF,
|
|
290
|
-
{ [
|
|
413
|
+
{ [_ht]: ["GET", "/v1/feed/{id}", 200] }, () => GetFeedRequest$, () => GetFeedResponse$
|
|
414
|
+
];
|
|
415
|
+
export var ListDictionaries$ = [9, n0, _LD,
|
|
416
|
+
{ [_ht]: ["GET", "/v1/dictionaries", 200] }, () => ListDictionariesRequest$, () => ListDictionariesResponse$
|
|
291
417
|
];
|
|
292
418
|
export var ListFeeds$ = [9, n0, _LF,
|
|
293
|
-
{ [
|
|
419
|
+
{ [_ht]: ["GET", "/v1/feeds", 200] }, () => ListFeedsRequest$, () => ListFeedsResponse$
|
|
294
420
|
];
|
|
295
421
|
export var ListTagsForResource$ = [9, n0, _LTFR,
|
|
296
|
-
{ [
|
|
422
|
+
{ [_ht]: ["GET", "/v1/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
297
423
|
];
|
|
298
424
|
export var TagResource$ = [9, n0, _TR,
|
|
299
|
-
{ [
|
|
425
|
+
{ [_ht]: ["POST", "/v1/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
300
426
|
];
|
|
301
427
|
export var UntagResource$ = [9, n0, _UR,
|
|
302
|
-
{ [
|
|
428
|
+
{ [_ht]: ["DELETE", "/v1/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
429
|
+
];
|
|
430
|
+
export var UpdateDictionary$ = [9, n0, _UD,
|
|
431
|
+
{ [_ht]: ["PATCH", "/v1/dictionary/{id}", 200] }, () => UpdateDictionaryRequest$, () => UpdateDictionaryResponse$
|
|
303
432
|
];
|
|
304
433
|
export var UpdateFeed$ = [9, n0, _UF,
|
|
305
|
-
{ [
|
|
434
|
+
{ [_ht]: ["PUT", "/v1/feed/{id}", 200] }, () => UpdateFeedRequest$, () => UpdateFeedResponse$
|
|
306
435
|
];
|
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
import { type WaiterResult } from "@smithy/core/client";
|
|
2
2
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
3
3
|
import { type AssociateFeedCommandInput, type AssociateFeedCommandOutput } from "./commands/AssociateFeedCommand";
|
|
4
|
+
import { type CreateDictionaryCommandInput, type CreateDictionaryCommandOutput } from "./commands/CreateDictionaryCommand";
|
|
4
5
|
import { type CreateFeedCommandInput, type CreateFeedCommandOutput } from "./commands/CreateFeedCommand";
|
|
6
|
+
import { type DeleteDictionaryCommandInput, type DeleteDictionaryCommandOutput } from "./commands/DeleteDictionaryCommand";
|
|
5
7
|
import { type DeleteFeedCommandInput, type DeleteFeedCommandOutput } from "./commands/DeleteFeedCommand";
|
|
6
8
|
import { type DisassociateFeedCommandInput, type DisassociateFeedCommandOutput } from "./commands/DisassociateFeedCommand";
|
|
9
|
+
import { type ExportDictionaryEntriesCommandInput, type ExportDictionaryEntriesCommandOutput } from "./commands/ExportDictionaryEntriesCommand";
|
|
10
|
+
import { type GetDictionaryCommandInput, type GetDictionaryCommandOutput } from "./commands/GetDictionaryCommand";
|
|
7
11
|
import { type GetFeedCommandInput, type GetFeedCommandOutput } from "./commands/GetFeedCommand";
|
|
12
|
+
import { type ListDictionariesCommandInput, type ListDictionariesCommandOutput } from "./commands/ListDictionariesCommand";
|
|
8
13
|
import { type ListFeedsCommandInput, type ListFeedsCommandOutput } from "./commands/ListFeedsCommand";
|
|
9
14
|
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
10
15
|
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
11
16
|
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
17
|
+
import { type UpdateDictionaryCommandInput, type UpdateDictionaryCommandOutput } from "./commands/UpdateDictionaryCommand";
|
|
12
18
|
import { type UpdateFeedCommandInput, type UpdateFeedCommandOutput } from "./commands/UpdateFeedCommand";
|
|
13
19
|
import { ElementalInferenceClient } from "./ElementalInferenceClient";
|
|
14
20
|
import type { ResourceNotFoundException } from "./models/errors";
|
|
@@ -19,12 +25,24 @@ export interface ElementalInference {
|
|
|
19
25
|
associateFeed(args: AssociateFeedCommandInput, options?: __HttpHandlerOptions): Promise<AssociateFeedCommandOutput>;
|
|
20
26
|
associateFeed(args: AssociateFeedCommandInput, cb: (err: any, data?: AssociateFeedCommandOutput) => void): void;
|
|
21
27
|
associateFeed(args: AssociateFeedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateFeedCommandOutput) => void): void;
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link CreateDictionaryCommand}
|
|
30
|
+
*/
|
|
31
|
+
createDictionary(args: CreateDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<CreateDictionaryCommandOutput>;
|
|
32
|
+
createDictionary(args: CreateDictionaryCommandInput, cb: (err: any, data?: CreateDictionaryCommandOutput) => void): void;
|
|
33
|
+
createDictionary(args: CreateDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDictionaryCommandOutput) => void): void;
|
|
22
34
|
/**
|
|
23
35
|
* @see {@link CreateFeedCommand}
|
|
24
36
|
*/
|
|
25
37
|
createFeed(args: CreateFeedCommandInput, options?: __HttpHandlerOptions): Promise<CreateFeedCommandOutput>;
|
|
26
38
|
createFeed(args: CreateFeedCommandInput, cb: (err: any, data?: CreateFeedCommandOutput) => void): void;
|
|
27
39
|
createFeed(args: CreateFeedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFeedCommandOutput) => void): void;
|
|
40
|
+
/**
|
|
41
|
+
* @see {@link DeleteDictionaryCommand}
|
|
42
|
+
*/
|
|
43
|
+
deleteDictionary(args: DeleteDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDictionaryCommandOutput>;
|
|
44
|
+
deleteDictionary(args: DeleteDictionaryCommandInput, cb: (err: any, data?: DeleteDictionaryCommandOutput) => void): void;
|
|
45
|
+
deleteDictionary(args: DeleteDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDictionaryCommandOutput) => void): void;
|
|
28
46
|
/**
|
|
29
47
|
* @see {@link DeleteFeedCommand}
|
|
30
48
|
*/
|
|
@@ -37,12 +55,31 @@ export interface ElementalInference {
|
|
|
37
55
|
disassociateFeed(args: DisassociateFeedCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateFeedCommandOutput>;
|
|
38
56
|
disassociateFeed(args: DisassociateFeedCommandInput, cb: (err: any, data?: DisassociateFeedCommandOutput) => void): void;
|
|
39
57
|
disassociateFeed(args: DisassociateFeedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateFeedCommandOutput) => void): void;
|
|
58
|
+
/**
|
|
59
|
+
* @see {@link ExportDictionaryEntriesCommand}
|
|
60
|
+
*/
|
|
61
|
+
exportDictionaryEntries(args: ExportDictionaryEntriesCommandInput, options?: __HttpHandlerOptions): Promise<ExportDictionaryEntriesCommandOutput>;
|
|
62
|
+
exportDictionaryEntries(args: ExportDictionaryEntriesCommandInput, cb: (err: any, data?: ExportDictionaryEntriesCommandOutput) => void): void;
|
|
63
|
+
exportDictionaryEntries(args: ExportDictionaryEntriesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ExportDictionaryEntriesCommandOutput) => void): void;
|
|
64
|
+
/**
|
|
65
|
+
* @see {@link GetDictionaryCommand}
|
|
66
|
+
*/
|
|
67
|
+
getDictionary(args: GetDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<GetDictionaryCommandOutput>;
|
|
68
|
+
getDictionary(args: GetDictionaryCommandInput, cb: (err: any, data?: GetDictionaryCommandOutput) => void): void;
|
|
69
|
+
getDictionary(args: GetDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDictionaryCommandOutput) => void): void;
|
|
40
70
|
/**
|
|
41
71
|
* @see {@link GetFeedCommand}
|
|
42
72
|
*/
|
|
43
73
|
getFeed(args: GetFeedCommandInput, options?: __HttpHandlerOptions): Promise<GetFeedCommandOutput>;
|
|
44
74
|
getFeed(args: GetFeedCommandInput, cb: (err: any, data?: GetFeedCommandOutput) => void): void;
|
|
45
75
|
getFeed(args: GetFeedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFeedCommandOutput) => void): void;
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link ListDictionariesCommand}
|
|
78
|
+
*/
|
|
79
|
+
listDictionaries(): Promise<ListDictionariesCommandOutput>;
|
|
80
|
+
listDictionaries(args: ListDictionariesCommandInput, options?: __HttpHandlerOptions): Promise<ListDictionariesCommandOutput>;
|
|
81
|
+
listDictionaries(args: ListDictionariesCommandInput, cb: (err: any, data?: ListDictionariesCommandOutput) => void): void;
|
|
82
|
+
listDictionaries(args: ListDictionariesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDictionariesCommandOutput) => void): void;
|
|
46
83
|
/**
|
|
47
84
|
* @see {@link ListFeedsCommand}
|
|
48
85
|
*/
|
|
@@ -68,12 +105,25 @@ export interface ElementalInference {
|
|
|
68
105
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
69
106
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
70
107
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
108
|
+
/**
|
|
109
|
+
* @see {@link UpdateDictionaryCommand}
|
|
110
|
+
*/
|
|
111
|
+
updateDictionary(args: UpdateDictionaryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDictionaryCommandOutput>;
|
|
112
|
+
updateDictionary(args: UpdateDictionaryCommandInput, cb: (err: any, data?: UpdateDictionaryCommandOutput) => void): void;
|
|
113
|
+
updateDictionary(args: UpdateDictionaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDictionaryCommandOutput) => void): void;
|
|
71
114
|
/**
|
|
72
115
|
* @see {@link UpdateFeedCommand}
|
|
73
116
|
*/
|
|
74
117
|
updateFeed(args: UpdateFeedCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFeedCommandOutput>;
|
|
75
118
|
updateFeed(args: UpdateFeedCommandInput, cb: (err: any, data?: UpdateFeedCommandOutput) => void): void;
|
|
76
119
|
updateFeed(args: UpdateFeedCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFeedCommandOutput) => void): void;
|
|
120
|
+
/**
|
|
121
|
+
* @see {@link ListDictionariesCommand}
|
|
122
|
+
* @param args - command input.
|
|
123
|
+
* @param paginationConfig - optional pagination config.
|
|
124
|
+
* @returns AsyncIterable of {@link ListDictionariesCommandOutput}.
|
|
125
|
+
*/
|
|
126
|
+
paginateListDictionaries(args?: ListDictionariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDictionariesCommandOutput>;
|
|
77
127
|
/**
|
|
78
128
|
* @see {@link ListFeedsCommand}
|
|
79
129
|
* @param args - command input.
|
|
@@ -7,14 +7,20 @@ import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/core/re
|
|
|
7
7
|
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
8
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
9
9
|
import type { AssociateFeedCommandInput, AssociateFeedCommandOutput } from "./commands/AssociateFeedCommand";
|
|
10
|
+
import type { CreateDictionaryCommandInput, CreateDictionaryCommandOutput } from "./commands/CreateDictionaryCommand";
|
|
10
11
|
import type { CreateFeedCommandInput, CreateFeedCommandOutput } from "./commands/CreateFeedCommand";
|
|
12
|
+
import type { DeleteDictionaryCommandInput, DeleteDictionaryCommandOutput } from "./commands/DeleteDictionaryCommand";
|
|
11
13
|
import type { DeleteFeedCommandInput, DeleteFeedCommandOutput } from "./commands/DeleteFeedCommand";
|
|
12
14
|
import type { DisassociateFeedCommandInput, DisassociateFeedCommandOutput } from "./commands/DisassociateFeedCommand";
|
|
15
|
+
import type { ExportDictionaryEntriesCommandInput, ExportDictionaryEntriesCommandOutput } from "./commands/ExportDictionaryEntriesCommand";
|
|
16
|
+
import type { GetDictionaryCommandInput, GetDictionaryCommandOutput } from "./commands/GetDictionaryCommand";
|
|
13
17
|
import type { GetFeedCommandInput, GetFeedCommandOutput } from "./commands/GetFeedCommand";
|
|
18
|
+
import type { ListDictionariesCommandInput, ListDictionariesCommandOutput } from "./commands/ListDictionariesCommand";
|
|
14
19
|
import type { ListFeedsCommandInput, ListFeedsCommandOutput } from "./commands/ListFeedsCommand";
|
|
15
20
|
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
16
21
|
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
17
22
|
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
23
|
+
import type { UpdateDictionaryCommandInput, UpdateDictionaryCommandOutput } from "./commands/UpdateDictionaryCommand";
|
|
18
24
|
import type { UpdateFeedCommandInput, UpdateFeedCommandOutput } from "./commands/UpdateFeedCommand";
|
|
19
25
|
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
20
26
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
@@ -22,11 +28,11 @@ export { __Client };
|
|
|
22
28
|
/**
|
|
23
29
|
* @public
|
|
24
30
|
*/
|
|
25
|
-
export type ServiceInputTypes = AssociateFeedCommandInput | CreateFeedCommandInput | DeleteFeedCommandInput | DisassociateFeedCommandInput | GetFeedCommandInput | ListFeedsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFeedCommandInput;
|
|
31
|
+
export type ServiceInputTypes = AssociateFeedCommandInput | CreateDictionaryCommandInput | CreateFeedCommandInput | DeleteDictionaryCommandInput | DeleteFeedCommandInput | DisassociateFeedCommandInput | ExportDictionaryEntriesCommandInput | GetDictionaryCommandInput | GetFeedCommandInput | ListDictionariesCommandInput | ListFeedsCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDictionaryCommandInput | UpdateFeedCommandInput;
|
|
26
32
|
/**
|
|
27
33
|
* @public
|
|
28
34
|
*/
|
|
29
|
-
export type ServiceOutputTypes = AssociateFeedCommandOutput | CreateFeedCommandOutput | DeleteFeedCommandOutput | DisassociateFeedCommandOutput | GetFeedCommandOutput | ListFeedsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFeedCommandOutput;
|
|
35
|
+
export type ServiceOutputTypes = AssociateFeedCommandOutput | CreateDictionaryCommandOutput | CreateFeedCommandOutput | DeleteDictionaryCommandOutput | DeleteFeedCommandOutput | DisassociateFeedCommandOutput | ExportDictionaryEntriesCommandOutput | GetDictionaryCommandOutput | GetFeedCommandOutput | ListDictionariesCommandOutput | ListFeedsCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDictionaryCommandOutput | UpdateFeedCommandOutput;
|
|
30
36
|
/**
|
|
31
37
|
* @public
|
|
32
38
|
*/
|