@aws-sdk/client-machine-learning 3.428.0 → 3.429.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.
|
@@ -48,7 +48,7 @@ export interface AddTagsInput {
|
|
|
48
48
|
* @public
|
|
49
49
|
* <p>The type of the ML object to tag.</p>
|
|
50
50
|
*/
|
|
51
|
-
ResourceType: TaggableResourceType |
|
|
51
|
+
ResourceType: TaggableResourceType | undefined;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* @public
|
|
@@ -64,7 +64,7 @@ export interface AddTagsOutput {
|
|
|
64
64
|
* @public
|
|
65
65
|
* <p>The type of the ML object that was tagged.</p>
|
|
66
66
|
*/
|
|
67
|
-
ResourceType?: TaggableResourceType
|
|
67
|
+
ResourceType?: TaggableResourceType;
|
|
68
68
|
}
|
|
69
69
|
/**
|
|
70
70
|
* @public
|
|
@@ -1046,7 +1046,7 @@ export interface CreateMLModelInput {
|
|
|
1046
1046
|
* </ul>
|
|
1047
1047
|
* <p> For more information, see the <a href="https://docs.aws.amazon.com/machine-learning/latest/dg">Amazon Machine Learning Developer Guide</a>.</p>
|
|
1048
1048
|
*/
|
|
1049
|
-
MLModelType: MLModelType |
|
|
1049
|
+
MLModelType: MLModelType | undefined;
|
|
1050
1050
|
/**
|
|
1051
1051
|
* @public
|
|
1052
1052
|
* <p>A list of the training parameters in the <code>MLModel</code>. The list is implemented as
|
|
@@ -1193,7 +1193,7 @@ export interface RealtimeEndpointInfo {
|
|
|
1193
1193
|
* </li>
|
|
1194
1194
|
* </ul>
|
|
1195
1195
|
*/
|
|
1196
|
-
EndpointStatus?: RealtimeEndpointStatus
|
|
1196
|
+
EndpointStatus?: RealtimeEndpointStatus;
|
|
1197
1197
|
}
|
|
1198
1198
|
/**
|
|
1199
1199
|
* @public
|
|
@@ -1353,7 +1353,7 @@ export interface DeleteTagsInput {
|
|
|
1353
1353
|
* @public
|
|
1354
1354
|
* <p>The type of the tagged ML object.</p>
|
|
1355
1355
|
*/
|
|
1356
|
-
ResourceType: TaggableResourceType |
|
|
1356
|
+
ResourceType: TaggableResourceType | undefined;
|
|
1357
1357
|
}
|
|
1358
1358
|
/**
|
|
1359
1359
|
* @public
|
|
@@ -1369,7 +1369,7 @@ export interface DeleteTagsOutput {
|
|
|
1369
1369
|
* @public
|
|
1370
1370
|
* <p>The type of the ML object from which tags were deleted.</p>
|
|
1371
1371
|
*/
|
|
1372
|
-
ResourceType?: TaggableResourceType
|
|
1372
|
+
ResourceType?: TaggableResourceType;
|
|
1373
1373
|
}
|
|
1374
1374
|
/**
|
|
1375
1375
|
* @public
|
|
@@ -1441,7 +1441,7 @@ export interface DescribeBatchPredictionsInput {
|
|
|
1441
1441
|
* </li>
|
|
1442
1442
|
* </ul>
|
|
1443
1443
|
*/
|
|
1444
|
-
FilterVariable?: BatchPredictionFilterVariable
|
|
1444
|
+
FilterVariable?: BatchPredictionFilterVariable;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* @public
|
|
1447
1447
|
* <p>The equal to operator. The <code>BatchPrediction</code> results will have
|
|
@@ -1513,7 +1513,7 @@ export interface DescribeBatchPredictionsInput {
|
|
|
1513
1513
|
* </ul>
|
|
1514
1514
|
* <p>Results are sorted by <code>FilterVariable</code>.</p>
|
|
1515
1515
|
*/
|
|
1516
|
-
SortOrder?: SortOrder
|
|
1516
|
+
SortOrder?: SortOrder;
|
|
1517
1517
|
/**
|
|
1518
1518
|
* @public
|
|
1519
1519
|
* <p>An ID of the page in the paginated results.</p>
|
|
@@ -1615,7 +1615,7 @@ export interface BatchPrediction {
|
|
|
1615
1615
|
* </li>
|
|
1616
1616
|
* </ul>
|
|
1617
1617
|
*/
|
|
1618
|
-
Status?: EntityStatus
|
|
1618
|
+
Status?: EntityStatus;
|
|
1619
1619
|
/**
|
|
1620
1620
|
* @public
|
|
1621
1621
|
* <p>The location of an Amazon S3 bucket or directory to receive the operation results. The following substrings are not allowed in the <code>s3 key</code> portion of the <code>outputURI</code> field: ':', '//', '/./', '/../'.</p>
|
|
@@ -1716,7 +1716,7 @@ export interface DescribeDataSourcesInput {
|
|
|
1716
1716
|
* </li>
|
|
1717
1717
|
* </ul>
|
|
1718
1718
|
*/
|
|
1719
|
-
FilterVariable?: DataSourceFilterVariable
|
|
1719
|
+
FilterVariable?: DataSourceFilterVariable;
|
|
1720
1720
|
/**
|
|
1721
1721
|
* @public
|
|
1722
1722
|
* <p>The equal to operator. The <code>DataSource</code> results will have
|
|
@@ -1788,7 +1788,7 @@ export interface DescribeDataSourcesInput {
|
|
|
1788
1788
|
* </ul>
|
|
1789
1789
|
* <p>Results are sorted by <code>FilterVariable</code>.</p>
|
|
1790
1790
|
*/
|
|
1791
|
-
SortOrder?: SortOrder
|
|
1791
|
+
SortOrder?: SortOrder;
|
|
1792
1792
|
/**
|
|
1793
1793
|
* @public
|
|
1794
1794
|
* <p>The ID of the page in the paginated results.</p>
|
|
@@ -1933,7 +1933,7 @@ export interface DataSource {
|
|
|
1933
1933
|
* </li>
|
|
1934
1934
|
* </ul>
|
|
1935
1935
|
*/
|
|
1936
|
-
Status?: EntityStatus
|
|
1936
|
+
Status?: EntityStatus;
|
|
1937
1937
|
/**
|
|
1938
1938
|
* @public
|
|
1939
1939
|
* <p>A description of the most recent details about creating the <code>DataSource</code>.</p>
|
|
@@ -2052,7 +2052,7 @@ export interface DescribeEvaluationsInput {
|
|
|
2052
2052
|
* </li>
|
|
2053
2053
|
* </ul>
|
|
2054
2054
|
*/
|
|
2055
|
-
FilterVariable?: EvaluationFilterVariable
|
|
2055
|
+
FilterVariable?: EvaluationFilterVariable;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* @public
|
|
2058
2058
|
* <p>The equal to operator. The <code>Evaluation</code> results will have
|
|
@@ -2124,7 +2124,7 @@ export interface DescribeEvaluationsInput {
|
|
|
2124
2124
|
* </ul>
|
|
2125
2125
|
* <p>Results are sorted by <code>FilterVariable</code>.</p>
|
|
2126
2126
|
*/
|
|
2127
|
-
SortOrder?: SortOrder
|
|
2127
|
+
SortOrder?: SortOrder;
|
|
2128
2128
|
/**
|
|
2129
2129
|
* @public
|
|
2130
2130
|
* <p>The ID of the page in the paginated results.</p>
|
|
@@ -2231,7 +2231,7 @@ export interface Evaluation {
|
|
|
2231
2231
|
* </li>
|
|
2232
2232
|
* </ul>
|
|
2233
2233
|
*/
|
|
2234
|
-
Status?: EntityStatus
|
|
2234
|
+
Status?: EntityStatus;
|
|
2235
2235
|
/**
|
|
2236
2236
|
* @public
|
|
2237
2237
|
* <p>Measurements of how well the <code>MLModel</code> performed, using observations referenced
|
|
@@ -2359,7 +2359,7 @@ export interface DescribeMLModelsInput {
|
|
|
2359
2359
|
* </li>
|
|
2360
2360
|
* </ul>
|
|
2361
2361
|
*/
|
|
2362
|
-
FilterVariable?: MLModelFilterVariable
|
|
2362
|
+
FilterVariable?: MLModelFilterVariable;
|
|
2363
2363
|
/**
|
|
2364
2364
|
* @public
|
|
2365
2365
|
* <p>The equal to operator. The <code>MLModel</code> results will have
|
|
@@ -2431,7 +2431,7 @@ export interface DescribeMLModelsInput {
|
|
|
2431
2431
|
* </ul>
|
|
2432
2432
|
* <p>Results are sorted by <code>FilterVariable</code>.</p>
|
|
2433
2433
|
*/
|
|
2434
|
-
SortOrder?: SortOrder
|
|
2434
|
+
SortOrder?: SortOrder;
|
|
2435
2435
|
/**
|
|
2436
2436
|
* @public
|
|
2437
2437
|
* <p>The ID of the page in the paginated results.</p>
|
|
@@ -2507,7 +2507,7 @@ export interface MLModel {
|
|
|
2507
2507
|
* </li>
|
|
2508
2508
|
* </ul>
|
|
2509
2509
|
*/
|
|
2510
|
-
Status?: EntityStatus
|
|
2510
|
+
Status?: EntityStatus;
|
|
2511
2511
|
/**
|
|
2512
2512
|
* @public
|
|
2513
2513
|
* <p>Long integer type that is a 64-bit signed number.</p>
|
|
@@ -2582,7 +2582,7 @@ export interface MLModel {
|
|
|
2582
2582
|
* </li>
|
|
2583
2583
|
* </ul>
|
|
2584
2584
|
*/
|
|
2585
|
-
Algorithm?: Algorithm
|
|
2585
|
+
Algorithm?: Algorithm;
|
|
2586
2586
|
/**
|
|
2587
2587
|
* @public
|
|
2588
2588
|
* <p>Identifies the <code>MLModel</code> category. The following are the available types:</p>
|
|
@@ -2604,7 +2604,7 @@ export interface MLModel {
|
|
|
2604
2604
|
* </li>
|
|
2605
2605
|
* </ul>
|
|
2606
2606
|
*/
|
|
2607
|
-
MLModelType?: MLModelType
|
|
2607
|
+
MLModelType?: MLModelType;
|
|
2608
2608
|
ScoreThreshold?: number;
|
|
2609
2609
|
/**
|
|
2610
2610
|
* @public
|
|
@@ -2661,7 +2661,7 @@ export interface DescribeTagsInput {
|
|
|
2661
2661
|
* @public
|
|
2662
2662
|
* <p>The type of the ML object.</p>
|
|
2663
2663
|
*/
|
|
2664
|
-
ResourceType: TaggableResourceType |
|
|
2664
|
+
ResourceType: TaggableResourceType | undefined;
|
|
2665
2665
|
}
|
|
2666
2666
|
/**
|
|
2667
2667
|
* @public
|
|
@@ -2677,7 +2677,7 @@ export interface DescribeTagsOutput {
|
|
|
2677
2677
|
* @public
|
|
2678
2678
|
* <p>The type of the tagged ML object.</p>
|
|
2679
2679
|
*/
|
|
2680
|
-
ResourceType?: TaggableResourceType
|
|
2680
|
+
ResourceType?: TaggableResourceType;
|
|
2681
2681
|
/**
|
|
2682
2682
|
* @public
|
|
2683
2683
|
* <p>A list of tags associated with the ML object.</p>
|
|
@@ -2767,7 +2767,7 @@ export interface GetBatchPredictionOutput {
|
|
|
2767
2767
|
* </li>
|
|
2768
2768
|
* </ul>
|
|
2769
2769
|
*/
|
|
2770
|
-
Status?: EntityStatus
|
|
2770
|
+
Status?: EntityStatus;
|
|
2771
2771
|
/**
|
|
2772
2772
|
* @public
|
|
2773
2773
|
* <p>The location of an Amazon S3 bucket or directory to receive the operation results.</p>
|
|
@@ -2903,7 +2903,7 @@ export interface GetDataSourceOutput {
|
|
|
2903
2903
|
* </li>
|
|
2904
2904
|
* </ul>
|
|
2905
2905
|
*/
|
|
2906
|
-
Status?: EntityStatus
|
|
2906
|
+
Status?: EntityStatus;
|
|
2907
2907
|
/**
|
|
2908
2908
|
* @public
|
|
2909
2909
|
* <p>A link to the file containing logs of <code>CreateDataSourceFrom*</code> operations.</p>
|
|
@@ -3040,7 +3040,7 @@ export interface GetEvaluationOutput {
|
|
|
3040
3040
|
* </li>
|
|
3041
3041
|
* </ul>
|
|
3042
3042
|
*/
|
|
3043
|
-
Status?: EntityStatus
|
|
3043
|
+
Status?: EntityStatus;
|
|
3044
3044
|
/**
|
|
3045
3045
|
* @public
|
|
3046
3046
|
* <p>Measurements of how well the <code>MLModel</code> performed using observations referenced by the <code>DataSource</code>. One of the following metric is returned based on the type of the <code>MLModel</code>:
|
|
@@ -3168,7 +3168,7 @@ export interface GetMLModelOutput {
|
|
|
3168
3168
|
* </li>
|
|
3169
3169
|
* </ul>
|
|
3170
3170
|
*/
|
|
3171
|
-
Status?: EntityStatus
|
|
3171
|
+
Status?: EntityStatus;
|
|
3172
3172
|
/**
|
|
3173
3173
|
* @public
|
|
3174
3174
|
* <p>Long integer type that is a 64-bit signed number.</p>
|
|
@@ -3249,7 +3249,7 @@ export interface GetMLModelOutput {
|
|
|
3249
3249
|
* </li>
|
|
3250
3250
|
* </ul>
|
|
3251
3251
|
*/
|
|
3252
|
-
MLModelType?: MLModelType
|
|
3252
|
+
MLModelType?: MLModelType;
|
|
3253
3253
|
/**
|
|
3254
3254
|
* @public
|
|
3255
3255
|
* <p>The scoring threshold is used in binary classification <code>MLModel</code>
|
|
@@ -3413,7 +3413,7 @@ export interface Prediction {
|
|
|
3413
3413
|
* @public
|
|
3414
3414
|
* <p>Provides any additional details regarding the prediction.</p>
|
|
3415
3415
|
*/
|
|
3416
|
-
details?: Record<
|
|
3416
|
+
details?: Record<DetailsAttributes, string>;
|
|
3417
3417
|
}
|
|
3418
3418
|
/**
|
|
3419
3419
|
* @public
|
|
@@ -15,11 +15,11 @@ export interface Tag {
|
|
|
15
15
|
export interface AddTagsInput {
|
|
16
16
|
Tags: Tag[] | undefined;
|
|
17
17
|
ResourceId: string | undefined;
|
|
18
|
-
ResourceType: TaggableResourceType |
|
|
18
|
+
ResourceType: TaggableResourceType | undefined;
|
|
19
19
|
}
|
|
20
20
|
export interface AddTagsOutput {
|
|
21
21
|
ResourceId?: string;
|
|
22
|
-
ResourceType?: TaggableResourceType
|
|
22
|
+
ResourceType?: TaggableResourceType;
|
|
23
23
|
}
|
|
24
24
|
export declare class InternalServerException extends __BaseException {
|
|
25
25
|
readonly name: "InternalServerException";
|
|
@@ -175,7 +175,7 @@ export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
|
175
175
|
export interface CreateMLModelInput {
|
|
176
176
|
MLModelId: string | undefined;
|
|
177
177
|
MLModelName?: string;
|
|
178
|
-
MLModelType: MLModelType |
|
|
178
|
+
MLModelType: MLModelType | undefined;
|
|
179
179
|
Parameters?: Record<string, string>;
|
|
180
180
|
TrainingDataSourceId: string | undefined;
|
|
181
181
|
Recipe?: string;
|
|
@@ -199,7 +199,7 @@ export interface RealtimeEndpointInfo {
|
|
|
199
199
|
PeakRequestsPerSecond?: number;
|
|
200
200
|
CreatedAt?: Date;
|
|
201
201
|
EndpointUrl?: string;
|
|
202
|
-
EndpointStatus?: RealtimeEndpointStatus
|
|
202
|
+
EndpointStatus?: RealtimeEndpointStatus;
|
|
203
203
|
}
|
|
204
204
|
export interface CreateRealtimeEndpointOutput {
|
|
205
205
|
MLModelId?: string;
|
|
@@ -239,11 +239,11 @@ export interface DeleteRealtimeEndpointOutput {
|
|
|
239
239
|
export interface DeleteTagsInput {
|
|
240
240
|
TagKeys: string[] | undefined;
|
|
241
241
|
ResourceId: string | undefined;
|
|
242
|
-
ResourceType: TaggableResourceType |
|
|
242
|
+
ResourceType: TaggableResourceType | undefined;
|
|
243
243
|
}
|
|
244
244
|
export interface DeleteTagsOutput {
|
|
245
245
|
ResourceId?: string;
|
|
246
|
-
ResourceType?: TaggableResourceType
|
|
246
|
+
ResourceType?: TaggableResourceType;
|
|
247
247
|
}
|
|
248
248
|
export declare const BatchPredictionFilterVariable: {
|
|
249
249
|
readonly CREATED_AT: "CreatedAt";
|
|
@@ -263,7 +263,7 @@ export declare const SortOrder: {
|
|
|
263
263
|
};
|
|
264
264
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
265
265
|
export interface DescribeBatchPredictionsInput {
|
|
266
|
-
FilterVariable?: BatchPredictionFilterVariable
|
|
266
|
+
FilterVariable?: BatchPredictionFilterVariable;
|
|
267
267
|
EQ?: string;
|
|
268
268
|
GT?: string;
|
|
269
269
|
LT?: string;
|
|
@@ -271,7 +271,7 @@ export interface DescribeBatchPredictionsInput {
|
|
|
271
271
|
LE?: string;
|
|
272
272
|
NE?: string;
|
|
273
273
|
Prefix?: string;
|
|
274
|
-
SortOrder?: SortOrder
|
|
274
|
+
SortOrder?: SortOrder;
|
|
275
275
|
NextToken?: string;
|
|
276
276
|
Limit?: number;
|
|
277
277
|
}
|
|
@@ -292,7 +292,7 @@ export interface BatchPrediction {
|
|
|
292
292
|
CreatedAt?: Date;
|
|
293
293
|
LastUpdatedAt?: Date;
|
|
294
294
|
Name?: string;
|
|
295
|
-
Status?: EntityStatus
|
|
295
|
+
Status?: EntityStatus;
|
|
296
296
|
OutputUri?: string;
|
|
297
297
|
Message?: string;
|
|
298
298
|
ComputeTime?: number;
|
|
@@ -316,7 +316,7 @@ export declare const DataSourceFilterVariable: {
|
|
|
316
316
|
export type DataSourceFilterVariable =
|
|
317
317
|
(typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
318
318
|
export interface DescribeDataSourcesInput {
|
|
319
|
-
FilterVariable?: DataSourceFilterVariable
|
|
319
|
+
FilterVariable?: DataSourceFilterVariable;
|
|
320
320
|
EQ?: string;
|
|
321
321
|
GT?: string;
|
|
322
322
|
LT?: string;
|
|
@@ -324,7 +324,7 @@ export interface DescribeDataSourcesInput {
|
|
|
324
324
|
LE?: string;
|
|
325
325
|
NE?: string;
|
|
326
326
|
Prefix?: string;
|
|
327
|
-
SortOrder?: SortOrder
|
|
327
|
+
SortOrder?: SortOrder;
|
|
328
328
|
NextToken?: string;
|
|
329
329
|
Limit?: number;
|
|
330
330
|
}
|
|
@@ -351,7 +351,7 @@ export interface DataSource {
|
|
|
351
351
|
DataSizeInBytes?: number;
|
|
352
352
|
NumberOfFiles?: number;
|
|
353
353
|
Name?: string;
|
|
354
|
-
Status?: EntityStatus
|
|
354
|
+
Status?: EntityStatus;
|
|
355
355
|
Message?: string;
|
|
356
356
|
RedshiftMetadata?: RedshiftMetadata;
|
|
357
357
|
RDSMetadata?: RDSMetadata;
|
|
@@ -378,7 +378,7 @@ export declare const EvaluationFilterVariable: {
|
|
|
378
378
|
export type EvaluationFilterVariable =
|
|
379
379
|
(typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
380
380
|
export interface DescribeEvaluationsInput {
|
|
381
|
-
FilterVariable?: EvaluationFilterVariable
|
|
381
|
+
FilterVariable?: EvaluationFilterVariable;
|
|
382
382
|
EQ?: string;
|
|
383
383
|
GT?: string;
|
|
384
384
|
LT?: string;
|
|
@@ -386,7 +386,7 @@ export interface DescribeEvaluationsInput {
|
|
|
386
386
|
LE?: string;
|
|
387
387
|
NE?: string;
|
|
388
388
|
Prefix?: string;
|
|
389
|
-
SortOrder?: SortOrder
|
|
389
|
+
SortOrder?: SortOrder;
|
|
390
390
|
NextToken?: string;
|
|
391
391
|
Limit?: number;
|
|
392
392
|
}
|
|
@@ -402,7 +402,7 @@ export interface Evaluation {
|
|
|
402
402
|
CreatedAt?: Date;
|
|
403
403
|
LastUpdatedAt?: Date;
|
|
404
404
|
Name?: string;
|
|
405
|
-
Status?: EntityStatus
|
|
405
|
+
Status?: EntityStatus;
|
|
406
406
|
PerformanceMetrics?: PerformanceMetrics;
|
|
407
407
|
Message?: string;
|
|
408
408
|
ComputeTime?: number;
|
|
@@ -428,7 +428,7 @@ export declare const MLModelFilterVariable: {
|
|
|
428
428
|
export type MLModelFilterVariable =
|
|
429
429
|
(typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
430
430
|
export interface DescribeMLModelsInput {
|
|
431
|
-
FilterVariable?: MLModelFilterVariable
|
|
431
|
+
FilterVariable?: MLModelFilterVariable;
|
|
432
432
|
EQ?: string;
|
|
433
433
|
GT?: string;
|
|
434
434
|
LT?: string;
|
|
@@ -436,7 +436,7 @@ export interface DescribeMLModelsInput {
|
|
|
436
436
|
LE?: string;
|
|
437
437
|
NE?: string;
|
|
438
438
|
Prefix?: string;
|
|
439
|
-
SortOrder?: SortOrder
|
|
439
|
+
SortOrder?: SortOrder;
|
|
440
440
|
NextToken?: string;
|
|
441
441
|
Limit?: number;
|
|
442
442
|
}
|
|
@@ -447,13 +447,13 @@ export interface MLModel {
|
|
|
447
447
|
CreatedAt?: Date;
|
|
448
448
|
LastUpdatedAt?: Date;
|
|
449
449
|
Name?: string;
|
|
450
|
-
Status?: EntityStatus
|
|
450
|
+
Status?: EntityStatus;
|
|
451
451
|
SizeInBytes?: number;
|
|
452
452
|
EndpointInfo?: RealtimeEndpointInfo;
|
|
453
453
|
TrainingParameters?: Record<string, string>;
|
|
454
454
|
InputDataLocationS3?: string;
|
|
455
|
-
Algorithm?: Algorithm
|
|
456
|
-
MLModelType?: MLModelType
|
|
455
|
+
Algorithm?: Algorithm;
|
|
456
|
+
MLModelType?: MLModelType;
|
|
457
457
|
ScoreThreshold?: number;
|
|
458
458
|
ScoreThresholdLastUpdatedAt?: Date;
|
|
459
459
|
Message?: string;
|
|
@@ -467,11 +467,11 @@ export interface DescribeMLModelsOutput {
|
|
|
467
467
|
}
|
|
468
468
|
export interface DescribeTagsInput {
|
|
469
469
|
ResourceId: string | undefined;
|
|
470
|
-
ResourceType: TaggableResourceType |
|
|
470
|
+
ResourceType: TaggableResourceType | undefined;
|
|
471
471
|
}
|
|
472
472
|
export interface DescribeTagsOutput {
|
|
473
473
|
ResourceId?: string;
|
|
474
|
-
ResourceType?: TaggableResourceType
|
|
474
|
+
ResourceType?: TaggableResourceType;
|
|
475
475
|
Tags?: Tag[];
|
|
476
476
|
}
|
|
477
477
|
export interface GetBatchPredictionInput {
|
|
@@ -486,7 +486,7 @@ export interface GetBatchPredictionOutput {
|
|
|
486
486
|
CreatedAt?: Date;
|
|
487
487
|
LastUpdatedAt?: Date;
|
|
488
488
|
Name?: string;
|
|
489
|
-
Status?: EntityStatus
|
|
489
|
+
Status?: EntityStatus;
|
|
490
490
|
OutputUri?: string;
|
|
491
491
|
LogUri?: string;
|
|
492
492
|
Message?: string;
|
|
@@ -510,7 +510,7 @@ export interface GetDataSourceOutput {
|
|
|
510
510
|
DataSizeInBytes?: number;
|
|
511
511
|
NumberOfFiles?: number;
|
|
512
512
|
Name?: string;
|
|
513
|
-
Status?: EntityStatus
|
|
513
|
+
Status?: EntityStatus;
|
|
514
514
|
LogUri?: string;
|
|
515
515
|
Message?: string;
|
|
516
516
|
RedshiftMetadata?: RedshiftMetadata;
|
|
@@ -534,7 +534,7 @@ export interface GetEvaluationOutput {
|
|
|
534
534
|
CreatedAt?: Date;
|
|
535
535
|
LastUpdatedAt?: Date;
|
|
536
536
|
Name?: string;
|
|
537
|
-
Status?: EntityStatus
|
|
537
|
+
Status?: EntityStatus;
|
|
538
538
|
PerformanceMetrics?: PerformanceMetrics;
|
|
539
539
|
LogUri?: string;
|
|
540
540
|
Message?: string;
|
|
@@ -553,12 +553,12 @@ export interface GetMLModelOutput {
|
|
|
553
553
|
CreatedAt?: Date;
|
|
554
554
|
LastUpdatedAt?: Date;
|
|
555
555
|
Name?: string;
|
|
556
|
-
Status?: EntityStatus
|
|
556
|
+
Status?: EntityStatus;
|
|
557
557
|
SizeInBytes?: number;
|
|
558
558
|
EndpointInfo?: RealtimeEndpointInfo;
|
|
559
559
|
TrainingParameters?: Record<string, string>;
|
|
560
560
|
InputDataLocationS3?: string;
|
|
561
|
-
MLModelType?: MLModelType
|
|
561
|
+
MLModelType?: MLModelType;
|
|
562
562
|
ScoreThreshold?: number;
|
|
563
563
|
ScoreThresholdLastUpdatedAt?: Date;
|
|
564
564
|
LogUri?: string;
|
|
@@ -599,7 +599,7 @@ export interface Prediction {
|
|
|
599
599
|
predictedLabel?: string;
|
|
600
600
|
predictedValue?: number;
|
|
601
601
|
predictedScores?: Record<string, number>;
|
|
602
|
-
details?: Record<
|
|
602
|
+
details?: Record<DetailsAttributes, string>;
|
|
603
603
|
}
|
|
604
604
|
export interface PredictOutput {
|
|
605
605
|
Prediction?: Prediction;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-sdk-machinelearning": "3.428.0",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@smithy/hash-node": "^2.0.11",
|
|
40
40
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
41
41
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
42
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
43
43
|
"@smithy/middleware-retry": "^2.0.16",
|
|
44
44
|
"@smithy/middleware-serde": "^2.0.11",
|
|
45
45
|
"@smithy/middleware-stack": "^2.0.5",
|