@aws-sdk/client-machine-learning 3.300.0 → 3.303.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.
Files changed (33) hide show
  1. package/dist-cjs/models/models_0.js +75 -86
  2. package/dist-es/models/models_0.js +75 -86
  3. package/dist-types/commands/AddTagsCommand.d.ts +3 -3
  4. package/dist-types/commands/CreateBatchPredictionCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +5 -5
  6. package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +4 -4
  7. package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +2 -2
  8. package/dist-types/commands/CreateEvaluationCommand.d.ts +1 -1
  9. package/dist-types/commands/CreateMLModelCommand.d.ts +2 -2
  10. package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +1 -1
  11. package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +1 -1
  12. package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
  13. package/dist-types/commands/DeleteEvaluationCommand.d.ts +1 -1
  14. package/dist-types/commands/DeleteMLModelCommand.d.ts +1 -1
  15. package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +1 -1
  16. package/dist-types/commands/DeleteTagsCommand.d.ts +2 -2
  17. package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +1 -1
  18. package/dist-types/commands/DescribeDataSourcesCommand.d.ts +1 -1
  19. package/dist-types/commands/DescribeEvaluationsCommand.d.ts +1 -1
  20. package/dist-types/commands/DescribeMLModelsCommand.d.ts +1 -1
  21. package/dist-types/commands/DescribeTagsCommand.d.ts +1 -1
  22. package/dist-types/commands/GetBatchPredictionCommand.d.ts +1 -1
  23. package/dist-types/commands/GetDataSourceCommand.d.ts +1 -1
  24. package/dist-types/commands/GetEvaluationCommand.d.ts +1 -1
  25. package/dist-types/commands/GetMLModelCommand.d.ts +1 -1
  26. package/dist-types/commands/PredictCommand.d.ts +2 -2
  27. package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +1 -1
  28. package/dist-types/commands/UpdateDataSourceCommand.d.ts +1 -1
  29. package/dist-types/commands/UpdateEvaluationCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateMLModelCommand.d.ts +1 -1
  31. package/dist-types/models/models_0.d.ts +130 -75
  32. package/dist-types/ts3.4/models/models_0.d.ts +93 -75
  33. package/package.json +36 -36
@@ -27,7 +27,7 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
27
27
  * import { MachineLearningClient, GetBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, GetBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // GetBatchPredictionInput
31
31
  * BatchPredictionId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetBatchPredictionCommand(input);
@@ -29,7 +29,7 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
29
29
  * import { MachineLearningClient, GetDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
30
30
  * // const { MachineLearningClient, GetDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
31
31
  * const client = new MachineLearningClient(config);
32
- * const input = {
32
+ * const input = { // GetDataSourceInput
33
33
  * DataSourceId: "STRING_VALUE", // required
34
34
  * Verbose: true || false,
35
35
  * };
@@ -26,7 +26,7 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
26
26
  * import { MachineLearningClient, GetEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
27
27
  * // const { MachineLearningClient, GetEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
28
28
  * const client = new MachineLearningClient(config);
29
- * const input = {
29
+ * const input = { // GetEvaluationInput
30
30
  * EvaluationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetEvaluationCommand(input);
@@ -28,7 +28,7 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
28
28
  * import { MachineLearningClient, GetMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
29
29
  * // const { MachineLearningClient, GetMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
30
30
  * const client = new MachineLearningClient(config);
31
- * const input = {
31
+ * const input = { // GetMLModelInput
32
32
  * MLModelId: "STRING_VALUE", // required
33
33
  * Verbose: true || false,
34
34
  * };
@@ -29,9 +29,9 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
29
29
  * import { MachineLearningClient, PredictCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
30
30
  * // const { MachineLearningClient, PredictCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
31
31
  * const client = new MachineLearningClient(config);
32
- * const input = {
32
+ * const input = { // PredictInput
33
33
  * MLModelId: "STRING_VALUE", // required
34
- * Record: { // required
34
+ * Record: { // Record // required
35
35
  * "<keys>": "STRING_VALUE",
36
36
  * },
37
37
  * PredictEndpoint: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
27
27
  * import { MachineLearningClient, UpdateBatchPredictionCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateBatchPredictionCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateBatchPredictionInput
31
31
  * BatchPredictionId: "STRING_VALUE", // required
32
32
  * BatchPredictionName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
27
27
  * import { MachineLearningClient, UpdateDataSourceCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateDataSourceCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateDataSourceInput
31
31
  * DataSourceId: "STRING_VALUE", // required
32
32
  * DataSourceName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
27
27
  * import { MachineLearningClient, UpdateEvaluationCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateEvaluationCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateEvaluationInput
31
31
  * EvaluationId: "STRING_VALUE", // required
32
32
  * EvaluationName: "STRING_VALUE", // required
33
33
  * };
@@ -27,7 +27,7 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad
27
27
  * import { MachineLearningClient, UpdateMLModelCommand } from "@aws-sdk/client-machine-learning"; // ES Modules import
28
28
  * // const { MachineLearningClient, UpdateMLModelCommand } = require("@aws-sdk/client-machine-learning"); // CommonJS import
29
29
  * const client = new MachineLearningClient(config);
30
- * const input = {
30
+ * const input = { // UpdateMLModelInput
31
31
  * MLModelId: "STRING_VALUE", // required
32
32
  * MLModelName: "STRING_VALUE",
33
33
  * ScoreThreshold: Number("float"),
@@ -2,13 +2,18 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum TaggableResourceType {
7
- BATCH_PREDICTION = "BatchPrediction",
8
- DATASOURCE = "DataSource",
9
- EVALUATION = "Evaluation",
10
- ML_MODEL = "MLModel"
11
- }
7
+ export declare const TaggableResourceType: {
8
+ readonly BATCH_PREDICTION: "BatchPrediction";
9
+ readonly DATASOURCE: "DataSource";
10
+ readonly EVALUATION: "Evaluation";
11
+ readonly ML_MODEL: "MLModel";
12
+ };
13
+ /**
14
+ * @public
15
+ */
16
+ export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
12
17
  /**
13
18
  * @public
14
19
  * <p>A custom key-value pair associated with an ML object, such as an ML model.</p>
@@ -117,10 +122,15 @@ export declare class TagLimitExceededException extends __BaseException {
117
122
  }
118
123
  /**
119
124
  * @public
125
+ * @enum
120
126
  */
121
- export declare enum Algorithm {
122
- SGD = "sgd"
123
- }
127
+ export declare const Algorithm: {
128
+ readonly SGD: "sgd";
129
+ };
130
+ /**
131
+ * @public
132
+ */
133
+ export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
124
134
  /**
125
135
  * @public
126
136
  */
@@ -930,12 +940,17 @@ export interface CreateEvaluationOutput {
930
940
  }
931
941
  /**
932
942
  * @public
943
+ * @enum
933
944
  */
934
- export declare enum MLModelType {
935
- BINARY = "BINARY",
936
- MULTICLASS = "MULTICLASS",
937
- REGRESSION = "REGRESSION"
938
- }
945
+ export declare const MLModelType: {
946
+ readonly BINARY: "BINARY";
947
+ readonly MULTICLASS: "MULTICLASS";
948
+ readonly REGRESSION: "REGRESSION";
949
+ };
950
+ /**
951
+ * @public
952
+ */
953
+ export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
939
954
  /**
940
955
  * @public
941
956
  */
@@ -1052,13 +1067,18 @@ export interface CreateRealtimeEndpointInput {
1052
1067
  }
1053
1068
  /**
1054
1069
  * @public
1070
+ * @enum
1055
1071
  */
1056
- export declare enum RealtimeEndpointStatus {
1057
- FAILED = "FAILED",
1058
- NONE = "NONE",
1059
- READY = "READY",
1060
- UPDATING = "UPDATING"
1061
- }
1072
+ export declare const RealtimeEndpointStatus: {
1073
+ readonly FAILED: "FAILED";
1074
+ readonly NONE: "NONE";
1075
+ readonly READY: "READY";
1076
+ readonly UPDATING: "UPDATING";
1077
+ };
1078
+ /**
1079
+ * @public
1080
+ */
1081
+ export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
1062
1082
  /**
1063
1083
  * @public
1064
1084
  * <p> Describes the real-time endpoint information for an <code>MLModel</code>.</p>
@@ -1257,24 +1277,34 @@ export interface DeleteTagsOutput {
1257
1277
  }
1258
1278
  /**
1259
1279
  * @public
1280
+ * @enum
1260
1281
  */
1261
- export declare enum BatchPredictionFilterVariable {
1262
- CREATED_AT = "CreatedAt",
1263
- DATASOURCE_ID = "DataSourceId",
1264
- DATA_URI = "DataURI",
1265
- IAM_USER = "IAMUser",
1266
- LAST_UPDATED_AT = "LastUpdatedAt",
1267
- ML_MODEL_ID = "MLModelId",
1268
- NAME = "Name",
1269
- STATUS = "Status"
1270
- }
1282
+ export declare const BatchPredictionFilterVariable: {
1283
+ readonly CREATED_AT: "CreatedAt";
1284
+ readonly DATASOURCE_ID: "DataSourceId";
1285
+ readonly DATA_URI: "DataURI";
1286
+ readonly IAM_USER: "IAMUser";
1287
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
1288
+ readonly ML_MODEL_ID: "MLModelId";
1289
+ readonly NAME: "Name";
1290
+ readonly STATUS: "Status";
1291
+ };
1271
1292
  /**
1272
1293
  * @public
1273
1294
  */
1274
- export declare enum SortOrder {
1275
- ASC = "asc",
1276
- DSC = "dsc"
1277
- }
1295
+ export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
1296
+ /**
1297
+ * @public
1298
+ * @enum
1299
+ */
1300
+ export declare const SortOrder: {
1301
+ readonly ASC: "asc";
1302
+ readonly DSC: "dsc";
1303
+ };
1304
+ /**
1305
+ * @public
1306
+ */
1307
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
1278
1308
  /**
1279
1309
  * @public
1280
1310
  */
@@ -1390,14 +1420,19 @@ export interface DescribeBatchPredictionsInput {
1390
1420
  }
1391
1421
  /**
1392
1422
  * @public
1423
+ * @enum
1393
1424
  */
1394
- export declare enum EntityStatus {
1395
- COMPLETED = "COMPLETED",
1396
- DELETED = "DELETED",
1397
- FAILED = "FAILED",
1398
- INPROGRESS = "INPROGRESS",
1399
- PENDING = "PENDING"
1400
- }
1425
+ export declare const EntityStatus: {
1426
+ readonly COMPLETED: "COMPLETED";
1427
+ readonly DELETED: "DELETED";
1428
+ readonly FAILED: "FAILED";
1429
+ readonly INPROGRESS: "INPROGRESS";
1430
+ readonly PENDING: "PENDING";
1431
+ };
1432
+ /**
1433
+ * @public
1434
+ */
1435
+ export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
1401
1436
  /**
1402
1437
  * @public
1403
1438
  * <p> Represents the output of a <code>GetBatchPrediction</code> operation.</p>
@@ -1511,15 +1546,20 @@ export interface DescribeBatchPredictionsOutput {
1511
1546
  }
1512
1547
  /**
1513
1548
  * @public
1549
+ * @enum
1514
1550
  */
1515
- export declare enum DataSourceFilterVariable {
1516
- CREATED_AT = "CreatedAt",
1517
- DATA_URI = "DataLocationS3",
1518
- IAM_USER = "IAMUser",
1519
- LAST_UPDATED_AT = "LastUpdatedAt",
1520
- NAME = "Name",
1521
- STATUS = "Status"
1522
- }
1551
+ export declare const DataSourceFilterVariable: {
1552
+ readonly CREATED_AT: "CreatedAt";
1553
+ readonly DATA_URI: "DataLocationS3";
1554
+ readonly IAM_USER: "IAMUser";
1555
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
1556
+ readonly NAME: "Name";
1557
+ readonly STATUS: "Status";
1558
+ };
1559
+ /**
1560
+ * @public
1561
+ */
1562
+ export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
1523
1563
  /**
1524
1564
  * @public
1525
1565
  */
@@ -1791,17 +1831,22 @@ export interface DescribeDataSourcesOutput {
1791
1831
  }
1792
1832
  /**
1793
1833
  * @public
1834
+ * @enum
1794
1835
  */
1795
- export declare enum EvaluationFilterVariable {
1796
- CREATED_AT = "CreatedAt",
1797
- DATASOURCE_ID = "DataSourceId",
1798
- DATA_URI = "DataURI",
1799
- IAM_USER = "IAMUser",
1800
- LAST_UPDATED_AT = "LastUpdatedAt",
1801
- ML_MODEL_ID = "MLModelId",
1802
- NAME = "Name",
1803
- STATUS = "Status"
1804
- }
1836
+ export declare const EvaluationFilterVariable: {
1837
+ readonly CREATED_AT: "CreatedAt";
1838
+ readonly DATASOURCE_ID: "DataSourceId";
1839
+ readonly DATA_URI: "DataURI";
1840
+ readonly IAM_USER: "IAMUser";
1841
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
1842
+ readonly ML_MODEL_ID: "MLModelId";
1843
+ readonly NAME: "Name";
1844
+ readonly STATUS: "Status";
1845
+ };
1846
+ /**
1847
+ * @public
1848
+ */
1849
+ export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
1805
1850
  /**
1806
1851
  * @public
1807
1852
  */
@@ -2056,19 +2101,24 @@ export interface DescribeEvaluationsOutput {
2056
2101
  }
2057
2102
  /**
2058
2103
  * @public
2104
+ * @enum
2059
2105
  */
2060
- export declare enum MLModelFilterVariable {
2061
- ALGORITHM = "Algorithm",
2062
- CREATED_AT = "CreatedAt",
2063
- IAM_USER = "IAMUser",
2064
- LAST_UPDATED_AT = "LastUpdatedAt",
2065
- ML_MODEL_TYPE = "MLModelType",
2066
- NAME = "Name",
2067
- REAL_TIME_ENDPOINT_STATUS = "RealtimeEndpointStatus",
2068
- STATUS = "Status",
2069
- TRAINING_DATASOURCE_ID = "TrainingDataSourceId",
2070
- TRAINING_DATA_URI = "TrainingDataURI"
2071
- }
2106
+ export declare const MLModelFilterVariable: {
2107
+ readonly ALGORITHM: "Algorithm";
2108
+ readonly CREATED_AT: "CreatedAt";
2109
+ readonly IAM_USER: "IAMUser";
2110
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
2111
+ readonly ML_MODEL_TYPE: "MLModelType";
2112
+ readonly NAME: "Name";
2113
+ readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
2114
+ readonly STATUS: "Status";
2115
+ readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
2116
+ readonly TRAINING_DATA_URI: "TrainingDataURI";
2117
+ };
2118
+ /**
2119
+ * @public
2120
+ */
2121
+ export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
2072
2122
  /**
2073
2123
  * @public
2074
2124
  */
@@ -2991,11 +3041,16 @@ export declare class PredictorNotMountedException extends __BaseException {
2991
3041
  }
2992
3042
  /**
2993
3043
  * @public
3044
+ * @enum
2994
3045
  */
2995
- export declare enum DetailsAttributes {
2996
- ALGORITHM = "Algorithm",
2997
- PREDICTIVE_MODEL_TYPE = "PredictiveModelType"
2998
- }
3046
+ export declare const DetailsAttributes: {
3047
+ readonly ALGORITHM: "Algorithm";
3048
+ readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
3049
+ };
3050
+ /**
3051
+ * @public
3052
+ */
3053
+ export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
2999
3054
  /**
3000
3055
  * @public
3001
3056
  * <p>The output from a <code>Predict</code> operation: </p>
@@ -1,11 +1,13 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
3
- export declare enum TaggableResourceType {
4
- BATCH_PREDICTION = "BatchPrediction",
5
- DATASOURCE = "DataSource",
6
- EVALUATION = "Evaluation",
7
- ML_MODEL = "MLModel",
8
- }
3
+ export declare const TaggableResourceType: {
4
+ readonly BATCH_PREDICTION: "BatchPrediction";
5
+ readonly DATASOURCE: "DataSource";
6
+ readonly EVALUATION: "Evaluation";
7
+ readonly ML_MODEL: "MLModel";
8
+ };
9
+ export type TaggableResourceType =
10
+ (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
9
11
  export interface Tag {
10
12
  Key?: string;
11
13
  Value?: string;
@@ -57,9 +59,10 @@ export declare class TagLimitExceededException extends __BaseException {
57
59
  opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
58
60
  );
59
61
  }
60
- export declare enum Algorithm {
61
- SGD = "sgd",
62
- }
62
+ export declare const Algorithm: {
63
+ readonly SGD: "sgd";
64
+ };
65
+ export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
63
66
  export interface CreateBatchPredictionInput {
64
67
  BatchPredictionId: string | undefined;
65
68
  BatchPredictionName?: string;
@@ -163,11 +166,12 @@ export interface CreateEvaluationInput {
163
166
  export interface CreateEvaluationOutput {
164
167
  EvaluationId?: string;
165
168
  }
166
- export declare enum MLModelType {
167
- BINARY = "BINARY",
168
- MULTICLASS = "MULTICLASS",
169
- REGRESSION = "REGRESSION",
170
- }
169
+ export declare const MLModelType: {
170
+ readonly BINARY: "BINARY";
171
+ readonly MULTICLASS: "MULTICLASS";
172
+ readonly REGRESSION: "REGRESSION";
173
+ };
174
+ export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
171
175
  export interface CreateMLModelInput {
172
176
  MLModelId: string | undefined;
173
177
  MLModelName?: string;
@@ -183,12 +187,14 @@ export interface CreateMLModelOutput {
183
187
  export interface CreateRealtimeEndpointInput {
184
188
  MLModelId: string | undefined;
185
189
  }
186
- export declare enum RealtimeEndpointStatus {
187
- FAILED = "FAILED",
188
- NONE = "NONE",
189
- READY = "READY",
190
- UPDATING = "UPDATING",
191
- }
190
+ export declare const RealtimeEndpointStatus: {
191
+ readonly FAILED: "FAILED";
192
+ readonly NONE: "NONE";
193
+ readonly READY: "READY";
194
+ readonly UPDATING: "UPDATING";
195
+ };
196
+ export type RealtimeEndpointStatus =
197
+ (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
192
198
  export interface RealtimeEndpointInfo {
193
199
  PeakRequestsPerSecond?: number;
194
200
  CreatedAt?: Date;
@@ -239,20 +245,23 @@ export interface DeleteTagsOutput {
239
245
  ResourceId?: string;
240
246
  ResourceType?: TaggableResourceType | string;
241
247
  }
242
- export declare enum BatchPredictionFilterVariable {
243
- CREATED_AT = "CreatedAt",
244
- DATASOURCE_ID = "DataSourceId",
245
- DATA_URI = "DataURI",
246
- IAM_USER = "IAMUser",
247
- LAST_UPDATED_AT = "LastUpdatedAt",
248
- ML_MODEL_ID = "MLModelId",
249
- NAME = "Name",
250
- STATUS = "Status",
251
- }
252
- export declare enum SortOrder {
253
- ASC = "asc",
254
- DSC = "dsc",
255
- }
248
+ export declare const BatchPredictionFilterVariable: {
249
+ readonly CREATED_AT: "CreatedAt";
250
+ readonly DATASOURCE_ID: "DataSourceId";
251
+ readonly DATA_URI: "DataURI";
252
+ readonly IAM_USER: "IAMUser";
253
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
254
+ readonly ML_MODEL_ID: "MLModelId";
255
+ readonly NAME: "Name";
256
+ readonly STATUS: "Status";
257
+ };
258
+ export type BatchPredictionFilterVariable =
259
+ (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
260
+ export declare const SortOrder: {
261
+ readonly ASC: "asc";
262
+ readonly DSC: "dsc";
263
+ };
264
+ export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
256
265
  export interface DescribeBatchPredictionsInput {
257
266
  FilterVariable?: BatchPredictionFilterVariable | string;
258
267
  EQ?: string;
@@ -266,13 +275,14 @@ export interface DescribeBatchPredictionsInput {
266
275
  NextToken?: string;
267
276
  Limit?: number;
268
277
  }
269
- export declare enum EntityStatus {
270
- COMPLETED = "COMPLETED",
271
- DELETED = "DELETED",
272
- FAILED = "FAILED",
273
- INPROGRESS = "INPROGRESS",
274
- PENDING = "PENDING",
275
- }
278
+ export declare const EntityStatus: {
279
+ readonly COMPLETED: "COMPLETED";
280
+ readonly DELETED: "DELETED";
281
+ readonly FAILED: "FAILED";
282
+ readonly INPROGRESS: "INPROGRESS";
283
+ readonly PENDING: "PENDING";
284
+ };
285
+ export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
276
286
  export interface BatchPrediction {
277
287
  BatchPredictionId?: string;
278
288
  MLModelId?: string;
@@ -295,14 +305,16 @@ export interface DescribeBatchPredictionsOutput {
295
305
  Results?: BatchPrediction[];
296
306
  NextToken?: string;
297
307
  }
298
- export declare enum DataSourceFilterVariable {
299
- CREATED_AT = "CreatedAt",
300
- DATA_URI = "DataLocationS3",
301
- IAM_USER = "IAMUser",
302
- LAST_UPDATED_AT = "LastUpdatedAt",
303
- NAME = "Name",
304
- STATUS = "Status",
305
- }
308
+ export declare const DataSourceFilterVariable: {
309
+ readonly CREATED_AT: "CreatedAt";
310
+ readonly DATA_URI: "DataLocationS3";
311
+ readonly IAM_USER: "IAMUser";
312
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
313
+ readonly NAME: "Name";
314
+ readonly STATUS: "Status";
315
+ };
316
+ export type DataSourceFilterVariable =
317
+ (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
306
318
  export interface DescribeDataSourcesInput {
307
319
  FilterVariable?: DataSourceFilterVariable | string;
308
320
  EQ?: string;
@@ -353,16 +365,18 @@ export interface DescribeDataSourcesOutput {
353
365
  Results?: DataSource[];
354
366
  NextToken?: string;
355
367
  }
356
- export declare enum EvaluationFilterVariable {
357
- CREATED_AT = "CreatedAt",
358
- DATASOURCE_ID = "DataSourceId",
359
- DATA_URI = "DataURI",
360
- IAM_USER = "IAMUser",
361
- LAST_UPDATED_AT = "LastUpdatedAt",
362
- ML_MODEL_ID = "MLModelId",
363
- NAME = "Name",
364
- STATUS = "Status",
365
- }
368
+ export declare const EvaluationFilterVariable: {
369
+ readonly CREATED_AT: "CreatedAt";
370
+ readonly DATASOURCE_ID: "DataSourceId";
371
+ readonly DATA_URI: "DataURI";
372
+ readonly IAM_USER: "IAMUser";
373
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
374
+ readonly ML_MODEL_ID: "MLModelId";
375
+ readonly NAME: "Name";
376
+ readonly STATUS: "Status";
377
+ };
378
+ export type EvaluationFilterVariable =
379
+ (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
366
380
  export interface DescribeEvaluationsInput {
367
381
  FilterVariable?: EvaluationFilterVariable | string;
368
382
  EQ?: string;
@@ -399,18 +413,20 @@ export interface DescribeEvaluationsOutput {
399
413
  Results?: Evaluation[];
400
414
  NextToken?: string;
401
415
  }
402
- export declare enum MLModelFilterVariable {
403
- ALGORITHM = "Algorithm",
404
- CREATED_AT = "CreatedAt",
405
- IAM_USER = "IAMUser",
406
- LAST_UPDATED_AT = "LastUpdatedAt",
407
- ML_MODEL_TYPE = "MLModelType",
408
- NAME = "Name",
409
- REAL_TIME_ENDPOINT_STATUS = "RealtimeEndpointStatus",
410
- STATUS = "Status",
411
- TRAINING_DATASOURCE_ID = "TrainingDataSourceId",
412
- TRAINING_DATA_URI = "TrainingDataURI",
413
- }
416
+ export declare const MLModelFilterVariable: {
417
+ readonly ALGORITHM: "Algorithm";
418
+ readonly CREATED_AT: "CreatedAt";
419
+ readonly IAM_USER: "IAMUser";
420
+ readonly LAST_UPDATED_AT: "LastUpdatedAt";
421
+ readonly ML_MODEL_TYPE: "MLModelType";
422
+ readonly NAME: "Name";
423
+ readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
424
+ readonly STATUS: "Status";
425
+ readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
426
+ readonly TRAINING_DATA_URI: "TrainingDataURI";
427
+ };
428
+ export type MLModelFilterVariable =
429
+ (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
414
430
  export interface DescribeMLModelsInput {
415
431
  FilterVariable?: MLModelFilterVariable | string;
416
432
  EQ?: string;
@@ -573,10 +589,12 @@ export declare class PredictorNotMountedException extends __BaseException {
573
589
  opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>
574
590
  );
575
591
  }
576
- export declare enum DetailsAttributes {
577
- ALGORITHM = "Algorithm",
578
- PREDICTIVE_MODEL_TYPE = "PredictiveModelType",
579
- }
592
+ export declare const DetailsAttributes: {
593
+ readonly ALGORITHM: "Algorithm";
594
+ readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
595
+ };
596
+ export type DetailsAttributes =
597
+ (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
580
598
  export interface Prediction {
581
599
  predictedLabel?: string;
582
600
  predictedValue?: number;