@aws-sdk/client-machine-learning 3.168.0 → 3.170.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 +16 -0
- package/dist-types/ts3.4/MachineLearning.d.ts +508 -145
- package/dist-types/ts3.4/MachineLearningClient.d.ts +298 -101
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +28 -28
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +7 -7
- package/dist-types/ts3.4/models/MachineLearningServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1200 -1129
- package/dist-types/ts3.4/pagination/DescribeBatchPredictionsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeDataSourcesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEvaluationsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeMLModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/index.d.ts +5 -5
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +341 -86
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
- package/dist-types/ts3.4/waiters/index.d.ts +4 -4
- package/dist-types/ts3.4/waiters/waitForBatchPredictionAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForDataSourceAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForEvaluationAvailable.d.ts +13 -7
- package/dist-types/ts3.4/waiters/waitForMLModelAvailable.d.ts +13 -7
- package/package.json +36 -36
|
@@ -1,101 +1,298 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
import {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
import {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
101
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
AddTagsCommandInput,
|
|
47
|
+
AddTagsCommandOutput,
|
|
48
|
+
} from "./commands/AddTagsCommand";
|
|
49
|
+
import {
|
|
50
|
+
CreateBatchPredictionCommandInput,
|
|
51
|
+
CreateBatchPredictionCommandOutput,
|
|
52
|
+
} from "./commands/CreateBatchPredictionCommand";
|
|
53
|
+
import {
|
|
54
|
+
CreateDataSourceFromRDSCommandInput,
|
|
55
|
+
CreateDataSourceFromRDSCommandOutput,
|
|
56
|
+
} from "./commands/CreateDataSourceFromRDSCommand";
|
|
57
|
+
import {
|
|
58
|
+
CreateDataSourceFromRedshiftCommandInput,
|
|
59
|
+
CreateDataSourceFromRedshiftCommandOutput,
|
|
60
|
+
} from "./commands/CreateDataSourceFromRedshiftCommand";
|
|
61
|
+
import {
|
|
62
|
+
CreateDataSourceFromS3CommandInput,
|
|
63
|
+
CreateDataSourceFromS3CommandOutput,
|
|
64
|
+
} from "./commands/CreateDataSourceFromS3Command";
|
|
65
|
+
import {
|
|
66
|
+
CreateEvaluationCommandInput,
|
|
67
|
+
CreateEvaluationCommandOutput,
|
|
68
|
+
} from "./commands/CreateEvaluationCommand";
|
|
69
|
+
import {
|
|
70
|
+
CreateMLModelCommandInput,
|
|
71
|
+
CreateMLModelCommandOutput,
|
|
72
|
+
} from "./commands/CreateMLModelCommand";
|
|
73
|
+
import {
|
|
74
|
+
CreateRealtimeEndpointCommandInput,
|
|
75
|
+
CreateRealtimeEndpointCommandOutput,
|
|
76
|
+
} from "./commands/CreateRealtimeEndpointCommand";
|
|
77
|
+
import {
|
|
78
|
+
DeleteBatchPredictionCommandInput,
|
|
79
|
+
DeleteBatchPredictionCommandOutput,
|
|
80
|
+
} from "./commands/DeleteBatchPredictionCommand";
|
|
81
|
+
import {
|
|
82
|
+
DeleteDataSourceCommandInput,
|
|
83
|
+
DeleteDataSourceCommandOutput,
|
|
84
|
+
} from "./commands/DeleteDataSourceCommand";
|
|
85
|
+
import {
|
|
86
|
+
DeleteEvaluationCommandInput,
|
|
87
|
+
DeleteEvaluationCommandOutput,
|
|
88
|
+
} from "./commands/DeleteEvaluationCommand";
|
|
89
|
+
import {
|
|
90
|
+
DeleteMLModelCommandInput,
|
|
91
|
+
DeleteMLModelCommandOutput,
|
|
92
|
+
} from "./commands/DeleteMLModelCommand";
|
|
93
|
+
import {
|
|
94
|
+
DeleteRealtimeEndpointCommandInput,
|
|
95
|
+
DeleteRealtimeEndpointCommandOutput,
|
|
96
|
+
} from "./commands/DeleteRealtimeEndpointCommand";
|
|
97
|
+
import {
|
|
98
|
+
DeleteTagsCommandInput,
|
|
99
|
+
DeleteTagsCommandOutput,
|
|
100
|
+
} from "./commands/DeleteTagsCommand";
|
|
101
|
+
import {
|
|
102
|
+
DescribeBatchPredictionsCommandInput,
|
|
103
|
+
DescribeBatchPredictionsCommandOutput,
|
|
104
|
+
} from "./commands/DescribeBatchPredictionsCommand";
|
|
105
|
+
import {
|
|
106
|
+
DescribeDataSourcesCommandInput,
|
|
107
|
+
DescribeDataSourcesCommandOutput,
|
|
108
|
+
} from "./commands/DescribeDataSourcesCommand";
|
|
109
|
+
import {
|
|
110
|
+
DescribeEvaluationsCommandInput,
|
|
111
|
+
DescribeEvaluationsCommandOutput,
|
|
112
|
+
} from "./commands/DescribeEvaluationsCommand";
|
|
113
|
+
import {
|
|
114
|
+
DescribeMLModelsCommandInput,
|
|
115
|
+
DescribeMLModelsCommandOutput,
|
|
116
|
+
} from "./commands/DescribeMLModelsCommand";
|
|
117
|
+
import {
|
|
118
|
+
DescribeTagsCommandInput,
|
|
119
|
+
DescribeTagsCommandOutput,
|
|
120
|
+
} from "./commands/DescribeTagsCommand";
|
|
121
|
+
import {
|
|
122
|
+
GetBatchPredictionCommandInput,
|
|
123
|
+
GetBatchPredictionCommandOutput,
|
|
124
|
+
} from "./commands/GetBatchPredictionCommand";
|
|
125
|
+
import {
|
|
126
|
+
GetDataSourceCommandInput,
|
|
127
|
+
GetDataSourceCommandOutput,
|
|
128
|
+
} from "./commands/GetDataSourceCommand";
|
|
129
|
+
import {
|
|
130
|
+
GetEvaluationCommandInput,
|
|
131
|
+
GetEvaluationCommandOutput,
|
|
132
|
+
} from "./commands/GetEvaluationCommand";
|
|
133
|
+
import {
|
|
134
|
+
GetMLModelCommandInput,
|
|
135
|
+
GetMLModelCommandOutput,
|
|
136
|
+
} from "./commands/GetMLModelCommand";
|
|
137
|
+
import {
|
|
138
|
+
PredictCommandInput,
|
|
139
|
+
PredictCommandOutput,
|
|
140
|
+
} from "./commands/PredictCommand";
|
|
141
|
+
import {
|
|
142
|
+
UpdateBatchPredictionCommandInput,
|
|
143
|
+
UpdateBatchPredictionCommandOutput,
|
|
144
|
+
} from "./commands/UpdateBatchPredictionCommand";
|
|
145
|
+
import {
|
|
146
|
+
UpdateDataSourceCommandInput,
|
|
147
|
+
UpdateDataSourceCommandOutput,
|
|
148
|
+
} from "./commands/UpdateDataSourceCommand";
|
|
149
|
+
import {
|
|
150
|
+
UpdateEvaluationCommandInput,
|
|
151
|
+
UpdateEvaluationCommandOutput,
|
|
152
|
+
} from "./commands/UpdateEvaluationCommand";
|
|
153
|
+
import {
|
|
154
|
+
UpdateMLModelCommandInput,
|
|
155
|
+
UpdateMLModelCommandOutput,
|
|
156
|
+
} from "./commands/UpdateMLModelCommand";
|
|
157
|
+
export declare type ServiceInputTypes =
|
|
158
|
+
| AddTagsCommandInput
|
|
159
|
+
| CreateBatchPredictionCommandInput
|
|
160
|
+
| CreateDataSourceFromRDSCommandInput
|
|
161
|
+
| CreateDataSourceFromRedshiftCommandInput
|
|
162
|
+
| CreateDataSourceFromS3CommandInput
|
|
163
|
+
| CreateEvaluationCommandInput
|
|
164
|
+
| CreateMLModelCommandInput
|
|
165
|
+
| CreateRealtimeEndpointCommandInput
|
|
166
|
+
| DeleteBatchPredictionCommandInput
|
|
167
|
+
| DeleteDataSourceCommandInput
|
|
168
|
+
| DeleteEvaluationCommandInput
|
|
169
|
+
| DeleteMLModelCommandInput
|
|
170
|
+
| DeleteRealtimeEndpointCommandInput
|
|
171
|
+
| DeleteTagsCommandInput
|
|
172
|
+
| DescribeBatchPredictionsCommandInput
|
|
173
|
+
| DescribeDataSourcesCommandInput
|
|
174
|
+
| DescribeEvaluationsCommandInput
|
|
175
|
+
| DescribeMLModelsCommandInput
|
|
176
|
+
| DescribeTagsCommandInput
|
|
177
|
+
| GetBatchPredictionCommandInput
|
|
178
|
+
| GetDataSourceCommandInput
|
|
179
|
+
| GetEvaluationCommandInput
|
|
180
|
+
| GetMLModelCommandInput
|
|
181
|
+
| PredictCommandInput
|
|
182
|
+
| UpdateBatchPredictionCommandInput
|
|
183
|
+
| UpdateDataSourceCommandInput
|
|
184
|
+
| UpdateEvaluationCommandInput
|
|
185
|
+
| UpdateMLModelCommandInput;
|
|
186
|
+
export declare type ServiceOutputTypes =
|
|
187
|
+
| AddTagsCommandOutput
|
|
188
|
+
| CreateBatchPredictionCommandOutput
|
|
189
|
+
| CreateDataSourceFromRDSCommandOutput
|
|
190
|
+
| CreateDataSourceFromRedshiftCommandOutput
|
|
191
|
+
| CreateDataSourceFromS3CommandOutput
|
|
192
|
+
| CreateEvaluationCommandOutput
|
|
193
|
+
| CreateMLModelCommandOutput
|
|
194
|
+
| CreateRealtimeEndpointCommandOutput
|
|
195
|
+
| DeleteBatchPredictionCommandOutput
|
|
196
|
+
| DeleteDataSourceCommandOutput
|
|
197
|
+
| DeleteEvaluationCommandOutput
|
|
198
|
+
| DeleteMLModelCommandOutput
|
|
199
|
+
| DeleteRealtimeEndpointCommandOutput
|
|
200
|
+
| DeleteTagsCommandOutput
|
|
201
|
+
| DescribeBatchPredictionsCommandOutput
|
|
202
|
+
| DescribeDataSourcesCommandOutput
|
|
203
|
+
| DescribeEvaluationsCommandOutput
|
|
204
|
+
| DescribeMLModelsCommandOutput
|
|
205
|
+
| DescribeTagsCommandOutput
|
|
206
|
+
| GetBatchPredictionCommandOutput
|
|
207
|
+
| GetDataSourceCommandOutput
|
|
208
|
+
| GetEvaluationCommandOutput
|
|
209
|
+
| GetMLModelCommandOutput
|
|
210
|
+
| PredictCommandOutput
|
|
211
|
+
| UpdateBatchPredictionCommandOutput
|
|
212
|
+
| UpdateDataSourceCommandOutput
|
|
213
|
+
| UpdateEvaluationCommandOutput
|
|
214
|
+
| UpdateMLModelCommandOutput;
|
|
215
|
+
export interface ClientDefaults
|
|
216
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
217
|
+
requestHandler?: __HttpHandler;
|
|
218
|
+
|
|
219
|
+
sha256?: __HashConstructor;
|
|
220
|
+
|
|
221
|
+
urlParser?: __UrlParser;
|
|
222
|
+
|
|
223
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
224
|
+
|
|
225
|
+
streamCollector?: __StreamCollector;
|
|
226
|
+
|
|
227
|
+
base64Decoder?: __Decoder;
|
|
228
|
+
|
|
229
|
+
base64Encoder?: __Encoder;
|
|
230
|
+
|
|
231
|
+
utf8Decoder?: __Decoder;
|
|
232
|
+
|
|
233
|
+
utf8Encoder?: __Encoder;
|
|
234
|
+
|
|
235
|
+
runtime?: string;
|
|
236
|
+
|
|
237
|
+
disableHostPrefix?: boolean;
|
|
238
|
+
|
|
239
|
+
maxAttempts?: number | __Provider<number>;
|
|
240
|
+
|
|
241
|
+
retryMode?: string | __Provider<string>;
|
|
242
|
+
|
|
243
|
+
logger?: __Logger;
|
|
244
|
+
|
|
245
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
246
|
+
|
|
247
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
248
|
+
|
|
249
|
+
serviceId?: string;
|
|
250
|
+
|
|
251
|
+
region?: string | __Provider<string>;
|
|
252
|
+
|
|
253
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
254
|
+
|
|
255
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
256
|
+
|
|
257
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
258
|
+
|
|
259
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
260
|
+
}
|
|
261
|
+
declare type MachineLearningClientConfigType = Partial<
|
|
262
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
263
|
+
> &
|
|
264
|
+
ClientDefaults &
|
|
265
|
+
RegionInputConfig &
|
|
266
|
+
EndpointsInputConfig &
|
|
267
|
+
RetryInputConfig &
|
|
268
|
+
HostHeaderInputConfig &
|
|
269
|
+
AwsAuthInputConfig &
|
|
270
|
+
UserAgentInputConfig;
|
|
271
|
+
|
|
272
|
+
export interface MachineLearningClientConfig
|
|
273
|
+
extends MachineLearningClientConfigType {}
|
|
274
|
+
declare type MachineLearningClientResolvedConfigType =
|
|
275
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
276
|
+
Required<ClientDefaults> &
|
|
277
|
+
RegionResolvedConfig &
|
|
278
|
+
EndpointsResolvedConfig &
|
|
279
|
+
RetryResolvedConfig &
|
|
280
|
+
HostHeaderResolvedConfig &
|
|
281
|
+
AwsAuthResolvedConfig &
|
|
282
|
+
UserAgentResolvedConfig;
|
|
283
|
+
|
|
284
|
+
export interface MachineLearningClientResolvedConfig
|
|
285
|
+
extends MachineLearningClientResolvedConfigType {}
|
|
286
|
+
|
|
287
|
+
export declare class MachineLearningClient extends __Client<
|
|
288
|
+
__HttpHandlerOptions,
|
|
289
|
+
ServiceInputTypes,
|
|
290
|
+
ServiceOutputTypes,
|
|
291
|
+
MachineLearningClientResolvedConfig
|
|
292
|
+
> {
|
|
293
|
+
readonly config: MachineLearningClientResolvedConfig;
|
|
294
|
+
constructor(configuration: MachineLearningClientConfig);
|
|
295
|
+
|
|
296
|
+
destroy(): void;
|
|
297
|
+
}
|
|
298
|
+
export {};
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MachineLearningClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MachineLearningClient";
|
|
13
|
+
import { AddTagsInput, AddTagsOutput } from "../models/models_0";
|
|
14
|
+
export interface AddTagsCommandInput extends AddTagsInput {}
|
|
15
|
+
export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class AddTagsCommand extends $Command<
|
|
18
|
+
AddTagsCommandInput,
|
|
19
|
+
AddTagsCommandOutput,
|
|
20
|
+
MachineLearningClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: AddTagsCommandInput;
|
|
23
|
+
constructor(input: AddTagsCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<AddTagsCommandInput, AddTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MachineLearningClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MachineLearningClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateBatchPredictionInput,
|
|
15
|
+
CreateBatchPredictionOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateBatchPredictionCommandInput
|
|
18
|
+
extends CreateBatchPredictionInput {}
|
|
19
|
+
export interface CreateBatchPredictionCommandOutput
|
|
20
|
+
extends CreateBatchPredictionOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateBatchPredictionCommand extends $Command<
|
|
24
|
+
CreateBatchPredictionCommandInput,
|
|
25
|
+
CreateBatchPredictionCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateBatchPredictionCommandInput;
|
|
29
|
+
constructor(input: CreateBatchPredictionCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateBatchPredictionCommandInput,
|
|
37
|
+
CreateBatchPredictionCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MachineLearningClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MachineLearningClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateDataSourceFromRDSInput,
|
|
15
|
+
CreateDataSourceFromRDSOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDataSourceFromRDSCommandInput
|
|
18
|
+
extends CreateDataSourceFromRDSInput {}
|
|
19
|
+
export interface CreateDataSourceFromRDSCommandOutput
|
|
20
|
+
extends CreateDataSourceFromRDSOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateDataSourceFromRDSCommand extends $Command<
|
|
24
|
+
CreateDataSourceFromRDSCommandInput,
|
|
25
|
+
CreateDataSourceFromRDSCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateDataSourceFromRDSCommandInput;
|
|
29
|
+
constructor(input: CreateDataSourceFromRDSCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateDataSourceFromRDSCommandInput,
|
|
37
|
+
CreateDataSourceFromRDSCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MachineLearningClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MachineLearningClient";
|
|
13
|
+
import {
|
|
14
|
+
CreateDataSourceFromRedshiftInput,
|
|
15
|
+
CreateDataSourceFromRedshiftOutput,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface CreateDataSourceFromRedshiftCommandInput
|
|
18
|
+
extends CreateDataSourceFromRedshiftInput {}
|
|
19
|
+
export interface CreateDataSourceFromRedshiftCommandOutput
|
|
20
|
+
extends CreateDataSourceFromRedshiftOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class CreateDataSourceFromRedshiftCommand extends $Command<
|
|
24
|
+
CreateDataSourceFromRedshiftCommandInput,
|
|
25
|
+
CreateDataSourceFromRedshiftCommandOutput,
|
|
26
|
+
MachineLearningClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateDataSourceFromRedshiftCommandInput;
|
|
29
|
+
constructor(input: CreateDataSourceFromRedshiftCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: MachineLearningClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateDataSourceFromRedshiftCommandInput,
|
|
37
|
+
CreateDataSourceFromRedshiftCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|