@aws-sdk/client-lookoutequipment 3.49.0 → 3.50.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 +8 -0
- package/package.json +25 -25
- package/dist-types/ts3.4/LookoutEquipment.d.ts +0 -115
- package/dist-types/ts3.4/LookoutEquipmentClient.d.ts +0 -95
- package/dist-types/ts3.4/commands/CreateDatasetCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/CreateModelCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteDatasetCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DeleteModelCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeDataIngestionJobCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeDatasetCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/DescribeModelCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListDataIngestionJobsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListDatasetsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListInferenceExecutionsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListInferenceSchedulersCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StartDataIngestionJobCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StartInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/StopInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/UpdateInferenceSchedulerCommand.d.ts +0 -17
- package/dist-types/ts3.4/commands/index.d.ts +0 -22
- package/dist-types/ts3.4/endpoints.d.ts +0 -2
- package/dist-types/ts3.4/index.d.ts +0 -5
- package/dist-types/ts3.4/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/models_0.d.ts +0 -880
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +0 -6
- package/dist-types/ts3.4/pagination/ListDataIngestionJobsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListDatasetsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListInferenceExecutionsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListInferenceSchedulersPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/ListModelsPaginator.d.ts +0 -4
- package/dist-types/ts3.4/pagination/index.d.ts +0 -6
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -68
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +0 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +0 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -11
|
@@ -1,880 +0,0 @@
|
|
|
1
|
-
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
3
|
-
|
|
4
|
-
export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
|
|
5
|
-
name: "AccessDeniedException";
|
|
6
|
-
$fault: "client";
|
|
7
|
-
Message: string | undefined;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export interface ConflictException extends __SmithyException, $MetadataBearer {
|
|
11
|
-
name: "ConflictException";
|
|
12
|
-
$fault: "client";
|
|
13
|
-
Message: string | undefined;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
export interface DatasetSchema {
|
|
17
|
-
|
|
18
|
-
InlineDataSchema?: __LazyJsonString | string;
|
|
19
|
-
}
|
|
20
|
-
export declare namespace DatasetSchema {
|
|
21
|
-
|
|
22
|
-
const filterSensitiveLog: (obj: DatasetSchema) => any;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
export interface Tag {
|
|
26
|
-
|
|
27
|
-
Key: string | undefined;
|
|
28
|
-
|
|
29
|
-
Value: string | undefined;
|
|
30
|
-
}
|
|
31
|
-
export declare namespace Tag {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
34
|
-
}
|
|
35
|
-
export interface CreateDatasetRequest {
|
|
36
|
-
|
|
37
|
-
DatasetName: string | undefined;
|
|
38
|
-
|
|
39
|
-
DatasetSchema: DatasetSchema | undefined;
|
|
40
|
-
|
|
41
|
-
ServerSideKmsKeyId?: string;
|
|
42
|
-
|
|
43
|
-
ClientToken?: string;
|
|
44
|
-
|
|
45
|
-
Tags?: Tag[];
|
|
46
|
-
}
|
|
47
|
-
export declare namespace CreateDatasetRequest {
|
|
48
|
-
|
|
49
|
-
const filterSensitiveLog: (obj: CreateDatasetRequest) => any;
|
|
50
|
-
}
|
|
51
|
-
export declare enum DatasetStatus {
|
|
52
|
-
ACTIVE = "ACTIVE",
|
|
53
|
-
CREATED = "CREATED",
|
|
54
|
-
INGESTION_IN_PROGRESS = "INGESTION_IN_PROGRESS"
|
|
55
|
-
}
|
|
56
|
-
export interface CreateDatasetResponse {
|
|
57
|
-
|
|
58
|
-
DatasetName?: string;
|
|
59
|
-
|
|
60
|
-
DatasetArn?: string;
|
|
61
|
-
|
|
62
|
-
Status?: DatasetStatus | string;
|
|
63
|
-
}
|
|
64
|
-
export declare namespace CreateDatasetResponse {
|
|
65
|
-
|
|
66
|
-
const filterSensitiveLog: (obj: CreateDatasetResponse) => any;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
export interface InternalServerException extends __SmithyException, $MetadataBearer {
|
|
70
|
-
name: "InternalServerException";
|
|
71
|
-
$fault: "server";
|
|
72
|
-
Message: string | undefined;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
export interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
|
|
76
|
-
name: "ServiceQuotaExceededException";
|
|
77
|
-
$fault: "client";
|
|
78
|
-
Message: string | undefined;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
82
|
-
name: "ThrottlingException";
|
|
83
|
-
$fault: "client";
|
|
84
|
-
Message: string | undefined;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
export interface ValidationException extends __SmithyException, $MetadataBearer {
|
|
88
|
-
name: "ValidationException";
|
|
89
|
-
$fault: "client";
|
|
90
|
-
Message: string | undefined;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
export interface InferenceInputNameConfiguration {
|
|
94
|
-
|
|
95
|
-
TimestampFormat?: string;
|
|
96
|
-
|
|
97
|
-
ComponentTimestampDelimiter?: string;
|
|
98
|
-
}
|
|
99
|
-
export declare namespace InferenceInputNameConfiguration {
|
|
100
|
-
|
|
101
|
-
const filterSensitiveLog: (obj: InferenceInputNameConfiguration) => any;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
export interface InferenceS3InputConfiguration {
|
|
105
|
-
|
|
106
|
-
Bucket: string | undefined;
|
|
107
|
-
|
|
108
|
-
Prefix?: string;
|
|
109
|
-
}
|
|
110
|
-
export declare namespace InferenceS3InputConfiguration {
|
|
111
|
-
|
|
112
|
-
const filterSensitiveLog: (obj: InferenceS3InputConfiguration) => any;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
export interface InferenceInputConfiguration {
|
|
116
|
-
|
|
117
|
-
S3InputConfiguration?: InferenceS3InputConfiguration;
|
|
118
|
-
|
|
119
|
-
InputTimeZoneOffset?: string;
|
|
120
|
-
|
|
121
|
-
InferenceInputNameConfiguration?: InferenceInputNameConfiguration;
|
|
122
|
-
}
|
|
123
|
-
export declare namespace InferenceInputConfiguration {
|
|
124
|
-
|
|
125
|
-
const filterSensitiveLog: (obj: InferenceInputConfiguration) => any;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
export interface InferenceS3OutputConfiguration {
|
|
129
|
-
|
|
130
|
-
Bucket: string | undefined;
|
|
131
|
-
|
|
132
|
-
Prefix?: string;
|
|
133
|
-
}
|
|
134
|
-
export declare namespace InferenceS3OutputConfiguration {
|
|
135
|
-
|
|
136
|
-
const filterSensitiveLog: (obj: InferenceS3OutputConfiguration) => any;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
export interface InferenceOutputConfiguration {
|
|
140
|
-
|
|
141
|
-
S3OutputConfiguration: InferenceS3OutputConfiguration | undefined;
|
|
142
|
-
|
|
143
|
-
KmsKeyId?: string;
|
|
144
|
-
}
|
|
145
|
-
export declare namespace InferenceOutputConfiguration {
|
|
146
|
-
|
|
147
|
-
const filterSensitiveLog: (obj: InferenceOutputConfiguration) => any;
|
|
148
|
-
}
|
|
149
|
-
export declare enum DataUploadFrequency {
|
|
150
|
-
PT10M = "PT10M",
|
|
151
|
-
PT15M = "PT15M",
|
|
152
|
-
PT1H = "PT1H",
|
|
153
|
-
PT30M = "PT30M",
|
|
154
|
-
PT5M = "PT5M"
|
|
155
|
-
}
|
|
156
|
-
export interface CreateInferenceSchedulerRequest {
|
|
157
|
-
|
|
158
|
-
ModelName: string | undefined;
|
|
159
|
-
|
|
160
|
-
InferenceSchedulerName: string | undefined;
|
|
161
|
-
|
|
162
|
-
DataDelayOffsetInMinutes?: number;
|
|
163
|
-
|
|
164
|
-
DataUploadFrequency: DataUploadFrequency | string | undefined;
|
|
165
|
-
|
|
166
|
-
DataInputConfiguration: InferenceInputConfiguration | undefined;
|
|
167
|
-
|
|
168
|
-
DataOutputConfiguration: InferenceOutputConfiguration | undefined;
|
|
169
|
-
|
|
170
|
-
RoleArn: string | undefined;
|
|
171
|
-
|
|
172
|
-
ServerSideKmsKeyId?: string;
|
|
173
|
-
|
|
174
|
-
ClientToken?: string;
|
|
175
|
-
|
|
176
|
-
Tags?: Tag[];
|
|
177
|
-
}
|
|
178
|
-
export declare namespace CreateInferenceSchedulerRequest {
|
|
179
|
-
|
|
180
|
-
const filterSensitiveLog: (obj: CreateInferenceSchedulerRequest) => any;
|
|
181
|
-
}
|
|
182
|
-
export declare enum InferenceSchedulerStatus {
|
|
183
|
-
PENDING = "PENDING",
|
|
184
|
-
RUNNING = "RUNNING",
|
|
185
|
-
STOPPED = "STOPPED",
|
|
186
|
-
STOPPING = "STOPPING"
|
|
187
|
-
}
|
|
188
|
-
export interface CreateInferenceSchedulerResponse {
|
|
189
|
-
|
|
190
|
-
InferenceSchedulerArn?: string;
|
|
191
|
-
|
|
192
|
-
InferenceSchedulerName?: string;
|
|
193
|
-
|
|
194
|
-
Status?: InferenceSchedulerStatus | string;
|
|
195
|
-
}
|
|
196
|
-
export declare namespace CreateInferenceSchedulerResponse {
|
|
197
|
-
|
|
198
|
-
const filterSensitiveLog: (obj: CreateInferenceSchedulerResponse) => any;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
202
|
-
name: "ResourceNotFoundException";
|
|
203
|
-
$fault: "client";
|
|
204
|
-
Message: string | undefined;
|
|
205
|
-
}
|
|
206
|
-
export declare enum TargetSamplingRate {
|
|
207
|
-
PT10M = "PT10M",
|
|
208
|
-
PT10S = "PT10S",
|
|
209
|
-
PT15M = "PT15M",
|
|
210
|
-
PT15S = "PT15S",
|
|
211
|
-
PT1H = "PT1H",
|
|
212
|
-
PT1M = "PT1M",
|
|
213
|
-
PT1S = "PT1S",
|
|
214
|
-
PT30M = "PT30M",
|
|
215
|
-
PT30S = "PT30S",
|
|
216
|
-
PT5M = "PT5M",
|
|
217
|
-
PT5S = "PT5S"
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
export interface DataPreProcessingConfiguration {
|
|
221
|
-
|
|
222
|
-
TargetSamplingRate?: TargetSamplingRate | string;
|
|
223
|
-
}
|
|
224
|
-
export declare namespace DataPreProcessingConfiguration {
|
|
225
|
-
|
|
226
|
-
const filterSensitiveLog: (obj: DataPreProcessingConfiguration) => any;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
export interface LabelsS3InputConfiguration {
|
|
230
|
-
|
|
231
|
-
Bucket: string | undefined;
|
|
232
|
-
|
|
233
|
-
Prefix?: string;
|
|
234
|
-
}
|
|
235
|
-
export declare namespace LabelsS3InputConfiguration {
|
|
236
|
-
|
|
237
|
-
const filterSensitiveLog: (obj: LabelsS3InputConfiguration) => any;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
export interface LabelsInputConfiguration {
|
|
241
|
-
|
|
242
|
-
S3InputConfiguration: LabelsS3InputConfiguration | undefined;
|
|
243
|
-
}
|
|
244
|
-
export declare namespace LabelsInputConfiguration {
|
|
245
|
-
|
|
246
|
-
const filterSensitiveLog: (obj: LabelsInputConfiguration) => any;
|
|
247
|
-
}
|
|
248
|
-
export interface CreateModelRequest {
|
|
249
|
-
|
|
250
|
-
ModelName: string | undefined;
|
|
251
|
-
|
|
252
|
-
DatasetName: string | undefined;
|
|
253
|
-
|
|
254
|
-
DatasetSchema?: DatasetSchema;
|
|
255
|
-
|
|
256
|
-
LabelsInputConfiguration?: LabelsInputConfiguration;
|
|
257
|
-
|
|
258
|
-
ClientToken?: string;
|
|
259
|
-
|
|
260
|
-
TrainingDataStartTime?: Date;
|
|
261
|
-
|
|
262
|
-
TrainingDataEndTime?: Date;
|
|
263
|
-
|
|
264
|
-
EvaluationDataStartTime?: Date;
|
|
265
|
-
|
|
266
|
-
EvaluationDataEndTime?: Date;
|
|
267
|
-
|
|
268
|
-
RoleArn?: string;
|
|
269
|
-
|
|
270
|
-
DataPreProcessingConfiguration?: DataPreProcessingConfiguration;
|
|
271
|
-
|
|
272
|
-
ServerSideKmsKeyId?: string;
|
|
273
|
-
|
|
274
|
-
Tags?: Tag[];
|
|
275
|
-
|
|
276
|
-
OffCondition?: string;
|
|
277
|
-
}
|
|
278
|
-
export declare namespace CreateModelRequest {
|
|
279
|
-
|
|
280
|
-
const filterSensitiveLog: (obj: CreateModelRequest) => any;
|
|
281
|
-
}
|
|
282
|
-
export declare enum ModelStatus {
|
|
283
|
-
FAILED = "FAILED",
|
|
284
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
285
|
-
SUCCESS = "SUCCESS"
|
|
286
|
-
}
|
|
287
|
-
export interface CreateModelResponse {
|
|
288
|
-
|
|
289
|
-
ModelArn?: string;
|
|
290
|
-
|
|
291
|
-
Status?: ModelStatus | string;
|
|
292
|
-
}
|
|
293
|
-
export declare namespace CreateModelResponse {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: CreateModelResponse) => any;
|
|
296
|
-
}
|
|
297
|
-
export interface DeleteDatasetRequest {
|
|
298
|
-
|
|
299
|
-
DatasetName: string | undefined;
|
|
300
|
-
}
|
|
301
|
-
export declare namespace DeleteDatasetRequest {
|
|
302
|
-
|
|
303
|
-
const filterSensitiveLog: (obj: DeleteDatasetRequest) => any;
|
|
304
|
-
}
|
|
305
|
-
export interface DeleteInferenceSchedulerRequest {
|
|
306
|
-
|
|
307
|
-
InferenceSchedulerName: string | undefined;
|
|
308
|
-
}
|
|
309
|
-
export declare namespace DeleteInferenceSchedulerRequest {
|
|
310
|
-
|
|
311
|
-
const filterSensitiveLog: (obj: DeleteInferenceSchedulerRequest) => any;
|
|
312
|
-
}
|
|
313
|
-
export interface DeleteModelRequest {
|
|
314
|
-
|
|
315
|
-
ModelName: string | undefined;
|
|
316
|
-
}
|
|
317
|
-
export declare namespace DeleteModelRequest {
|
|
318
|
-
|
|
319
|
-
const filterSensitiveLog: (obj: DeleteModelRequest) => any;
|
|
320
|
-
}
|
|
321
|
-
export interface DescribeDataIngestionJobRequest {
|
|
322
|
-
|
|
323
|
-
JobId: string | undefined;
|
|
324
|
-
}
|
|
325
|
-
export declare namespace DescribeDataIngestionJobRequest {
|
|
326
|
-
|
|
327
|
-
const filterSensitiveLog: (obj: DescribeDataIngestionJobRequest) => any;
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
export interface IngestionS3InputConfiguration {
|
|
331
|
-
|
|
332
|
-
Bucket: string | undefined;
|
|
333
|
-
|
|
334
|
-
Prefix?: string;
|
|
335
|
-
}
|
|
336
|
-
export declare namespace IngestionS3InputConfiguration {
|
|
337
|
-
|
|
338
|
-
const filterSensitiveLog: (obj: IngestionS3InputConfiguration) => any;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
export interface IngestionInputConfiguration {
|
|
342
|
-
|
|
343
|
-
S3InputConfiguration: IngestionS3InputConfiguration | undefined;
|
|
344
|
-
}
|
|
345
|
-
export declare namespace IngestionInputConfiguration {
|
|
346
|
-
|
|
347
|
-
const filterSensitiveLog: (obj: IngestionInputConfiguration) => any;
|
|
348
|
-
}
|
|
349
|
-
export declare enum IngestionJobStatus {
|
|
350
|
-
FAILED = "FAILED",
|
|
351
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
352
|
-
SUCCESS = "SUCCESS"
|
|
353
|
-
}
|
|
354
|
-
export interface DescribeDataIngestionJobResponse {
|
|
355
|
-
|
|
356
|
-
JobId?: string;
|
|
357
|
-
|
|
358
|
-
DatasetArn?: string;
|
|
359
|
-
|
|
360
|
-
IngestionInputConfiguration?: IngestionInputConfiguration;
|
|
361
|
-
|
|
362
|
-
RoleArn?: string;
|
|
363
|
-
|
|
364
|
-
CreatedAt?: Date;
|
|
365
|
-
|
|
366
|
-
Status?: IngestionJobStatus | string;
|
|
367
|
-
|
|
368
|
-
FailedReason?: string;
|
|
369
|
-
}
|
|
370
|
-
export declare namespace DescribeDataIngestionJobResponse {
|
|
371
|
-
|
|
372
|
-
const filterSensitiveLog: (obj: DescribeDataIngestionJobResponse) => any;
|
|
373
|
-
}
|
|
374
|
-
export interface DescribeDatasetRequest {
|
|
375
|
-
|
|
376
|
-
DatasetName: string | undefined;
|
|
377
|
-
}
|
|
378
|
-
export declare namespace DescribeDatasetRequest {
|
|
379
|
-
|
|
380
|
-
const filterSensitiveLog: (obj: DescribeDatasetRequest) => any;
|
|
381
|
-
}
|
|
382
|
-
export interface DescribeDatasetResponse {
|
|
383
|
-
|
|
384
|
-
DatasetName?: string;
|
|
385
|
-
|
|
386
|
-
DatasetArn?: string;
|
|
387
|
-
|
|
388
|
-
CreatedAt?: Date;
|
|
389
|
-
|
|
390
|
-
LastUpdatedAt?: Date;
|
|
391
|
-
|
|
392
|
-
Status?: DatasetStatus | string;
|
|
393
|
-
|
|
394
|
-
Schema?: __LazyJsonString | string;
|
|
395
|
-
|
|
396
|
-
ServerSideKmsKeyId?: string;
|
|
397
|
-
|
|
398
|
-
IngestionInputConfiguration?: IngestionInputConfiguration;
|
|
399
|
-
}
|
|
400
|
-
export declare namespace DescribeDatasetResponse {
|
|
401
|
-
|
|
402
|
-
const filterSensitiveLog: (obj: DescribeDatasetResponse) => any;
|
|
403
|
-
}
|
|
404
|
-
export interface DescribeInferenceSchedulerRequest {
|
|
405
|
-
|
|
406
|
-
InferenceSchedulerName: string | undefined;
|
|
407
|
-
}
|
|
408
|
-
export declare namespace DescribeInferenceSchedulerRequest {
|
|
409
|
-
|
|
410
|
-
const filterSensitiveLog: (obj: DescribeInferenceSchedulerRequest) => any;
|
|
411
|
-
}
|
|
412
|
-
export interface DescribeInferenceSchedulerResponse {
|
|
413
|
-
|
|
414
|
-
ModelArn?: string;
|
|
415
|
-
|
|
416
|
-
ModelName?: string;
|
|
417
|
-
|
|
418
|
-
InferenceSchedulerName?: string;
|
|
419
|
-
|
|
420
|
-
InferenceSchedulerArn?: string;
|
|
421
|
-
|
|
422
|
-
Status?: InferenceSchedulerStatus | string;
|
|
423
|
-
|
|
424
|
-
DataDelayOffsetInMinutes?: number;
|
|
425
|
-
|
|
426
|
-
DataUploadFrequency?: DataUploadFrequency | string;
|
|
427
|
-
|
|
428
|
-
CreatedAt?: Date;
|
|
429
|
-
|
|
430
|
-
UpdatedAt?: Date;
|
|
431
|
-
|
|
432
|
-
DataInputConfiguration?: InferenceInputConfiguration;
|
|
433
|
-
|
|
434
|
-
DataOutputConfiguration?: InferenceOutputConfiguration;
|
|
435
|
-
|
|
436
|
-
RoleArn?: string;
|
|
437
|
-
|
|
438
|
-
ServerSideKmsKeyId?: string;
|
|
439
|
-
}
|
|
440
|
-
export declare namespace DescribeInferenceSchedulerResponse {
|
|
441
|
-
|
|
442
|
-
const filterSensitiveLog: (obj: DescribeInferenceSchedulerResponse) => any;
|
|
443
|
-
}
|
|
444
|
-
export interface DescribeModelRequest {
|
|
445
|
-
|
|
446
|
-
ModelName: string | undefined;
|
|
447
|
-
}
|
|
448
|
-
export declare namespace DescribeModelRequest {
|
|
449
|
-
|
|
450
|
-
const filterSensitiveLog: (obj: DescribeModelRequest) => any;
|
|
451
|
-
}
|
|
452
|
-
export interface DescribeModelResponse {
|
|
453
|
-
|
|
454
|
-
ModelName?: string;
|
|
455
|
-
|
|
456
|
-
ModelArn?: string;
|
|
457
|
-
|
|
458
|
-
DatasetName?: string;
|
|
459
|
-
|
|
460
|
-
DatasetArn?: string;
|
|
461
|
-
|
|
462
|
-
Schema?: __LazyJsonString | string;
|
|
463
|
-
|
|
464
|
-
LabelsInputConfiguration?: LabelsInputConfiguration;
|
|
465
|
-
|
|
466
|
-
TrainingDataStartTime?: Date;
|
|
467
|
-
|
|
468
|
-
TrainingDataEndTime?: Date;
|
|
469
|
-
|
|
470
|
-
EvaluationDataStartTime?: Date;
|
|
471
|
-
|
|
472
|
-
EvaluationDataEndTime?: Date;
|
|
473
|
-
|
|
474
|
-
RoleArn?: string;
|
|
475
|
-
|
|
476
|
-
DataPreProcessingConfiguration?: DataPreProcessingConfiguration;
|
|
477
|
-
|
|
478
|
-
Status?: ModelStatus | string;
|
|
479
|
-
|
|
480
|
-
TrainingExecutionStartTime?: Date;
|
|
481
|
-
|
|
482
|
-
TrainingExecutionEndTime?: Date;
|
|
483
|
-
|
|
484
|
-
FailedReason?: string;
|
|
485
|
-
|
|
486
|
-
ModelMetrics?: __LazyJsonString | string;
|
|
487
|
-
|
|
488
|
-
LastUpdatedTime?: Date;
|
|
489
|
-
|
|
490
|
-
CreatedAt?: Date;
|
|
491
|
-
|
|
492
|
-
ServerSideKmsKeyId?: string;
|
|
493
|
-
|
|
494
|
-
OffCondition?: string;
|
|
495
|
-
}
|
|
496
|
-
export declare namespace DescribeModelResponse {
|
|
497
|
-
|
|
498
|
-
const filterSensitiveLog: (obj: DescribeModelResponse) => any;
|
|
499
|
-
}
|
|
500
|
-
export interface ListDataIngestionJobsRequest {
|
|
501
|
-
|
|
502
|
-
DatasetName?: string;
|
|
503
|
-
|
|
504
|
-
NextToken?: string;
|
|
505
|
-
|
|
506
|
-
MaxResults?: number;
|
|
507
|
-
|
|
508
|
-
Status?: IngestionJobStatus | string;
|
|
509
|
-
}
|
|
510
|
-
export declare namespace ListDataIngestionJobsRequest {
|
|
511
|
-
|
|
512
|
-
const filterSensitiveLog: (obj: ListDataIngestionJobsRequest) => any;
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
export interface DataIngestionJobSummary {
|
|
516
|
-
|
|
517
|
-
JobId?: string;
|
|
518
|
-
|
|
519
|
-
DatasetName?: string;
|
|
520
|
-
|
|
521
|
-
DatasetArn?: string;
|
|
522
|
-
|
|
523
|
-
IngestionInputConfiguration?: IngestionInputConfiguration;
|
|
524
|
-
|
|
525
|
-
Status?: IngestionJobStatus | string;
|
|
526
|
-
}
|
|
527
|
-
export declare namespace DataIngestionJobSummary {
|
|
528
|
-
|
|
529
|
-
const filterSensitiveLog: (obj: DataIngestionJobSummary) => any;
|
|
530
|
-
}
|
|
531
|
-
export interface ListDataIngestionJobsResponse {
|
|
532
|
-
|
|
533
|
-
NextToken?: string;
|
|
534
|
-
|
|
535
|
-
DataIngestionJobSummaries?: DataIngestionJobSummary[];
|
|
536
|
-
}
|
|
537
|
-
export declare namespace ListDataIngestionJobsResponse {
|
|
538
|
-
|
|
539
|
-
const filterSensitiveLog: (obj: ListDataIngestionJobsResponse) => any;
|
|
540
|
-
}
|
|
541
|
-
export interface ListDatasetsRequest {
|
|
542
|
-
|
|
543
|
-
NextToken?: string;
|
|
544
|
-
|
|
545
|
-
MaxResults?: number;
|
|
546
|
-
|
|
547
|
-
DatasetNameBeginsWith?: string;
|
|
548
|
-
}
|
|
549
|
-
export declare namespace ListDatasetsRequest {
|
|
550
|
-
|
|
551
|
-
const filterSensitiveLog: (obj: ListDatasetsRequest) => any;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
export interface DatasetSummary {
|
|
555
|
-
|
|
556
|
-
DatasetName?: string;
|
|
557
|
-
|
|
558
|
-
DatasetArn?: string;
|
|
559
|
-
|
|
560
|
-
Status?: DatasetStatus | string;
|
|
561
|
-
|
|
562
|
-
CreatedAt?: Date;
|
|
563
|
-
}
|
|
564
|
-
export declare namespace DatasetSummary {
|
|
565
|
-
|
|
566
|
-
const filterSensitiveLog: (obj: DatasetSummary) => any;
|
|
567
|
-
}
|
|
568
|
-
export interface ListDatasetsResponse {
|
|
569
|
-
|
|
570
|
-
NextToken?: string;
|
|
571
|
-
|
|
572
|
-
DatasetSummaries?: DatasetSummary[];
|
|
573
|
-
}
|
|
574
|
-
export declare namespace ListDatasetsResponse {
|
|
575
|
-
|
|
576
|
-
const filterSensitiveLog: (obj: ListDatasetsResponse) => any;
|
|
577
|
-
}
|
|
578
|
-
export declare enum InferenceExecutionStatus {
|
|
579
|
-
FAILED = "FAILED",
|
|
580
|
-
IN_PROGRESS = "IN_PROGRESS",
|
|
581
|
-
SUCCESS = "SUCCESS"
|
|
582
|
-
}
|
|
583
|
-
export interface ListInferenceExecutionsRequest {
|
|
584
|
-
|
|
585
|
-
NextToken?: string;
|
|
586
|
-
|
|
587
|
-
MaxResults?: number;
|
|
588
|
-
|
|
589
|
-
InferenceSchedulerName: string | undefined;
|
|
590
|
-
|
|
591
|
-
DataStartTimeAfter?: Date;
|
|
592
|
-
|
|
593
|
-
DataEndTimeBefore?: Date;
|
|
594
|
-
|
|
595
|
-
Status?: InferenceExecutionStatus | string;
|
|
596
|
-
}
|
|
597
|
-
export declare namespace ListInferenceExecutionsRequest {
|
|
598
|
-
|
|
599
|
-
const filterSensitiveLog: (obj: ListInferenceExecutionsRequest) => any;
|
|
600
|
-
}
|
|
601
|
-
|
|
602
|
-
export interface S3Object {
|
|
603
|
-
|
|
604
|
-
Bucket: string | undefined;
|
|
605
|
-
|
|
606
|
-
Key: string | undefined;
|
|
607
|
-
}
|
|
608
|
-
export declare namespace S3Object {
|
|
609
|
-
|
|
610
|
-
const filterSensitiveLog: (obj: S3Object) => any;
|
|
611
|
-
}
|
|
612
|
-
|
|
613
|
-
export interface InferenceExecutionSummary {
|
|
614
|
-
|
|
615
|
-
ModelName?: string;
|
|
616
|
-
|
|
617
|
-
ModelArn?: string;
|
|
618
|
-
|
|
619
|
-
InferenceSchedulerName?: string;
|
|
620
|
-
|
|
621
|
-
InferenceSchedulerArn?: string;
|
|
622
|
-
|
|
623
|
-
ScheduledStartTime?: Date;
|
|
624
|
-
|
|
625
|
-
DataStartTime?: Date;
|
|
626
|
-
|
|
627
|
-
DataEndTime?: Date;
|
|
628
|
-
|
|
629
|
-
DataInputConfiguration?: InferenceInputConfiguration;
|
|
630
|
-
|
|
631
|
-
DataOutputConfiguration?: InferenceOutputConfiguration;
|
|
632
|
-
|
|
633
|
-
CustomerResultObject?: S3Object;
|
|
634
|
-
|
|
635
|
-
Status?: InferenceExecutionStatus | string;
|
|
636
|
-
|
|
637
|
-
FailedReason?: string;
|
|
638
|
-
}
|
|
639
|
-
export declare namespace InferenceExecutionSummary {
|
|
640
|
-
|
|
641
|
-
const filterSensitiveLog: (obj: InferenceExecutionSummary) => any;
|
|
642
|
-
}
|
|
643
|
-
export interface ListInferenceExecutionsResponse {
|
|
644
|
-
|
|
645
|
-
NextToken?: string;
|
|
646
|
-
|
|
647
|
-
InferenceExecutionSummaries?: InferenceExecutionSummary[];
|
|
648
|
-
}
|
|
649
|
-
export declare namespace ListInferenceExecutionsResponse {
|
|
650
|
-
|
|
651
|
-
const filterSensitiveLog: (obj: ListInferenceExecutionsResponse) => any;
|
|
652
|
-
}
|
|
653
|
-
export interface ListInferenceSchedulersRequest {
|
|
654
|
-
|
|
655
|
-
NextToken?: string;
|
|
656
|
-
|
|
657
|
-
MaxResults?: number;
|
|
658
|
-
|
|
659
|
-
InferenceSchedulerNameBeginsWith?: string;
|
|
660
|
-
|
|
661
|
-
ModelName?: string;
|
|
662
|
-
}
|
|
663
|
-
export declare namespace ListInferenceSchedulersRequest {
|
|
664
|
-
|
|
665
|
-
const filterSensitiveLog: (obj: ListInferenceSchedulersRequest) => any;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
export interface InferenceSchedulerSummary {
|
|
669
|
-
|
|
670
|
-
ModelName?: string;
|
|
671
|
-
|
|
672
|
-
ModelArn?: string;
|
|
673
|
-
|
|
674
|
-
InferenceSchedulerName?: string;
|
|
675
|
-
|
|
676
|
-
InferenceSchedulerArn?: string;
|
|
677
|
-
|
|
678
|
-
Status?: InferenceSchedulerStatus | string;
|
|
679
|
-
|
|
680
|
-
DataDelayOffsetInMinutes?: number;
|
|
681
|
-
|
|
682
|
-
DataUploadFrequency?: DataUploadFrequency | string;
|
|
683
|
-
}
|
|
684
|
-
export declare namespace InferenceSchedulerSummary {
|
|
685
|
-
|
|
686
|
-
const filterSensitiveLog: (obj: InferenceSchedulerSummary) => any;
|
|
687
|
-
}
|
|
688
|
-
export interface ListInferenceSchedulersResponse {
|
|
689
|
-
|
|
690
|
-
NextToken?: string;
|
|
691
|
-
|
|
692
|
-
InferenceSchedulerSummaries?: InferenceSchedulerSummary[];
|
|
693
|
-
}
|
|
694
|
-
export declare namespace ListInferenceSchedulersResponse {
|
|
695
|
-
|
|
696
|
-
const filterSensitiveLog: (obj: ListInferenceSchedulersResponse) => any;
|
|
697
|
-
}
|
|
698
|
-
export interface ListModelsRequest {
|
|
699
|
-
|
|
700
|
-
NextToken?: string;
|
|
701
|
-
|
|
702
|
-
MaxResults?: number;
|
|
703
|
-
|
|
704
|
-
Status?: ModelStatus | string;
|
|
705
|
-
|
|
706
|
-
ModelNameBeginsWith?: string;
|
|
707
|
-
|
|
708
|
-
DatasetNameBeginsWith?: string;
|
|
709
|
-
}
|
|
710
|
-
export declare namespace ListModelsRequest {
|
|
711
|
-
|
|
712
|
-
const filterSensitiveLog: (obj: ListModelsRequest) => any;
|
|
713
|
-
}
|
|
714
|
-
|
|
715
|
-
export interface ModelSummary {
|
|
716
|
-
|
|
717
|
-
ModelName?: string;
|
|
718
|
-
|
|
719
|
-
ModelArn?: string;
|
|
720
|
-
|
|
721
|
-
DatasetName?: string;
|
|
722
|
-
|
|
723
|
-
DatasetArn?: string;
|
|
724
|
-
|
|
725
|
-
Status?: ModelStatus | string;
|
|
726
|
-
|
|
727
|
-
CreatedAt?: Date;
|
|
728
|
-
}
|
|
729
|
-
export declare namespace ModelSummary {
|
|
730
|
-
|
|
731
|
-
const filterSensitiveLog: (obj: ModelSummary) => any;
|
|
732
|
-
}
|
|
733
|
-
export interface ListModelsResponse {
|
|
734
|
-
|
|
735
|
-
NextToken?: string;
|
|
736
|
-
|
|
737
|
-
ModelSummaries?: ModelSummary[];
|
|
738
|
-
}
|
|
739
|
-
export declare namespace ListModelsResponse {
|
|
740
|
-
|
|
741
|
-
const filterSensitiveLog: (obj: ListModelsResponse) => any;
|
|
742
|
-
}
|
|
743
|
-
export interface ListTagsForResourceRequest {
|
|
744
|
-
|
|
745
|
-
ResourceArn: string | undefined;
|
|
746
|
-
}
|
|
747
|
-
export declare namespace ListTagsForResourceRequest {
|
|
748
|
-
|
|
749
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
750
|
-
}
|
|
751
|
-
export interface ListTagsForResourceResponse {
|
|
752
|
-
|
|
753
|
-
Tags?: Tag[];
|
|
754
|
-
}
|
|
755
|
-
export declare namespace ListTagsForResourceResponse {
|
|
756
|
-
|
|
757
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
758
|
-
}
|
|
759
|
-
export interface StartDataIngestionJobRequest {
|
|
760
|
-
|
|
761
|
-
DatasetName: string | undefined;
|
|
762
|
-
|
|
763
|
-
IngestionInputConfiguration: IngestionInputConfiguration | undefined;
|
|
764
|
-
|
|
765
|
-
RoleArn: string | undefined;
|
|
766
|
-
|
|
767
|
-
ClientToken?: string;
|
|
768
|
-
}
|
|
769
|
-
export declare namespace StartDataIngestionJobRequest {
|
|
770
|
-
|
|
771
|
-
const filterSensitiveLog: (obj: StartDataIngestionJobRequest) => any;
|
|
772
|
-
}
|
|
773
|
-
export interface StartDataIngestionJobResponse {
|
|
774
|
-
|
|
775
|
-
JobId?: string;
|
|
776
|
-
|
|
777
|
-
Status?: IngestionJobStatus | string;
|
|
778
|
-
}
|
|
779
|
-
export declare namespace StartDataIngestionJobResponse {
|
|
780
|
-
|
|
781
|
-
const filterSensitiveLog: (obj: StartDataIngestionJobResponse) => any;
|
|
782
|
-
}
|
|
783
|
-
export interface StartInferenceSchedulerRequest {
|
|
784
|
-
|
|
785
|
-
InferenceSchedulerName: string | undefined;
|
|
786
|
-
}
|
|
787
|
-
export declare namespace StartInferenceSchedulerRequest {
|
|
788
|
-
|
|
789
|
-
const filterSensitiveLog: (obj: StartInferenceSchedulerRequest) => any;
|
|
790
|
-
}
|
|
791
|
-
export interface StartInferenceSchedulerResponse {
|
|
792
|
-
|
|
793
|
-
ModelArn?: string;
|
|
794
|
-
|
|
795
|
-
ModelName?: string;
|
|
796
|
-
|
|
797
|
-
InferenceSchedulerName?: string;
|
|
798
|
-
|
|
799
|
-
InferenceSchedulerArn?: string;
|
|
800
|
-
|
|
801
|
-
Status?: InferenceSchedulerStatus | string;
|
|
802
|
-
}
|
|
803
|
-
export declare namespace StartInferenceSchedulerResponse {
|
|
804
|
-
|
|
805
|
-
const filterSensitiveLog: (obj: StartInferenceSchedulerResponse) => any;
|
|
806
|
-
}
|
|
807
|
-
export interface StopInferenceSchedulerRequest {
|
|
808
|
-
|
|
809
|
-
InferenceSchedulerName: string | undefined;
|
|
810
|
-
}
|
|
811
|
-
export declare namespace StopInferenceSchedulerRequest {
|
|
812
|
-
|
|
813
|
-
const filterSensitiveLog: (obj: StopInferenceSchedulerRequest) => any;
|
|
814
|
-
}
|
|
815
|
-
export interface StopInferenceSchedulerResponse {
|
|
816
|
-
|
|
817
|
-
ModelArn?: string;
|
|
818
|
-
|
|
819
|
-
ModelName?: string;
|
|
820
|
-
|
|
821
|
-
InferenceSchedulerName?: string;
|
|
822
|
-
|
|
823
|
-
InferenceSchedulerArn?: string;
|
|
824
|
-
|
|
825
|
-
Status?: InferenceSchedulerStatus | string;
|
|
826
|
-
}
|
|
827
|
-
export declare namespace StopInferenceSchedulerResponse {
|
|
828
|
-
|
|
829
|
-
const filterSensitiveLog: (obj: StopInferenceSchedulerResponse) => any;
|
|
830
|
-
}
|
|
831
|
-
export interface TagResourceRequest {
|
|
832
|
-
|
|
833
|
-
ResourceArn: string | undefined;
|
|
834
|
-
|
|
835
|
-
Tags: Tag[] | undefined;
|
|
836
|
-
}
|
|
837
|
-
export declare namespace TagResourceRequest {
|
|
838
|
-
|
|
839
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
840
|
-
}
|
|
841
|
-
export interface TagResourceResponse {
|
|
842
|
-
}
|
|
843
|
-
export declare namespace TagResourceResponse {
|
|
844
|
-
|
|
845
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
846
|
-
}
|
|
847
|
-
export interface UntagResourceRequest {
|
|
848
|
-
|
|
849
|
-
ResourceArn: string | undefined;
|
|
850
|
-
|
|
851
|
-
TagKeys: string[] | undefined;
|
|
852
|
-
}
|
|
853
|
-
export declare namespace UntagResourceRequest {
|
|
854
|
-
|
|
855
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
856
|
-
}
|
|
857
|
-
export interface UntagResourceResponse {
|
|
858
|
-
}
|
|
859
|
-
export declare namespace UntagResourceResponse {
|
|
860
|
-
|
|
861
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
862
|
-
}
|
|
863
|
-
export interface UpdateInferenceSchedulerRequest {
|
|
864
|
-
|
|
865
|
-
InferenceSchedulerName: string | undefined;
|
|
866
|
-
|
|
867
|
-
DataDelayOffsetInMinutes?: number;
|
|
868
|
-
|
|
869
|
-
DataUploadFrequency?: DataUploadFrequency | string;
|
|
870
|
-
|
|
871
|
-
DataInputConfiguration?: InferenceInputConfiguration;
|
|
872
|
-
|
|
873
|
-
DataOutputConfiguration?: InferenceOutputConfiguration;
|
|
874
|
-
|
|
875
|
-
RoleArn?: string;
|
|
876
|
-
}
|
|
877
|
-
export declare namespace UpdateInferenceSchedulerRequest {
|
|
878
|
-
|
|
879
|
-
const filterSensitiveLog: (obj: UpdateInferenceSchedulerRequest) => any;
|
|
880
|
-
}
|