@aws-sdk/client-machine-learning 3.687.0 → 3.692.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.
@@ -23,12 +23,12 @@ export interface Tag {
23
23
  * <p>A unique identifier for the tag. Valid characters include Unicode letters, digits, white space, _, ., /, =, +, -, %, and @.</p>
24
24
  * @public
25
25
  */
26
- Key?: string;
26
+ Key?: string | undefined;
27
27
  /**
28
28
  * <p>An optional string, typically used to describe or define the tag. Valid characters include Unicode letters, digits, white space, _, ., /, =, +, -, %, and @.</p>
29
29
  * @public
30
30
  */
31
- Value?: string;
31
+ Value?: string | undefined;
32
32
  }
33
33
  /**
34
34
  * @public
@@ -59,12 +59,12 @@ export interface AddTagsOutput {
59
59
  * <p>The ID of the ML object that was tagged.</p>
60
60
  * @public
61
61
  */
62
- ResourceId?: string;
62
+ ResourceId?: string | undefined;
63
63
  /**
64
64
  * <p>The type of the ML object that was tagged.</p>
65
65
  * @public
66
66
  */
67
- ResourceType?: TaggableResourceType;
67
+ ResourceType?: TaggableResourceType | undefined;
68
68
  }
69
69
  /**
70
70
  * <p>An error on the server occurred when trying to process a request.</p>
@@ -73,7 +73,7 @@ export interface AddTagsOutput {
73
73
  export declare class InternalServerException extends __BaseException {
74
74
  readonly name: "InternalServerException";
75
75
  readonly $fault: "server";
76
- code?: number;
76
+ code?: number | undefined;
77
77
  /**
78
78
  * @internal
79
79
  */
@@ -86,7 +86,7 @@ export declare class InternalServerException extends __BaseException {
86
86
  export declare class InvalidInputException extends __BaseException {
87
87
  readonly name: "InvalidInputException";
88
88
  readonly $fault: "client";
89
- code?: number;
89
+ code?: number | undefined;
90
90
  /**
91
91
  * @internal
92
92
  */
@@ -110,7 +110,7 @@ export declare class InvalidTagException extends __BaseException {
110
110
  export declare class ResourceNotFoundException extends __BaseException {
111
111
  readonly name: "ResourceNotFoundException";
112
112
  readonly $fault: "client";
113
- code?: number;
113
+ code?: number | undefined;
114
114
  /**
115
115
  * @internal
116
116
  */
@@ -152,7 +152,7 @@ export interface CreateBatchPredictionInput {
152
152
  * <p>A user-supplied name or description of the <code>BatchPrediction</code>. <code>BatchPredictionName</code> can only use the UTF-8 character set.</p>
153
153
  * @public
154
154
  */
155
- BatchPredictionName?: string;
155
+ BatchPredictionName?: string | undefined;
156
156
  /**
157
157
  * <p>The ID of the <code>MLModel</code> that will generate predictions for the group of observations. </p>
158
158
  * @public
@@ -183,7 +183,7 @@ export interface CreateBatchPredictionOutput {
183
183
  * <code>BatchPredictionId</code> in the request.</p>
184
184
  * @public
185
185
  */
186
- BatchPredictionId?: string;
186
+ BatchPredictionId?: string | undefined;
187
187
  }
188
188
  /**
189
189
  * <p>A second request to use or change an object was not allowed. This can result from retrying a request using a parameter that was not present in the original request.</p>
@@ -192,7 +192,7 @@ export interface CreateBatchPredictionOutput {
192
192
  export declare class IdempotentParameterMismatchException extends __BaseException {
193
193
  readonly name: "IdempotentParameterMismatchException";
194
194
  readonly $fault: "client";
195
- code?: number;
195
+ code?: number | undefined;
196
196
  /**
197
197
  * @internal
198
198
  */
@@ -346,7 +346,7 @@ export interface RDSDataSpec {
346
346
  * </ul>
347
347
  * @public
348
348
  */
349
- DataRearrangement?: string;
349
+ DataRearrangement?: string | undefined;
350
350
  /**
351
351
  * <p>A JSON string that represents the schema for an Amazon RDS
352
352
  * <code>DataSource</code>. The <code>DataSchema</code>
@@ -369,12 +369,12 @@ export interface RDSDataSpec {
369
369
  * <p>"excludedVariableNames": [ "F6" ] \}</p>
370
370
  * @public
371
371
  */
372
- DataSchema?: string;
372
+ DataSchema?: string | undefined;
373
373
  /**
374
374
  * <p>The Amazon S3 location of the <code>DataSchema</code>. </p>
375
375
  * @public
376
376
  */
377
- DataSchemaUri?: string;
377
+ DataSchemaUri?: string | undefined;
378
378
  /**
379
379
  * <p>The role (DataPipelineDefaultResourceRole) assumed by an Amazon Elastic Compute Cloud (Amazon EC2) instance to carry out the copy operation from Amazon RDS to an Amazon S3 task. For more information, see <a href="https://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-iam-roles.html">Role templates</a> for data pipelines.</p>
380
380
  * @public
@@ -410,7 +410,7 @@ export interface CreateDataSourceFromRDSInput {
410
410
  * <p>A user-supplied name or description of the <code>DataSource</code>.</p>
411
411
  * @public
412
412
  */
413
- DataSourceName?: string;
413
+ DataSourceName?: string | undefined;
414
414
  /**
415
415
  * <p>The data specification of an Amazon RDS <code>DataSource</code>:</p>
416
416
  * <ul>
@@ -477,7 +477,7 @@ export interface CreateDataSourceFromRDSInput {
477
477
  * </p>
478
478
  * @public
479
479
  */
480
- ComputeStatistics?: boolean;
480
+ ComputeStatistics?: boolean | undefined;
481
481
  }
482
482
  /**
483
483
  * <p> Represents the output of a <code>CreateDataSourceFromRDS</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
@@ -495,7 +495,7 @@ export interface CreateDataSourceFromRDSOutput {
495
495
  * </p>
496
496
  * @public
497
497
  */
498
- DataSourceId?: string;
498
+ DataSourceId?: string | undefined;
499
499
  }
500
500
  /**
501
501
  * <p>Describes the database credentials for connecting to a database on an Amazon Redshift cluster.</p>
@@ -645,7 +645,7 @@ export interface RedshiftDataSpec {
645
645
  * </ul>
646
646
  * @public
647
647
  */
648
- DataRearrangement?: string;
648
+ DataRearrangement?: string | undefined;
649
649
  /**
650
650
  * <p>A JSON string that represents the schema for an Amazon Redshift
651
651
  * <code>DataSource</code>. The <code>DataSchema</code>
@@ -667,12 +667,12 @@ export interface RedshiftDataSpec {
667
667
  * <p>"excludedVariableNames": [ "F6" ] \}</p>
668
668
  * @public
669
669
  */
670
- DataSchema?: string;
670
+ DataSchema?: string | undefined;
671
671
  /**
672
672
  * <p>Describes the schema location for an Amazon Redshift <code>DataSource</code>.</p>
673
673
  * @public
674
674
  */
675
- DataSchemaUri?: string;
675
+ DataSchemaUri?: string | undefined;
676
676
  }
677
677
  /**
678
678
  * @public
@@ -687,7 +687,7 @@ export interface CreateDataSourceFromRedshiftInput {
687
687
  * <p>A user-supplied name or description of the <code>DataSource</code>. </p>
688
688
  * @public
689
689
  */
690
- DataSourceName?: string;
690
+ DataSourceName?: string | undefined;
691
691
  /**
692
692
  * <p>The data specification of an Amazon Redshift <code>DataSource</code>:</p>
693
693
  * <ul>
@@ -754,7 +754,7 @@ export interface CreateDataSourceFromRedshiftInput {
754
754
  * be used for <code>MLModel</code> training.</p>
755
755
  * @public
756
756
  */
757
- ComputeStatistics?: boolean;
757
+ ComputeStatistics?: boolean | undefined;
758
758
  }
759
759
  /**
760
760
  * <p> Represents the output of a <code>CreateDataSourceFromRedshift</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
@@ -769,7 +769,7 @@ export interface CreateDataSourceFromRedshiftOutput {
769
769
  * </p>
770
770
  * @public
771
771
  */
772
- DataSourceId?: string;
772
+ DataSourceId?: string | undefined;
773
773
  }
774
774
  /**
775
775
  * <p> Describes the data specification of a <code>DataSource</code>.</p>
@@ -871,7 +871,7 @@ export interface S3DataSpec {
871
871
  * </ul>
872
872
  * @public
873
873
  */
874
- DataRearrangement?: string;
874
+ DataRearrangement?: string | undefined;
875
875
  /**
876
876
  * <p> A JSON string that represents the schema for an Amazon S3
877
877
  * <code>DataSource</code>. The <code>DataSchema</code>
@@ -892,13 +892,13 @@ export interface S3DataSpec {
892
892
  * <p>"excludedVariableNames": [ "F6" ] \}</p>
893
893
  * @public
894
894
  */
895
- DataSchema?: string;
895
+ DataSchema?: string | undefined;
896
896
  /**
897
897
  * <p>Describes the schema location in Amazon S3. You must provide either the
898
898
  * <code>DataSchema</code> or the <code>DataSchemaLocationS3</code>.</p>
899
899
  * @public
900
900
  */
901
- DataSchemaLocationS3?: string;
901
+ DataSchemaLocationS3?: string | undefined;
902
902
  }
903
903
  /**
904
904
  * @public
@@ -913,7 +913,7 @@ export interface CreateDataSourceFromS3Input {
913
913
  * <p>A user-supplied name or description of the <code>DataSource</code>. </p>
914
914
  * @public
915
915
  */
916
- DataSourceName?: string;
916
+ DataSourceName?: string | undefined;
917
917
  /**
918
918
  * <p>The data specification of a <code>DataSource</code>:</p>
919
919
  * <ul>
@@ -942,7 +942,7 @@ export interface CreateDataSourceFromS3Input {
942
942
  * This parameter must be set to <code>true</code> if the <code></code>DataSource<code></code> needs to be used for <code>MLModel</code> training.</p>
943
943
  * @public
944
944
  */
945
- ComputeStatistics?: boolean;
945
+ ComputeStatistics?: boolean | undefined;
946
946
  }
947
947
  /**
948
948
  * <p> Represents the output of a <code>CreateDataSourceFromS3</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
@@ -957,7 +957,7 @@ export interface CreateDataSourceFromS3Output {
957
957
  * </p>
958
958
  * @public
959
959
  */
960
- DataSourceId?: string;
960
+ DataSourceId?: string | undefined;
961
961
  }
962
962
  /**
963
963
  * @public
@@ -972,7 +972,7 @@ export interface CreateEvaluationInput {
972
972
  * <p>A user-supplied name or description of the <code>Evaluation</code>.</p>
973
973
  * @public
974
974
  */
975
- EvaluationName?: string;
975
+ EvaluationName?: string | undefined;
976
976
  /**
977
977
  * <p>The ID of the <code>MLModel</code> to evaluate.</p>
978
978
  * <p>The schema used in creating the <code>MLModel</code> must match the schema of the <code>DataSource</code> used in the <code>Evaluation</code>.</p>
@@ -1001,7 +1001,7 @@ export interface CreateEvaluationOutput {
1001
1001
  * <code>EvaluationId</code> in the request.</p>
1002
1002
  * @public
1003
1003
  */
1004
- EvaluationId?: string;
1004
+ EvaluationId?: string | undefined;
1005
1005
  }
1006
1006
  /**
1007
1007
  * @public
@@ -1029,7 +1029,7 @@ export interface CreateMLModelInput {
1029
1029
  * <p>A user-supplied name or description of the <code>MLModel</code>.</p>
1030
1030
  * @public
1031
1031
  */
1032
- MLModelName?: string;
1032
+ MLModelName?: string | undefined;
1033
1033
  /**
1034
1034
  * <p>The category of supervised learning that this <code>MLModel</code> will address. Choose from the following types:</p>
1035
1035
  * <ul>
@@ -1095,7 +1095,7 @@ export interface CreateMLModelInput {
1095
1095
  * </ul>
1096
1096
  * @public
1097
1097
  */
1098
- Parameters?: Record<string, string>;
1098
+ Parameters?: Record<string, string> | undefined;
1099
1099
  /**
1100
1100
  * <p>The <code>DataSource</code> that points to the training data.</p>
1101
1101
  * @public
@@ -1106,12 +1106,12 @@ export interface CreateMLModelInput {
1106
1106
  * or its URI. If you don't specify a recipe or its URI, Amazon ML creates a default.</p>
1107
1107
  * @public
1108
1108
  */
1109
- Recipe?: string;
1109
+ Recipe?: string | undefined;
1110
1110
  /**
1111
1111
  * <p>The Amazon Simple Storage Service (Amazon S3) location and file name that contains the <code>MLModel</code> recipe. You must specify either the recipe or its URI. If you don't specify a recipe or its URI, Amazon ML creates a default.</p>
1112
1112
  * @public
1113
1113
  */
1114
- RecipeUri?: string;
1114
+ RecipeUri?: string | undefined;
1115
1115
  }
1116
1116
  /**
1117
1117
  * <p> Represents the output of a <code>CreateMLModel</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
@@ -1127,7 +1127,7 @@ export interface CreateMLModelOutput {
1127
1127
  * </p>
1128
1128
  * @public
1129
1129
  */
1130
- MLModelId?: string;
1130
+ MLModelId?: string | undefined;
1131
1131
  }
1132
1132
  /**
1133
1133
  * @public
@@ -1162,19 +1162,19 @@ export interface RealtimeEndpointInfo {
1162
1162
  * <p> The maximum processing rate for the real-time endpoint for <code>MLModel</code>, measured in incoming requests per second.</p>
1163
1163
  * @public
1164
1164
  */
1165
- PeakRequestsPerSecond?: number;
1165
+ PeakRequestsPerSecond?: number | undefined;
1166
1166
  /**
1167
1167
  * <p>The time that the request to create the real-time endpoint for the <code>MLModel</code> was received. The time is expressed in epoch time.</p>
1168
1168
  * @public
1169
1169
  */
1170
- CreatedAt?: Date;
1170
+ CreatedAt?: Date | undefined;
1171
1171
  /**
1172
1172
  * <p>The URI that specifies where to send real-time prediction requests for the <code>MLModel</code>.</p>
1173
1173
  * <p>
1174
1174
  * <b>Note:</b> The application must wait until the real-time endpoint is ready before using this URI.</p>
1175
1175
  * @public
1176
1176
  */
1177
- EndpointUrl?: string;
1177
+ EndpointUrl?: string | undefined;
1178
1178
  /**
1179
1179
  * <p> The current status of the real-time endpoint for the <code>MLModel</code>. This element can have one of the following values: </p>
1180
1180
  * <ul>
@@ -1193,7 +1193,7 @@ export interface RealtimeEndpointInfo {
1193
1193
  * </ul>
1194
1194
  * @public
1195
1195
  */
1196
- EndpointStatus?: RealtimeEndpointStatus;
1196
+ EndpointStatus?: RealtimeEndpointStatus | undefined;
1197
1197
  }
1198
1198
  /**
1199
1199
  * <p>Represents the output of an <code>CreateRealtimeEndpoint</code> operation.</p>
@@ -1208,13 +1208,13 @@ export interface CreateRealtimeEndpointOutput {
1208
1208
  * <code>MLModelId</code> in the request.</p>
1209
1209
  * @public
1210
1210
  */
1211
- MLModelId?: string;
1211
+ MLModelId?: string | undefined;
1212
1212
  /**
1213
1213
  * <p>The endpoint information of the <code>MLModel</code>
1214
1214
  * </p>
1215
1215
  * @public
1216
1216
  */
1217
- RealtimeEndpointInfo?: RealtimeEndpointInfo;
1217
+ RealtimeEndpointInfo?: RealtimeEndpointInfo | undefined;
1218
1218
  }
1219
1219
  /**
1220
1220
  * @public
@@ -1237,7 +1237,7 @@ export interface DeleteBatchPredictionOutput {
1237
1237
  * <p>A user-supplied ID that uniquely identifies the <code>BatchPrediction</code>. This value should be identical to the value of the <code>BatchPredictionID</code> in the request.</p>
1238
1238
  * @public
1239
1239
  */
1240
- BatchPredictionId?: string;
1240
+ BatchPredictionId?: string | undefined;
1241
1241
  }
1242
1242
  /**
1243
1243
  * @public
@@ -1258,7 +1258,7 @@ export interface DeleteDataSourceOutput {
1258
1258
  * <p>A user-supplied ID that uniquely identifies the <code>DataSource</code>. This value should be identical to the value of the <code>DataSourceID</code> in the request.</p>
1259
1259
  * @public
1260
1260
  */
1261
- DataSourceId?: string;
1261
+ DataSourceId?: string | undefined;
1262
1262
  }
1263
1263
  /**
1264
1264
  * @public
@@ -1281,7 +1281,7 @@ export interface DeleteEvaluationOutput {
1281
1281
  * <p>A user-supplied ID that uniquely identifies the <code>Evaluation</code>. This value should be identical to the value of the <code>EvaluationId</code> in the request.</p>
1282
1282
  * @public
1283
1283
  */
1284
- EvaluationId?: string;
1284
+ EvaluationId?: string | undefined;
1285
1285
  }
1286
1286
  /**
1287
1287
  * @public
@@ -1304,7 +1304,7 @@ export interface DeleteMLModelOutput {
1304
1304
  * <p>A user-supplied ID that uniquely identifies the <code>MLModel</code>. This value should be identical to the value of the <code>MLModelID</code> in the request.</p>
1305
1305
  * @public
1306
1306
  */
1307
- MLModelId?: string;
1307
+ MLModelId?: string | undefined;
1308
1308
  }
1309
1309
  /**
1310
1310
  * @public
@@ -1327,13 +1327,13 @@ export interface DeleteRealtimeEndpointOutput {
1327
1327
  * <code>MLModelId</code> in the request.</p>
1328
1328
  * @public
1329
1329
  */
1330
- MLModelId?: string;
1330
+ MLModelId?: string | undefined;
1331
1331
  /**
1332
1332
  * <p>The endpoint information of the <code>MLModel</code>
1333
1333
  * </p>
1334
1334
  * @public
1335
1335
  */
1336
- RealtimeEndpointInfo?: RealtimeEndpointInfo;
1336
+ RealtimeEndpointInfo?: RealtimeEndpointInfo | undefined;
1337
1337
  }
1338
1338
  /**
1339
1339
  * @public
@@ -1364,12 +1364,12 @@ export interface DeleteTagsOutput {
1364
1364
  * <p>The ID of the ML object from which tags were deleted.</p>
1365
1365
  * @public
1366
1366
  */
1367
- ResourceId?: string;
1367
+ ResourceId?: string | undefined;
1368
1368
  /**
1369
1369
  * <p>The type of the ML object from which tags were deleted.</p>
1370
1370
  * @public
1371
1371
  */
1372
- ResourceType?: TaggableResourceType;
1372
+ ResourceType?: TaggableResourceType | undefined;
1373
1373
  }
1374
1374
  /**
1375
1375
  * @public
@@ -1441,41 +1441,41 @@ export interface DescribeBatchPredictionsInput {
1441
1441
  * </ul>
1442
1442
  * @public
1443
1443
  */
1444
- FilterVariable?: BatchPredictionFilterVariable;
1444
+ FilterVariable?: BatchPredictionFilterVariable | undefined;
1445
1445
  /**
1446
1446
  * <p>The equal to operator. The <code>BatchPrediction</code> results will have
1447
1447
  * <code>FilterVariable</code> values that exactly match the value specified with <code>EQ</code>.</p>
1448
1448
  * @public
1449
1449
  */
1450
- EQ?: string;
1450
+ EQ?: string | undefined;
1451
1451
  /**
1452
1452
  * <p>The greater than operator. The <code>BatchPrediction</code> results will
1453
1453
  * have <code>FilterVariable</code> values that are greater than the value specified with <code>GT</code>.</p>
1454
1454
  * @public
1455
1455
  */
1456
- GT?: string;
1456
+ GT?: string | undefined;
1457
1457
  /**
1458
1458
  * <p>The less than operator. The <code>BatchPrediction</code> results will
1459
1459
  * have <code>FilterVariable</code> values that are less than the value specified with <code>LT</code>.</p>
1460
1460
  * @public
1461
1461
  */
1462
- LT?: string;
1462
+ LT?: string | undefined;
1463
1463
  /**
1464
1464
  * <p>The greater than or equal to operator. The <code>BatchPrediction</code> results will have <code>FilterVariable</code> values that are greater than or equal to the value specified with <code>GE</code>.
1465
1465
  * </p>
1466
1466
  * @public
1467
1467
  */
1468
- GE?: string;
1468
+ GE?: string | undefined;
1469
1469
  /**
1470
1470
  * <p>The less than or equal to operator. The <code>BatchPrediction</code> results will have <code>FilterVariable</code> values that are less than or equal to the value specified with <code>LE</code>.</p>
1471
1471
  * @public
1472
1472
  */
1473
- LE?: string;
1473
+ LE?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The not equal to operator. The <code>BatchPrediction</code> results will have <code>FilterVariable</code> values not equal to the value specified with <code>NE</code>.</p>
1476
1476
  * @public
1477
1477
  */
1478
- NE?: string;
1478
+ NE?: string | undefined;
1479
1479
  /**
1480
1480
  * <p>A string that is found at the beginning of a variable, such as <code>Name</code> or <code>Id</code>.</p>
1481
1481
  * <p>For example, a <code>Batch Prediction</code> operation could have the <code>Name</code>
@@ -1497,7 +1497,7 @@ export interface DescribeBatchPredictionsInput {
1497
1497
  * </ul>
1498
1498
  * @public
1499
1499
  */
1500
- Prefix?: string;
1500
+ Prefix?: string | undefined;
1501
1501
  /**
1502
1502
  * <p>A two-value parameter that determines the sequence of the resulting list of <code>MLModel</code>s.</p>
1503
1503
  * <ul>
@@ -1513,17 +1513,17 @@ export interface DescribeBatchPredictionsInput {
1513
1513
  * <p>Results are sorted by <code>FilterVariable</code>.</p>
1514
1514
  * @public
1515
1515
  */
1516
- SortOrder?: SortOrder;
1516
+ SortOrder?: SortOrder | undefined;
1517
1517
  /**
1518
1518
  * <p>An ID of the page in the paginated results.</p>
1519
1519
  * @public
1520
1520
  */
1521
- NextToken?: string;
1521
+ NextToken?: string | undefined;
1522
1522
  /**
1523
1523
  * <p>The number of pages of information to include in the result. The range of acceptable values is <code>1</code> through <code>100</code>. The default value is <code>100</code>.</p>
1524
1524
  * @public
1525
1525
  */
1526
- Limit?: number;
1526
+ Limit?: number | undefined;
1527
1527
  }
1528
1528
  /**
1529
1529
  * @public
@@ -1553,42 +1553,42 @@ export interface BatchPrediction {
1553
1553
  * </p>
1554
1554
  * @public
1555
1555
  */
1556
- BatchPredictionId?: string;
1556
+ BatchPredictionId?: string | undefined;
1557
1557
  /**
1558
1558
  * <p>The ID of the <code>MLModel</code> that generated predictions for the <code>BatchPrediction</code> request.</p>
1559
1559
  * @public
1560
1560
  */
1561
- MLModelId?: string;
1561
+ MLModelId?: string | undefined;
1562
1562
  /**
1563
1563
  * <p>The ID of the <code>DataSource</code> that points to the group of observations to predict.</p>
1564
1564
  * @public
1565
1565
  */
1566
- BatchPredictionDataSourceId?: string;
1566
+ BatchPredictionDataSourceId?: string | undefined;
1567
1567
  /**
1568
1568
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
1569
1569
  * @public
1570
1570
  */
1571
- InputDataLocationS3?: string;
1571
+ InputDataLocationS3?: string | undefined;
1572
1572
  /**
1573
1573
  * <p>The AWS user account that invoked the <code>BatchPrediction</code>. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
1574
1574
  * @public
1575
1575
  */
1576
- CreatedByIamUser?: string;
1576
+ CreatedByIamUser?: string | undefined;
1577
1577
  /**
1578
1578
  * <p>The time that the <code>BatchPrediction</code> was created. The time is expressed in epoch time.</p>
1579
1579
  * @public
1580
1580
  */
1581
- CreatedAt?: Date;
1581
+ CreatedAt?: Date | undefined;
1582
1582
  /**
1583
1583
  * <p>The time of the most recent edit to the <code>BatchPrediction</code>. The time is expressed in epoch time.</p>
1584
1584
  * @public
1585
1585
  */
1586
- LastUpdatedAt?: Date;
1586
+ LastUpdatedAt?: Date | undefined;
1587
1587
  /**
1588
1588
  * <p>A user-supplied name or description of the <code>BatchPrediction</code>.</p>
1589
1589
  * @public
1590
1590
  */
1591
- Name?: string;
1591
+ Name?: string | undefined;
1592
1592
  /**
1593
1593
  * <p>The status of the <code>BatchPrediction</code>. This element can have one of the following values:</p>
1594
1594
  * <ul>
@@ -1615,42 +1615,42 @@ export interface BatchPrediction {
1615
1615
  * </ul>
1616
1616
  * @public
1617
1617
  */
1618
- Status?: EntityStatus;
1618
+ Status?: EntityStatus | undefined;
1619
1619
  /**
1620
1620
  * <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>
1621
1621
  * @public
1622
1622
  */
1623
- OutputUri?: string;
1623
+ OutputUri?: string | undefined;
1624
1624
  /**
1625
1625
  * <p>A description of the most recent details about processing the batch prediction request.</p>
1626
1626
  * @public
1627
1627
  */
1628
- Message?: string;
1628
+ Message?: string | undefined;
1629
1629
  /**
1630
1630
  * <p>Long integer type that is a 64-bit signed number.</p>
1631
1631
  * @public
1632
1632
  */
1633
- ComputeTime?: number;
1633
+ ComputeTime?: number | undefined;
1634
1634
  /**
1635
1635
  * <p>A timestamp represented in epoch time.</p>
1636
1636
  * @public
1637
1637
  */
1638
- FinishedAt?: Date;
1638
+ FinishedAt?: Date | undefined;
1639
1639
  /**
1640
1640
  * <p>A timestamp represented in epoch time.</p>
1641
1641
  * @public
1642
1642
  */
1643
- StartedAt?: Date;
1643
+ StartedAt?: Date | undefined;
1644
1644
  /**
1645
1645
  * <p>Long integer type that is a 64-bit signed number.</p>
1646
1646
  * @public
1647
1647
  */
1648
- TotalRecordCount?: number;
1648
+ TotalRecordCount?: number | undefined;
1649
1649
  /**
1650
1650
  * <p>Long integer type that is a 64-bit signed number.</p>
1651
1651
  * @public
1652
1652
  */
1653
- InvalidRecordCount?: number;
1653
+ InvalidRecordCount?: number | undefined;
1654
1654
  }
1655
1655
  /**
1656
1656
  * <p>Represents the output of a <code>DescribeBatchPredictions</code> operation. The content is essentially a list of <code>BatchPrediction</code>s.</p>
@@ -1662,12 +1662,12 @@ export interface DescribeBatchPredictionsOutput {
1662
1662
  * </p>
1663
1663
  * @public
1664
1664
  */
1665
- Results?: BatchPrediction[];
1665
+ Results?: BatchPrediction[] | undefined;
1666
1666
  /**
1667
1667
  * <p>The ID of the next page in the paginated results that indicates at least one more page follows.</p>
1668
1668
  * @public
1669
1669
  */
1670
- NextToken?: string;
1670
+ NextToken?: string | undefined;
1671
1671
  }
1672
1672
  /**
1673
1673
  * @public
@@ -1716,41 +1716,41 @@ export interface DescribeDataSourcesInput {
1716
1716
  * </ul>
1717
1717
  * @public
1718
1718
  */
1719
- FilterVariable?: DataSourceFilterVariable;
1719
+ FilterVariable?: DataSourceFilterVariable | undefined;
1720
1720
  /**
1721
1721
  * <p>The equal to operator. The <code>DataSource</code> results will have
1722
1722
  * <code>FilterVariable</code> values that exactly match the value specified with <code>EQ</code>.</p>
1723
1723
  * @public
1724
1724
  */
1725
- EQ?: string;
1725
+ EQ?: string | undefined;
1726
1726
  /**
1727
1727
  * <p>The greater than operator. The <code>DataSource</code> results will
1728
1728
  * have <code>FilterVariable</code> values that are greater than the value specified with <code>GT</code>.</p>
1729
1729
  * @public
1730
1730
  */
1731
- GT?: string;
1731
+ GT?: string | undefined;
1732
1732
  /**
1733
1733
  * <p>The less than operator. The <code>DataSource</code> results will
1734
1734
  * have <code>FilterVariable</code> values that are less than the value specified with <code>LT</code>.</p>
1735
1735
  * @public
1736
1736
  */
1737
- LT?: string;
1737
+ LT?: string | undefined;
1738
1738
  /**
1739
1739
  * <p>The greater than or equal to operator. The <code>DataSource</code> results will have <code>FilterVariable</code> values that are greater than or equal to the value specified with <code>GE</code>.
1740
1740
  * </p>
1741
1741
  * @public
1742
1742
  */
1743
- GE?: string;
1743
+ GE?: string | undefined;
1744
1744
  /**
1745
1745
  * <p>The less than or equal to operator. The <code>DataSource</code> results will have <code>FilterVariable</code> values that are less than or equal to the value specified with <code>LE</code>.</p>
1746
1746
  * @public
1747
1747
  */
1748
- LE?: string;
1748
+ LE?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>The not equal to operator. The <code>DataSource</code> results will have <code>FilterVariable</code> values not equal to the value specified with <code>NE</code>.</p>
1751
1751
  * @public
1752
1752
  */
1753
- NE?: string;
1753
+ NE?: string | undefined;
1754
1754
  /**
1755
1755
  * <p>A string that is found at the beginning of a variable, such as <code>Name</code> or <code>Id</code>.</p>
1756
1756
  * <p>For example, a <code>DataSource</code> could have the <code>Name</code>
@@ -1772,7 +1772,7 @@ export interface DescribeDataSourcesInput {
1772
1772
  * </ul>
1773
1773
  * @public
1774
1774
  */
1775
- Prefix?: string;
1775
+ Prefix?: string | undefined;
1776
1776
  /**
1777
1777
  * <p>A two-value parameter that determines the sequence of the resulting list of <code>DataSource</code>.</p>
1778
1778
  * <ul>
@@ -1788,17 +1788,17 @@ export interface DescribeDataSourcesInput {
1788
1788
  * <p>Results are sorted by <code>FilterVariable</code>.</p>
1789
1789
  * @public
1790
1790
  */
1791
- SortOrder?: SortOrder;
1791
+ SortOrder?: SortOrder | undefined;
1792
1792
  /**
1793
1793
  * <p>The ID of the page in the paginated results.</p>
1794
1794
  * @public
1795
1795
  */
1796
- NextToken?: string;
1796
+ NextToken?: string | undefined;
1797
1797
  /**
1798
1798
  * <p> The maximum number of <code>DataSource</code> to include in the result.</p>
1799
1799
  * @public
1800
1800
  */
1801
- Limit?: number;
1801
+ Limit?: number | undefined;
1802
1802
  }
1803
1803
  /**
1804
1804
  * <p>The datasource details that are specific to Amazon RDS.</p>
@@ -1809,33 +1809,33 @@ export interface RDSMetadata {
1809
1809
  * <p>The database details required to connect to an Amazon RDS.</p>
1810
1810
  * @public
1811
1811
  */
1812
- Database?: RDSDatabase;
1812
+ Database?: RDSDatabase | undefined;
1813
1813
  /**
1814
1814
  * <p>The username to be used by Amazon ML to connect to database on an Amazon RDS instance.
1815
1815
  * The username should have sufficient permissions to execute an <code>RDSSelectSqlQuery</code> query.</p>
1816
1816
  * @public
1817
1817
  */
1818
- DatabaseUserName?: string;
1818
+ DatabaseUserName?: string | undefined;
1819
1819
  /**
1820
1820
  * <p>The SQL query that is supplied during <a>CreateDataSourceFromRDS</a>. Returns only if <code>Verbose</code> is true in <code>GetDataSourceInput</code>. </p>
1821
1821
  * @public
1822
1822
  */
1823
- SelectSqlQuery?: string;
1823
+ SelectSqlQuery?: string | undefined;
1824
1824
  /**
1825
1825
  * <p>The role (DataPipelineDefaultResourceRole) assumed by an Amazon EC2 instance to carry out the copy task from Amazon RDS to Amazon S3. For more information, see <a href="https://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-iam-roles.html">Role templates</a> for data pipelines.</p>
1826
1826
  * @public
1827
1827
  */
1828
- ResourceRole?: string;
1828
+ ResourceRole?: string | undefined;
1829
1829
  /**
1830
1830
  * <p>The role (DataPipelineDefaultRole) assumed by the Data Pipeline service to monitor the progress of the copy task from Amazon RDS to Amazon S3. For more information, see <a href="https://docs.aws.amazon.com/datapipeline/latest/DeveloperGuide/dp-iam-roles.html">Role templates</a> for data pipelines.</p>
1831
1831
  * @public
1832
1832
  */
1833
- ServiceRole?: string;
1833
+ ServiceRole?: string | undefined;
1834
1834
  /**
1835
1835
  * <p>The ID of the Data Pipeline instance that is used to carry to copy data from Amazon RDS to Amazon S3. You can use the ID to find details about the instance in the Data Pipeline console.</p>
1836
1836
  * @public
1837
1837
  */
1838
- DataPipelineId?: string;
1838
+ DataPipelineId?: string | undefined;
1839
1839
  }
1840
1840
  /**
1841
1841
  * <p>Describes the <code>DataSource</code> details specific to Amazon Redshift.</p>
@@ -1846,18 +1846,18 @@ export interface RedshiftMetadata {
1846
1846
  * <p>Describes the database details required to connect to an Amazon Redshift database.</p>
1847
1847
  * @public
1848
1848
  */
1849
- RedshiftDatabase?: RedshiftDatabase;
1849
+ RedshiftDatabase?: RedshiftDatabase | undefined;
1850
1850
  /**
1851
1851
  * <p>A username to be used by Amazon Machine Learning (Amazon ML)to connect to a database on an Amazon Redshift cluster.
1852
1852
  * The username should have sufficient permissions to execute the <code>RedshiftSelectSqlQuery</code> query. The username should be valid for an Amazon Redshift <a href="https://docs.aws.amazon.com/redshift/latest/dg/r_CREATE_USER.html">USER</a>.</p>
1853
1853
  * @public
1854
1854
  */
1855
- DatabaseUserName?: string;
1855
+ DatabaseUserName?: string | undefined;
1856
1856
  /**
1857
1857
  * <p> The SQL query that is specified during <a>CreateDataSourceFromRedshift</a>. Returns only if <code>Verbose</code> is true in GetDataSourceInput. </p>
1858
1858
  * @public
1859
1859
  */
1860
- SelectSqlQuery?: string;
1860
+ SelectSqlQuery?: string | undefined;
1861
1861
  }
1862
1862
  /**
1863
1863
  * <p> Represents the output of the <code>GetDataSource</code> operation. </p>
@@ -1869,49 +1869,49 @@ export interface DataSource {
1869
1869
  * <p>The ID that is assigned to the <code>DataSource</code> during creation.</p>
1870
1870
  * @public
1871
1871
  */
1872
- DataSourceId?: string;
1872
+ DataSourceId?: string | undefined;
1873
1873
  /**
1874
1874
  * <p>The location and name of the data in Amazon Simple Storage Service (Amazon S3) that is used by a <code>DataSource</code>.</p>
1875
1875
  * @public
1876
1876
  */
1877
- DataLocationS3?: string;
1877
+ DataLocationS3?: string | undefined;
1878
1878
  /**
1879
1879
  * <p>A JSON string that represents the splitting and rearrangement requirement used when this <code>DataSource</code>
1880
1880
  * was created.</p>
1881
1881
  * @public
1882
1882
  */
1883
- DataRearrangement?: string;
1883
+ DataRearrangement?: string | undefined;
1884
1884
  /**
1885
1885
  * <p>The AWS user account from which the <code>DataSource</code> was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
1886
1886
  * @public
1887
1887
  */
1888
- CreatedByIamUser?: string;
1888
+ CreatedByIamUser?: string | undefined;
1889
1889
  /**
1890
1890
  * <p>The time that the <code>DataSource</code> was created. The time is expressed in epoch time.</p>
1891
1891
  * @public
1892
1892
  */
1893
- CreatedAt?: Date;
1893
+ CreatedAt?: Date | undefined;
1894
1894
  /**
1895
1895
  * <p>The time of the most recent edit to the
1896
1896
  * <code>BatchPrediction</code>. The time is expressed in epoch time.</p>
1897
1897
  * @public
1898
1898
  */
1899
- LastUpdatedAt?: Date;
1899
+ LastUpdatedAt?: Date | undefined;
1900
1900
  /**
1901
1901
  * <p>The total number of observations contained in the data files that the <code>DataSource</code> references.</p>
1902
1902
  * @public
1903
1903
  */
1904
- DataSizeInBytes?: number;
1904
+ DataSizeInBytes?: number | undefined;
1905
1905
  /**
1906
1906
  * <p>The number of data files referenced by the <code>DataSource</code>.</p>
1907
1907
  * @public
1908
1908
  */
1909
- NumberOfFiles?: number;
1909
+ NumberOfFiles?: number | undefined;
1910
1910
  /**
1911
1911
  * <p>A user-supplied name or description of the <code>DataSource</code>.</p>
1912
1912
  * @public
1913
1913
  */
1914
- Name?: string;
1914
+ Name?: string | undefined;
1915
1915
  /**
1916
1916
  * <p>The current status of the <code>DataSource</code>. This element can have one of the following values: </p>
1917
1917
  * <ul>
@@ -1933,49 +1933,49 @@ export interface DataSource {
1933
1933
  * </ul>
1934
1934
  * @public
1935
1935
  */
1936
- Status?: EntityStatus;
1936
+ Status?: EntityStatus | undefined;
1937
1937
  /**
1938
1938
  * <p>A description of the most recent details about creating the <code>DataSource</code>.</p>
1939
1939
  * @public
1940
1940
  */
1941
- Message?: string;
1941
+ Message?: string | undefined;
1942
1942
  /**
1943
1943
  * <p>Describes the <code>DataSource</code> details specific to Amazon Redshift.</p>
1944
1944
  * @public
1945
1945
  */
1946
- RedshiftMetadata?: RedshiftMetadata;
1946
+ RedshiftMetadata?: RedshiftMetadata | undefined;
1947
1947
  /**
1948
1948
  * <p>The datasource details that are specific to Amazon RDS.</p>
1949
1949
  * @public
1950
1950
  */
1951
- RDSMetadata?: RDSMetadata;
1951
+ RDSMetadata?: RDSMetadata | undefined;
1952
1952
  /**
1953
1953
  * <p>The Amazon Resource Name (ARN) of an <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html#roles-about-termsandconcepts">AWS IAM Role</a>, such as the following: arn:aws:iam::account:role/rolename. </p>
1954
1954
  * @public
1955
1955
  */
1956
- RoleARN?: string;
1956
+ RoleARN?: string | undefined;
1957
1957
  /**
1958
1958
  * <p>
1959
1959
  * The parameter is <code>true</code> if statistics need to be generated from the observation data.
1960
1960
  * </p>
1961
1961
  * @public
1962
1962
  */
1963
- ComputeStatistics?: boolean;
1963
+ ComputeStatistics?: boolean | undefined;
1964
1964
  /**
1965
1965
  * <p>Long integer type that is a 64-bit signed number.</p>
1966
1966
  * @public
1967
1967
  */
1968
- ComputeTime?: number;
1968
+ ComputeTime?: number | undefined;
1969
1969
  /**
1970
1970
  * <p>A timestamp represented in epoch time.</p>
1971
1971
  * @public
1972
1972
  */
1973
- FinishedAt?: Date;
1973
+ FinishedAt?: Date | undefined;
1974
1974
  /**
1975
1975
  * <p>A timestamp represented in epoch time.</p>
1976
1976
  * @public
1977
1977
  */
1978
- StartedAt?: Date;
1978
+ StartedAt?: Date | undefined;
1979
1979
  }
1980
1980
  /**
1981
1981
  * <p>Represents the query results from a <a>DescribeDataSources</a> operation. The content is essentially a list of <code>DataSource</code>.</p>
@@ -1987,12 +1987,12 @@ export interface DescribeDataSourcesOutput {
1987
1987
  * </p>
1988
1988
  * @public
1989
1989
  */
1990
- Results?: DataSource[];
1990
+ Results?: DataSource[] | undefined;
1991
1991
  /**
1992
1992
  * <p>An ID of the next page in the paginated results that indicates at least one more page follows.</p>
1993
1993
  * @public
1994
1994
  */
1995
- NextToken?: string;
1995
+ NextToken?: string | undefined;
1996
1996
  }
1997
1997
  /**
1998
1998
  * @public
@@ -2052,41 +2052,41 @@ export interface DescribeEvaluationsInput {
2052
2052
  * </ul>
2053
2053
  * @public
2054
2054
  */
2055
- FilterVariable?: EvaluationFilterVariable;
2055
+ FilterVariable?: EvaluationFilterVariable | undefined;
2056
2056
  /**
2057
2057
  * <p>The equal to operator. The <code>Evaluation</code> results will have
2058
2058
  * <code>FilterVariable</code> values that exactly match the value specified with <code>EQ</code>.</p>
2059
2059
  * @public
2060
2060
  */
2061
- EQ?: string;
2061
+ EQ?: string | undefined;
2062
2062
  /**
2063
2063
  * <p>The greater than operator. The <code>Evaluation</code> results will
2064
2064
  * have <code>FilterVariable</code> values that are greater than the value specified with <code>GT</code>.</p>
2065
2065
  * @public
2066
2066
  */
2067
- GT?: string;
2067
+ GT?: string | undefined;
2068
2068
  /**
2069
2069
  * <p>The less than operator. The <code>Evaluation</code> results will
2070
2070
  * have <code>FilterVariable</code> values that are less than the value specified with <code>LT</code>.</p>
2071
2071
  * @public
2072
2072
  */
2073
- LT?: string;
2073
+ LT?: string | undefined;
2074
2074
  /**
2075
2075
  * <p>The greater than or equal to operator. The <code>Evaluation</code> results will have <code>FilterVariable</code> values that are greater than or equal to the value specified with <code>GE</code>.
2076
2076
  * </p>
2077
2077
  * @public
2078
2078
  */
2079
- GE?: string;
2079
+ GE?: string | undefined;
2080
2080
  /**
2081
2081
  * <p>The less than or equal to operator. The <code>Evaluation</code> results will have <code>FilterVariable</code> values that are less than or equal to the value specified with <code>LE</code>.</p>
2082
2082
  * @public
2083
2083
  */
2084
- LE?: string;
2084
+ LE?: string | undefined;
2085
2085
  /**
2086
2086
  * <p>The not equal to operator. The <code>Evaluation</code> results will have <code>FilterVariable</code> values not equal to the value specified with <code>NE</code>.</p>
2087
2087
  * @public
2088
2088
  */
2089
- NE?: string;
2089
+ NE?: string | undefined;
2090
2090
  /**
2091
2091
  * <p>A string that is found at the beginning of a variable, such as <code>Name</code> or <code>Id</code>.</p>
2092
2092
  * <p>For example, an <code>Evaluation</code> could have the <code>Name</code>
@@ -2108,7 +2108,7 @@ export interface DescribeEvaluationsInput {
2108
2108
  * </ul>
2109
2109
  * @public
2110
2110
  */
2111
- Prefix?: string;
2111
+ Prefix?: string | undefined;
2112
2112
  /**
2113
2113
  * <p>A two-value parameter that determines the sequence of the resulting list of <code>Evaluation</code>.</p>
2114
2114
  * <ul>
@@ -2124,17 +2124,17 @@ export interface DescribeEvaluationsInput {
2124
2124
  * <p>Results are sorted by <code>FilterVariable</code>.</p>
2125
2125
  * @public
2126
2126
  */
2127
- SortOrder?: SortOrder;
2127
+ SortOrder?: SortOrder | undefined;
2128
2128
  /**
2129
2129
  * <p>The ID of the page in the paginated results.</p>
2130
2130
  * @public
2131
2131
  */
2132
- NextToken?: string;
2132
+ NextToken?: string | undefined;
2133
2133
  /**
2134
2134
  * <p> The maximum number of <code>Evaluation</code> to include in the result.</p>
2135
2135
  * @public
2136
2136
  */
2137
- Limit?: number;
2137
+ Limit?: number | undefined;
2138
2138
  }
2139
2139
  /**
2140
2140
  * <p>Measurements of how well the <code>MLModel</code> performed on known observations. One of the following metrics is returned, based on the type of the <code>MLModel</code>:
@@ -2156,7 +2156,7 @@ export interface DescribeEvaluationsInput {
2156
2156
  * @public
2157
2157
  */
2158
2158
  export interface PerformanceMetrics {
2159
- Properties?: Record<string, string>;
2159
+ Properties?: Record<string, string> | undefined;
2160
2160
  }
2161
2161
  /**
2162
2162
  * <p> Represents the output of <code>GetEvaluation</code> operation. </p>
@@ -2169,42 +2169,42 @@ export interface Evaluation {
2169
2169
  * <p>The ID that is assigned to the <code>Evaluation</code> at creation.</p>
2170
2170
  * @public
2171
2171
  */
2172
- EvaluationId?: string;
2172
+ EvaluationId?: string | undefined;
2173
2173
  /**
2174
2174
  * <p>The ID of the <code>MLModel</code> that is the focus of the evaluation.</p>
2175
2175
  * @public
2176
2176
  */
2177
- MLModelId?: string;
2177
+ MLModelId?: string | undefined;
2178
2178
  /**
2179
2179
  * <p>The ID of the <code>DataSource</code> that is used to evaluate the <code>MLModel</code>.</p>
2180
2180
  * @public
2181
2181
  */
2182
- EvaluationDataSourceId?: string;
2182
+ EvaluationDataSourceId?: string | undefined;
2183
2183
  /**
2184
2184
  * <p>The location and name of the data in Amazon Simple Storage Server (Amazon S3) that is used in the evaluation.</p>
2185
2185
  * @public
2186
2186
  */
2187
- InputDataLocationS3?: string;
2187
+ InputDataLocationS3?: string | undefined;
2188
2188
  /**
2189
2189
  * <p>The AWS user account that invoked the evaluation. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
2190
2190
  * @public
2191
2191
  */
2192
- CreatedByIamUser?: string;
2192
+ CreatedByIamUser?: string | undefined;
2193
2193
  /**
2194
2194
  * <p>The time that the <code>Evaluation</code> was created. The time is expressed in epoch time.</p>
2195
2195
  * @public
2196
2196
  */
2197
- CreatedAt?: Date;
2197
+ CreatedAt?: Date | undefined;
2198
2198
  /**
2199
2199
  * <p>The time of the most recent edit to the <code>Evaluation</code>. The time is expressed in epoch time.</p>
2200
2200
  * @public
2201
2201
  */
2202
- LastUpdatedAt?: Date;
2202
+ LastUpdatedAt?: Date | undefined;
2203
2203
  /**
2204
2204
  * <p>A user-supplied name or description of the <code>Evaluation</code>. </p>
2205
2205
  * @public
2206
2206
  */
2207
- Name?: string;
2207
+ Name?: string | undefined;
2208
2208
  /**
2209
2209
  * <p>The status of the evaluation. This element can have one of the following values:</p>
2210
2210
  * <ul>
@@ -2231,7 +2231,7 @@ export interface Evaluation {
2231
2231
  * </ul>
2232
2232
  * @public
2233
2233
  */
2234
- Status?: EntityStatus;
2234
+ Status?: EntityStatus | undefined;
2235
2235
  /**
2236
2236
  * <p>Measurements of how well the <code>MLModel</code> performed, using observations referenced
2237
2237
  * by the <code>DataSource</code>. One of the following metrics is returned, based on the type of the <code>MLModel</code>:
@@ -2252,27 +2252,27 @@ export interface Evaluation {
2252
2252
  * </p>
2253
2253
  * @public
2254
2254
  */
2255
- PerformanceMetrics?: PerformanceMetrics;
2255
+ PerformanceMetrics?: PerformanceMetrics | undefined;
2256
2256
  /**
2257
2257
  * <p>A description of the most recent details about evaluating the <code>MLModel</code>.</p>
2258
2258
  * @public
2259
2259
  */
2260
- Message?: string;
2260
+ Message?: string | undefined;
2261
2261
  /**
2262
2262
  * <p>Long integer type that is a 64-bit signed number.</p>
2263
2263
  * @public
2264
2264
  */
2265
- ComputeTime?: number;
2265
+ ComputeTime?: number | undefined;
2266
2266
  /**
2267
2267
  * <p>A timestamp represented in epoch time.</p>
2268
2268
  * @public
2269
2269
  */
2270
- FinishedAt?: Date;
2270
+ FinishedAt?: Date | undefined;
2271
2271
  /**
2272
2272
  * <p>A timestamp represented in epoch time.</p>
2273
2273
  * @public
2274
2274
  */
2275
- StartedAt?: Date;
2275
+ StartedAt?: Date | undefined;
2276
2276
  }
2277
2277
  /**
2278
2278
  * <p>Represents the query results from a <code>DescribeEvaluations</code> operation. The content is essentially a list of <code>Evaluation</code>.</p>
@@ -2284,12 +2284,12 @@ export interface DescribeEvaluationsOutput {
2284
2284
  * </p>
2285
2285
  * @public
2286
2286
  */
2287
- Results?: Evaluation[];
2287
+ Results?: Evaluation[] | undefined;
2288
2288
  /**
2289
2289
  * <p>The ID of the next page in the paginated results that indicates at least one more page follows.</p>
2290
2290
  * @public
2291
2291
  */
2292
- NextToken?: string;
2292
+ NextToken?: string | undefined;
2293
2293
  }
2294
2294
  /**
2295
2295
  * @public
@@ -2359,41 +2359,41 @@ export interface DescribeMLModelsInput {
2359
2359
  * </ul>
2360
2360
  * @public
2361
2361
  */
2362
- FilterVariable?: MLModelFilterVariable;
2362
+ FilterVariable?: MLModelFilterVariable | undefined;
2363
2363
  /**
2364
2364
  * <p>The equal to operator. The <code>MLModel</code> results will have
2365
2365
  * <code>FilterVariable</code> values that exactly match the value specified with <code>EQ</code>.</p>
2366
2366
  * @public
2367
2367
  */
2368
- EQ?: string;
2368
+ EQ?: string | undefined;
2369
2369
  /**
2370
2370
  * <p>The greater than operator. The <code>MLModel</code> results will
2371
2371
  * have <code>FilterVariable</code> values that are greater than the value specified with <code>GT</code>.</p>
2372
2372
  * @public
2373
2373
  */
2374
- GT?: string;
2374
+ GT?: string | undefined;
2375
2375
  /**
2376
2376
  * <p>The less than operator. The <code>MLModel</code> results will
2377
2377
  * have <code>FilterVariable</code> values that are less than the value specified with <code>LT</code>.</p>
2378
2378
  * @public
2379
2379
  */
2380
- LT?: string;
2380
+ LT?: string | undefined;
2381
2381
  /**
2382
2382
  * <p>The greater than or equal to operator. The <code>MLModel</code> results will have <code>FilterVariable</code> values that are greater than or equal to the value specified with <code>GE</code>.
2383
2383
  * </p>
2384
2384
  * @public
2385
2385
  */
2386
- GE?: string;
2386
+ GE?: string | undefined;
2387
2387
  /**
2388
2388
  * <p>The less than or equal to operator. The <code>MLModel</code> results will have <code>FilterVariable</code> values that are less than or equal to the value specified with <code>LE</code>.</p>
2389
2389
  * @public
2390
2390
  */
2391
- LE?: string;
2391
+ LE?: string | undefined;
2392
2392
  /**
2393
2393
  * <p>The not equal to operator. The <code>MLModel</code> results will have <code>FilterVariable</code> values not equal to the value specified with <code>NE</code>.</p>
2394
2394
  * @public
2395
2395
  */
2396
- NE?: string;
2396
+ NE?: string | undefined;
2397
2397
  /**
2398
2398
  * <p>A string that is found at the beginning of a variable, such as <code>Name</code> or <code>Id</code>.</p>
2399
2399
  * <p>For example, an <code>MLModel</code> could have the <code>Name</code>
@@ -2415,7 +2415,7 @@ export interface DescribeMLModelsInput {
2415
2415
  * </ul>
2416
2416
  * @public
2417
2417
  */
2418
- Prefix?: string;
2418
+ Prefix?: string | undefined;
2419
2419
  /**
2420
2420
  * <p>A two-value parameter that determines the sequence of the resulting list of <code>MLModel</code>.</p>
2421
2421
  * <ul>
@@ -2431,17 +2431,17 @@ export interface DescribeMLModelsInput {
2431
2431
  * <p>Results are sorted by <code>FilterVariable</code>.</p>
2432
2432
  * @public
2433
2433
  */
2434
- SortOrder?: SortOrder;
2434
+ SortOrder?: SortOrder | undefined;
2435
2435
  /**
2436
2436
  * <p>The ID of the page in the paginated results.</p>
2437
2437
  * @public
2438
2438
  */
2439
- NextToken?: string;
2439
+ NextToken?: string | undefined;
2440
2440
  /**
2441
2441
  * <p>The number of pages of information to include in the result. The range of acceptable values is <code>1</code> through <code>100</code>. The default value is <code>100</code>.</p>
2442
2442
  * @public
2443
2443
  */
2444
- Limit?: number;
2444
+ Limit?: number | undefined;
2445
2445
  }
2446
2446
  /**
2447
2447
  * <p> Represents the output of a <code>GetMLModel</code> operation. </p>
@@ -2453,32 +2453,32 @@ export interface MLModel {
2453
2453
  * <p>The ID assigned to the <code>MLModel</code> at creation.</p>
2454
2454
  * @public
2455
2455
  */
2456
- MLModelId?: string;
2456
+ MLModelId?: string | undefined;
2457
2457
  /**
2458
2458
  * <p>The ID of the training <code>DataSource</code>. The <code>CreateMLModel</code> operation uses the <code>TrainingDataSourceId</code>.</p>
2459
2459
  * @public
2460
2460
  */
2461
- TrainingDataSourceId?: string;
2461
+ TrainingDataSourceId?: string | undefined;
2462
2462
  /**
2463
2463
  * <p>The AWS user account from which the <code>MLModel</code> was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
2464
2464
  * @public
2465
2465
  */
2466
- CreatedByIamUser?: string;
2466
+ CreatedByIamUser?: string | undefined;
2467
2467
  /**
2468
2468
  * <p>The time that the <code>MLModel</code> was created. The time is expressed in epoch time.</p>
2469
2469
  * @public
2470
2470
  */
2471
- CreatedAt?: Date;
2471
+ CreatedAt?: Date | undefined;
2472
2472
  /**
2473
2473
  * <p>The time of the most recent edit to the <code>MLModel</code>. The time is expressed in epoch time.</p>
2474
2474
  * @public
2475
2475
  */
2476
- LastUpdatedAt?: Date;
2476
+ LastUpdatedAt?: Date | undefined;
2477
2477
  /**
2478
2478
  * <p>A user-supplied name or description of the <code>MLModel</code>.</p>
2479
2479
  * @public
2480
2480
  */
2481
- Name?: string;
2481
+ Name?: string | undefined;
2482
2482
  /**
2483
2483
  * <p>The current status of an <code>MLModel</code>. This element can have one of the following values: </p>
2484
2484
  * <ul>
@@ -2507,17 +2507,17 @@ export interface MLModel {
2507
2507
  * </ul>
2508
2508
  * @public
2509
2509
  */
2510
- Status?: EntityStatus;
2510
+ Status?: EntityStatus | undefined;
2511
2511
  /**
2512
2512
  * <p>Long integer type that is a 64-bit signed number.</p>
2513
2513
  * @public
2514
2514
  */
2515
- SizeInBytes?: number;
2515
+ SizeInBytes?: number | undefined;
2516
2516
  /**
2517
2517
  * <p>The current endpoint of the <code>MLModel</code>.</p>
2518
2518
  * @public
2519
2519
  */
2520
- EndpointInfo?: RealtimeEndpointInfo;
2520
+ EndpointInfo?: RealtimeEndpointInfo | undefined;
2521
2521
  /**
2522
2522
  * <p>A list of the training parameters in the <code>MLModel</code>. The list is implemented as
2523
2523
  * a map of key-value pairs.</p>
@@ -2566,12 +2566,12 @@ export interface MLModel {
2566
2566
  * </ul>
2567
2567
  * @public
2568
2568
  */
2569
- TrainingParameters?: Record<string, string>;
2569
+ TrainingParameters?: Record<string, string> | undefined;
2570
2570
  /**
2571
2571
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
2572
2572
  * @public
2573
2573
  */
2574
- InputDataLocationS3?: string;
2574
+ InputDataLocationS3?: string | undefined;
2575
2575
  /**
2576
2576
  * <p>The algorithm used to train the <code>MLModel</code>. The following algorithm is supported:</p>
2577
2577
  * <ul>
@@ -2582,7 +2582,7 @@ export interface MLModel {
2582
2582
  * </ul>
2583
2583
  * @public
2584
2584
  */
2585
- Algorithm?: Algorithm;
2585
+ Algorithm?: Algorithm | undefined;
2586
2586
  /**
2587
2587
  * <p>Identifies the <code>MLModel</code> category. The following are the available types:</p>
2588
2588
  * <ul>
@@ -2604,33 +2604,33 @@ export interface MLModel {
2604
2604
  * </ul>
2605
2605
  * @public
2606
2606
  */
2607
- MLModelType?: MLModelType;
2608
- ScoreThreshold?: number;
2607
+ MLModelType?: MLModelType | undefined;
2608
+ ScoreThreshold?: number | undefined;
2609
2609
  /**
2610
2610
  * <p>The time of the most recent edit to the <code>ScoreThreshold</code>. The time is expressed in epoch time.</p>
2611
2611
  * @public
2612
2612
  */
2613
- ScoreThresholdLastUpdatedAt?: Date;
2613
+ ScoreThresholdLastUpdatedAt?: Date | undefined;
2614
2614
  /**
2615
2615
  * <p>A description of the most recent details about accessing the <code>MLModel</code>.</p>
2616
2616
  * @public
2617
2617
  */
2618
- Message?: string;
2618
+ Message?: string | undefined;
2619
2619
  /**
2620
2620
  * <p>Long integer type that is a 64-bit signed number.</p>
2621
2621
  * @public
2622
2622
  */
2623
- ComputeTime?: number;
2623
+ ComputeTime?: number | undefined;
2624
2624
  /**
2625
2625
  * <p>A timestamp represented in epoch time.</p>
2626
2626
  * @public
2627
2627
  */
2628
- FinishedAt?: Date;
2628
+ FinishedAt?: Date | undefined;
2629
2629
  /**
2630
2630
  * <p>A timestamp represented in epoch time.</p>
2631
2631
  * @public
2632
2632
  */
2633
- StartedAt?: Date;
2633
+ StartedAt?: Date | undefined;
2634
2634
  }
2635
2635
  /**
2636
2636
  * <p>Represents the output of a <code>DescribeMLModels</code> operation. The content is essentially a list of <code>MLModel</code>.</p>
@@ -2641,12 +2641,12 @@ export interface DescribeMLModelsOutput {
2641
2641
  * <p>A list of <code>MLModel</code> that meet the search criteria.</p>
2642
2642
  * @public
2643
2643
  */
2644
- Results?: MLModel[];
2644
+ Results?: MLModel[] | undefined;
2645
2645
  /**
2646
2646
  * <p>The ID of the next page in the paginated results that indicates at least one more page follows.</p>
2647
2647
  * @public
2648
2648
  */
2649
- NextToken?: string;
2649
+ NextToken?: string | undefined;
2650
2650
  }
2651
2651
  /**
2652
2652
  * @public
@@ -2672,17 +2672,17 @@ export interface DescribeTagsOutput {
2672
2672
  * <p>The ID of the tagged ML object.</p>
2673
2673
  * @public
2674
2674
  */
2675
- ResourceId?: string;
2675
+ ResourceId?: string | undefined;
2676
2676
  /**
2677
2677
  * <p>The type of the tagged ML object.</p>
2678
2678
  * @public
2679
2679
  */
2680
- ResourceType?: TaggableResourceType;
2680
+ ResourceType?: TaggableResourceType | undefined;
2681
2681
  /**
2682
2682
  * <p>A list of tags associated with the ML object.</p>
2683
2683
  * @public
2684
2684
  */
2685
- Tags?: Tag[];
2685
+ Tags?: Tag[] | undefined;
2686
2686
  }
2687
2687
  /**
2688
2688
  * @public
@@ -2704,43 +2704,43 @@ export interface GetBatchPredictionOutput {
2704
2704
  * in the request.</p>
2705
2705
  * @public
2706
2706
  */
2707
- BatchPredictionId?: string;
2707
+ BatchPredictionId?: string | undefined;
2708
2708
  /**
2709
2709
  * <p>The ID of the <code>MLModel</code> that generated predictions for the <code>BatchPrediction</code> request.</p>
2710
2710
  * @public
2711
2711
  */
2712
- MLModelId?: string;
2712
+ MLModelId?: string | undefined;
2713
2713
  /**
2714
2714
  * <p>The ID of the <code>DataSource</code> that was used to create the <code>BatchPrediction</code>.
2715
2715
  * </p>
2716
2716
  * @public
2717
2717
  */
2718
- BatchPredictionDataSourceId?: string;
2718
+ BatchPredictionDataSourceId?: string | undefined;
2719
2719
  /**
2720
2720
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
2721
2721
  * @public
2722
2722
  */
2723
- InputDataLocationS3?: string;
2723
+ InputDataLocationS3?: string | undefined;
2724
2724
  /**
2725
2725
  * <p>The AWS user account that invoked the <code>BatchPrediction</code>. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
2726
2726
  * @public
2727
2727
  */
2728
- CreatedByIamUser?: string;
2728
+ CreatedByIamUser?: string | undefined;
2729
2729
  /**
2730
2730
  * <p>The time when the <code>BatchPrediction</code> was created. The time is expressed in epoch time.</p>
2731
2731
  * @public
2732
2732
  */
2733
- CreatedAt?: Date;
2733
+ CreatedAt?: Date | undefined;
2734
2734
  /**
2735
2735
  * <p>The time of the most recent edit to <code>BatchPrediction</code>. The time is expressed in epoch time.</p>
2736
2736
  * @public
2737
2737
  */
2738
- LastUpdatedAt?: Date;
2738
+ LastUpdatedAt?: Date | undefined;
2739
2739
  /**
2740
2740
  * <p>A user-supplied name or description of the <code>BatchPrediction</code>.</p>
2741
2741
  * @public
2742
2742
  */
2743
- Name?: string;
2743
+ Name?: string | undefined;
2744
2744
  /**
2745
2745
  * <p>The status of the <code>BatchPrediction</code>, which can be one of the following values:</p>
2746
2746
  * <ul>
@@ -2767,47 +2767,47 @@ export interface GetBatchPredictionOutput {
2767
2767
  * </ul>
2768
2768
  * @public
2769
2769
  */
2770
- Status?: EntityStatus;
2770
+ Status?: EntityStatus | undefined;
2771
2771
  /**
2772
2772
  * <p>The location of an Amazon S3 bucket or directory to receive the operation results.</p>
2773
2773
  * @public
2774
2774
  */
2775
- OutputUri?: string;
2775
+ OutputUri?: string | undefined;
2776
2776
  /**
2777
2777
  * <p>A link to the file that contains logs of the <code>CreateBatchPrediction</code> operation.</p>
2778
2778
  * @public
2779
2779
  */
2780
- LogUri?: string;
2780
+ LogUri?: string | undefined;
2781
2781
  /**
2782
2782
  * <p>A description of the most recent details about processing the batch prediction request.</p>
2783
2783
  * @public
2784
2784
  */
2785
- Message?: string;
2785
+ Message?: string | undefined;
2786
2786
  /**
2787
2787
  * <p>The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the <code>BatchPrediction</code>, normalized and scaled on computation resources. <code>ComputeTime</code> is only available if the <code>BatchPrediction</code> is in the <code>COMPLETED</code> state.</p>
2788
2788
  * @public
2789
2789
  */
2790
- ComputeTime?: number;
2790
+ ComputeTime?: number | undefined;
2791
2791
  /**
2792
2792
  * <p>The epoch time when Amazon Machine Learning marked the <code>BatchPrediction</code> as <code>COMPLETED</code> or <code>FAILED</code>. <code>FinishedAt</code> is only available when the <code>BatchPrediction</code> is in the <code>COMPLETED</code> or <code>FAILED</code> state.</p>
2793
2793
  * @public
2794
2794
  */
2795
- FinishedAt?: Date;
2795
+ FinishedAt?: Date | undefined;
2796
2796
  /**
2797
2797
  * <p>The epoch time when Amazon Machine Learning marked the <code>BatchPrediction</code> as <code>INPROGRESS</code>. <code>StartedAt</code> isn't available if the <code>BatchPrediction</code> is in the <code>PENDING</code> state.</p>
2798
2798
  * @public
2799
2799
  */
2800
- StartedAt?: Date;
2800
+ StartedAt?: Date | undefined;
2801
2801
  /**
2802
2802
  * <p>The number of total records that Amazon Machine Learning saw while processing the <code>BatchPrediction</code>.</p>
2803
2803
  * @public
2804
2804
  */
2805
- TotalRecordCount?: number;
2805
+ TotalRecordCount?: number | undefined;
2806
2806
  /**
2807
2807
  * <p>The number of invalid records that Amazon Machine Learning saw while processing the <code>BatchPrediction</code>.</p>
2808
2808
  * @public
2809
2809
  */
2810
- InvalidRecordCount?: number;
2810
+ InvalidRecordCount?: number | undefined;
2811
2811
  }
2812
2812
  /**
2813
2813
  * @public
@@ -2824,7 +2824,7 @@ export interface GetDataSourceInput {
2824
2824
  * <p>If false, <code>DataSourceSchema</code> is not returned.</p>
2825
2825
  * @public
2826
2826
  */
2827
- Verbose?: boolean;
2827
+ Verbose?: boolean | undefined;
2828
2828
  }
2829
2829
  /**
2830
2830
  * <p>Represents the output of a <code>GetDataSource</code> operation and describes a <code>DataSource</code>.</p>
@@ -2835,48 +2835,48 @@ export interface GetDataSourceOutput {
2835
2835
  * <p>The ID assigned to the <code>DataSource</code> at creation. This value should be identical to the value of the <code>DataSourceId</code> in the request.</p>
2836
2836
  * @public
2837
2837
  */
2838
- DataSourceId?: string;
2838
+ DataSourceId?: string | undefined;
2839
2839
  /**
2840
2840
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
2841
2841
  * @public
2842
2842
  */
2843
- DataLocationS3?: string;
2843
+ DataLocationS3?: string | undefined;
2844
2844
  /**
2845
2845
  * <p>A JSON string that represents the splitting and rearrangement requirement used when this <code>DataSource</code>
2846
2846
  * was created.</p>
2847
2847
  * @public
2848
2848
  */
2849
- DataRearrangement?: string;
2849
+ DataRearrangement?: string | undefined;
2850
2850
  /**
2851
2851
  * <p>The AWS user account from which the <code>DataSource</code> was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
2852
2852
  * @public
2853
2853
  */
2854
- CreatedByIamUser?: string;
2854
+ CreatedByIamUser?: string | undefined;
2855
2855
  /**
2856
2856
  * <p>The time that the <code>DataSource</code> was created. The time is expressed in epoch time.</p>
2857
2857
  * @public
2858
2858
  */
2859
- CreatedAt?: Date;
2859
+ CreatedAt?: Date | undefined;
2860
2860
  /**
2861
2861
  * <p>The time of the most recent edit to the <code>DataSource</code>. The time is expressed in epoch time.</p>
2862
2862
  * @public
2863
2863
  */
2864
- LastUpdatedAt?: Date;
2864
+ LastUpdatedAt?: Date | undefined;
2865
2865
  /**
2866
2866
  * <p>The total size of observations in the data files.</p>
2867
2867
  * @public
2868
2868
  */
2869
- DataSizeInBytes?: number;
2869
+ DataSizeInBytes?: number | undefined;
2870
2870
  /**
2871
2871
  * <p>The number of data files referenced by the <code>DataSource</code>.</p>
2872
2872
  * @public
2873
2873
  */
2874
- NumberOfFiles?: number;
2874
+ NumberOfFiles?: number | undefined;
2875
2875
  /**
2876
2876
  * <p>A user-supplied name or description of the <code>DataSource</code>.</p>
2877
2877
  * @public
2878
2878
  */
2879
- Name?: string;
2879
+ Name?: string | undefined;
2880
2880
  /**
2881
2881
  * <p>The current status of the <code>DataSource</code>. This element can have one of the following values:</p>
2882
2882
  * <ul>
@@ -2903,61 +2903,61 @@ export interface GetDataSourceOutput {
2903
2903
  * </ul>
2904
2904
  * @public
2905
2905
  */
2906
- Status?: EntityStatus;
2906
+ Status?: EntityStatus | undefined;
2907
2907
  /**
2908
2908
  * <p>A link to the file containing logs of <code>CreateDataSourceFrom*</code> operations.</p>
2909
2909
  * @public
2910
2910
  */
2911
- LogUri?: string;
2911
+ LogUri?: string | undefined;
2912
2912
  /**
2913
2913
  * <p>The user-supplied description of the most recent details about creating the <code>DataSource</code>.</p>
2914
2914
  * @public
2915
2915
  */
2916
- Message?: string;
2916
+ Message?: string | undefined;
2917
2917
  /**
2918
2918
  * <p>Describes the <code>DataSource</code> details specific to Amazon Redshift.</p>
2919
2919
  * @public
2920
2920
  */
2921
- RedshiftMetadata?: RedshiftMetadata;
2921
+ RedshiftMetadata?: RedshiftMetadata | undefined;
2922
2922
  /**
2923
2923
  * <p>The datasource details that are specific to Amazon RDS.</p>
2924
2924
  * @public
2925
2925
  */
2926
- RDSMetadata?: RDSMetadata;
2926
+ RDSMetadata?: RDSMetadata | undefined;
2927
2927
  /**
2928
2928
  * <p>The Amazon Resource Name (ARN) of an <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/roles-toplevel.html#roles-about-termsandconcepts">AWS IAM Role</a>, such as the following: arn:aws:iam::account:role/rolename. </p>
2929
2929
  * @public
2930
2930
  */
2931
- RoleARN?: string;
2931
+ RoleARN?: string | undefined;
2932
2932
  /**
2933
2933
  * <p>
2934
2934
  * The parameter is <code>true</code> if statistics need to be generated from the observation data.
2935
2935
  * </p>
2936
2936
  * @public
2937
2937
  */
2938
- ComputeStatistics?: boolean;
2938
+ ComputeStatistics?: boolean | undefined;
2939
2939
  /**
2940
2940
  * <p>The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the <code>DataSource</code>, normalized and scaled on computation resources. <code>ComputeTime</code> is only available if the <code>DataSource</code> is in the <code>COMPLETED</code> state and the <code>ComputeStatistics</code> is set to true.</p>
2941
2941
  * @public
2942
2942
  */
2943
- ComputeTime?: number;
2943
+ ComputeTime?: number | undefined;
2944
2944
  /**
2945
2945
  * <p>The epoch time when Amazon Machine Learning marked the <code>DataSource</code> as <code>COMPLETED</code> or <code>FAILED</code>. <code>FinishedAt</code> is only available when the <code>DataSource</code> is in the <code>COMPLETED</code> or <code>FAILED</code> state.</p>
2946
2946
  * @public
2947
2947
  */
2948
- FinishedAt?: Date;
2948
+ FinishedAt?: Date | undefined;
2949
2949
  /**
2950
2950
  * <p>The epoch time when Amazon Machine Learning marked the <code>DataSource</code> as <code>INPROGRESS</code>. <code>StartedAt</code> isn't available if the <code>DataSource</code> is in the <code>PENDING</code> state.</p>
2951
2951
  * @public
2952
2952
  */
2953
- StartedAt?: Date;
2953
+ StartedAt?: Date | undefined;
2954
2954
  /**
2955
2955
  * <p>The schema used by all of the data files of this <code>DataSource</code>.</p>
2956
2956
  * <p>
2957
2957
  * <b>Note:</b> This parameter is provided as part of the verbose format.</p>
2958
2958
  * @public
2959
2959
  */
2960
- DataSourceSchema?: string;
2960
+ DataSourceSchema?: string | undefined;
2961
2961
  }
2962
2962
  /**
2963
2963
  * @public
@@ -2978,42 +2978,42 @@ export interface GetEvaluationOutput {
2978
2978
  * <p>The evaluation ID which is same as the <code>EvaluationId</code> in the request.</p>
2979
2979
  * @public
2980
2980
  */
2981
- EvaluationId?: string;
2981
+ EvaluationId?: string | undefined;
2982
2982
  /**
2983
2983
  * <p>The ID of the <code>MLModel</code> that was the focus of the evaluation.</p>
2984
2984
  * @public
2985
2985
  */
2986
- MLModelId?: string;
2986
+ MLModelId?: string | undefined;
2987
2987
  /**
2988
2988
  * <p>The <code>DataSource</code> used for this evaluation.</p>
2989
2989
  * @public
2990
2990
  */
2991
- EvaluationDataSourceId?: string;
2991
+ EvaluationDataSourceId?: string | undefined;
2992
2992
  /**
2993
2993
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
2994
2994
  * @public
2995
2995
  */
2996
- InputDataLocationS3?: string;
2996
+ InputDataLocationS3?: string | undefined;
2997
2997
  /**
2998
2998
  * <p>The AWS user account that invoked the evaluation. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
2999
2999
  * @public
3000
3000
  */
3001
- CreatedByIamUser?: string;
3001
+ CreatedByIamUser?: string | undefined;
3002
3002
  /**
3003
3003
  * <p>The time that the <code>Evaluation</code> was created. The time is expressed in epoch time.</p>
3004
3004
  * @public
3005
3005
  */
3006
- CreatedAt?: Date;
3006
+ CreatedAt?: Date | undefined;
3007
3007
  /**
3008
3008
  * <p>The time of the most recent edit to the <code>Evaluation</code>. The time is expressed in epoch time.</p>
3009
3009
  * @public
3010
3010
  */
3011
- LastUpdatedAt?: Date;
3011
+ LastUpdatedAt?: Date | undefined;
3012
3012
  /**
3013
3013
  * <p>A user-supplied name or description of the <code>Evaluation</code>. </p>
3014
3014
  * @public
3015
3015
  */
3016
- Name?: string;
3016
+ Name?: string | undefined;
3017
3017
  /**
3018
3018
  * <p>The status of the evaluation. This element can have one of the following values:</p>
3019
3019
  * <ul>
@@ -3040,7 +3040,7 @@ export interface GetEvaluationOutput {
3040
3040
  * </ul>
3041
3041
  * @public
3042
3042
  */
3043
- Status?: EntityStatus;
3043
+ Status?: EntityStatus | undefined;
3044
3044
  /**
3045
3045
  * <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>:
3046
3046
  * </p>
@@ -3060,32 +3060,32 @@ export interface GetEvaluationOutput {
3060
3060
  * </p>
3061
3061
  * @public
3062
3062
  */
3063
- PerformanceMetrics?: PerformanceMetrics;
3063
+ PerformanceMetrics?: PerformanceMetrics | undefined;
3064
3064
  /**
3065
3065
  * <p>A link to the file that contains logs of the <code>CreateEvaluation</code> operation.</p>
3066
3066
  * @public
3067
3067
  */
3068
- LogUri?: string;
3068
+ LogUri?: string | undefined;
3069
3069
  /**
3070
3070
  * <p>A description of the most recent details about evaluating the <code>MLModel</code>.</p>
3071
3071
  * @public
3072
3072
  */
3073
- Message?: string;
3073
+ Message?: string | undefined;
3074
3074
  /**
3075
3075
  * <p>The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the <code>Evaluation</code>, normalized and scaled on computation resources. <code>ComputeTime</code> is only available if the <code>Evaluation</code> is in the <code>COMPLETED</code> state.</p>
3076
3076
  * @public
3077
3077
  */
3078
- ComputeTime?: number;
3078
+ ComputeTime?: number | undefined;
3079
3079
  /**
3080
3080
  * <p>The epoch time when Amazon Machine Learning marked the <code>Evaluation</code> as <code>COMPLETED</code> or <code>FAILED</code>. <code>FinishedAt</code> is only available when the <code>Evaluation</code> is in the <code>COMPLETED</code> or <code>FAILED</code> state.</p>
3081
3081
  * @public
3082
3082
  */
3083
- FinishedAt?: Date;
3083
+ FinishedAt?: Date | undefined;
3084
3084
  /**
3085
3085
  * <p>The epoch time when Amazon Machine Learning marked the <code>Evaluation</code> as <code>INPROGRESS</code>. <code>StartedAt</code> isn't available if the <code>Evaluation</code> is in the <code>PENDING</code> state.</p>
3086
3086
  * @public
3087
3087
  */
3088
- StartedAt?: Date;
3088
+ StartedAt?: Date | undefined;
3089
3089
  }
3090
3090
  /**
3091
3091
  * @public
@@ -3102,7 +3102,7 @@ export interface GetMLModelInput {
3102
3102
  * <p>If false, <code>Recipe</code> is not returned.</p>
3103
3103
  * @public
3104
3104
  */
3105
- Verbose?: boolean;
3105
+ Verbose?: boolean | undefined;
3106
3106
  }
3107
3107
  /**
3108
3108
  * <p>Represents the output of a <code>GetMLModel</code> operation, and provides detailed information about a <code>MLModel</code>.</p>
@@ -3114,32 +3114,32 @@ export interface GetMLModelOutput {
3114
3114
  * which is same as the <code>MLModelId</code> in the request.</p>
3115
3115
  * @public
3116
3116
  */
3117
- MLModelId?: string;
3117
+ MLModelId?: string | undefined;
3118
3118
  /**
3119
3119
  * <p>The ID of the training <code>DataSource</code>.</p>
3120
3120
  * @public
3121
3121
  */
3122
- TrainingDataSourceId?: string;
3122
+ TrainingDataSourceId?: string | undefined;
3123
3123
  /**
3124
3124
  * <p>The AWS user account from which the <code>MLModel</code> was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.</p>
3125
3125
  * @public
3126
3126
  */
3127
- CreatedByIamUser?: string;
3127
+ CreatedByIamUser?: string | undefined;
3128
3128
  /**
3129
3129
  * <p>The time that the <code>MLModel</code> was created. The time is expressed in epoch time.</p>
3130
3130
  * @public
3131
3131
  */
3132
- CreatedAt?: Date;
3132
+ CreatedAt?: Date | undefined;
3133
3133
  /**
3134
3134
  * <p>The time of the most recent edit to the <code>MLModel</code>. The time is expressed in epoch time.</p>
3135
3135
  * @public
3136
3136
  */
3137
- LastUpdatedAt?: Date;
3137
+ LastUpdatedAt?: Date | undefined;
3138
3138
  /**
3139
3139
  * <p>A user-supplied name or description of the <code>MLModel</code>.</p>
3140
3140
  * @public
3141
3141
  */
3142
- Name?: string;
3142
+ Name?: string | undefined;
3143
3143
  /**
3144
3144
  * <p>The current status of the <code>MLModel</code>. This element can have one of the following values:</p>
3145
3145
  * <ul>
@@ -3168,18 +3168,18 @@ export interface GetMLModelOutput {
3168
3168
  * </ul>
3169
3169
  * @public
3170
3170
  */
3171
- Status?: EntityStatus;
3171
+ Status?: EntityStatus | undefined;
3172
3172
  /**
3173
3173
  * <p>Long integer type that is a 64-bit signed number.</p>
3174
3174
  * @public
3175
3175
  */
3176
- SizeInBytes?: number;
3176
+ SizeInBytes?: number | undefined;
3177
3177
  /**
3178
3178
  * <p>The current endpoint of the <code>MLModel</code>
3179
3179
  * </p>
3180
3180
  * @public
3181
3181
  */
3182
- EndpointInfo?: RealtimeEndpointInfo;
3182
+ EndpointInfo?: RealtimeEndpointInfo | undefined;
3183
3183
  /**
3184
3184
  * <p>A list of the training parameters in the <code>MLModel</code>. The list is implemented as
3185
3185
  * a map of key-value pairs.</p>
@@ -3228,12 +3228,12 @@ export interface GetMLModelOutput {
3228
3228
  * </ul>
3229
3229
  * @public
3230
3230
  */
3231
- TrainingParameters?: Record<string, string>;
3231
+ TrainingParameters?: Record<string, string> | undefined;
3232
3232
  /**
3233
3233
  * <p>The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).</p>
3234
3234
  * @public
3235
3235
  */
3236
- InputDataLocationS3?: string;
3236
+ InputDataLocationS3?: string | undefined;
3237
3237
  /**
3238
3238
  * <p>Identifies the <code>MLModel</code> category. The following are the available types: </p>
3239
3239
  * <ul>
@@ -3249,7 +3249,7 @@ export interface GetMLModelOutput {
3249
3249
  * </ul>
3250
3250
  * @public
3251
3251
  */
3252
- MLModelType?: MLModelType;
3252
+ MLModelType?: MLModelType | undefined;
3253
3253
  /**
3254
3254
  * <p>The scoring threshold is used in binary classification <code>MLModel</code>
3255
3255
  * models. It marks the boundary between a positive prediction and a
@@ -3259,37 +3259,37 @@ export interface GetMLModelOutput {
3259
3259
  * such as <code>false</code>.</p>
3260
3260
  * @public
3261
3261
  */
3262
- ScoreThreshold?: number;
3262
+ ScoreThreshold?: number | undefined;
3263
3263
  /**
3264
3264
  * <p>The time of the most recent edit to the <code>ScoreThreshold</code>. The time is expressed in epoch time.</p>
3265
3265
  * @public
3266
3266
  */
3267
- ScoreThresholdLastUpdatedAt?: Date;
3267
+ ScoreThresholdLastUpdatedAt?: Date | undefined;
3268
3268
  /**
3269
3269
  * <p>A link to the file that contains logs of the <code>CreateMLModel</code> operation.</p>
3270
3270
  * @public
3271
3271
  */
3272
- LogUri?: string;
3272
+ LogUri?: string | undefined;
3273
3273
  /**
3274
3274
  * <p>A description of the most recent details about accessing the <code>MLModel</code>.</p>
3275
3275
  * @public
3276
3276
  */
3277
- Message?: string;
3277
+ Message?: string | undefined;
3278
3278
  /**
3279
3279
  * <p>The approximate CPU time in milliseconds that Amazon Machine Learning spent processing the <code>MLModel</code>, normalized and scaled on computation resources. <code>ComputeTime</code> is only available if the <code>MLModel</code> is in the <code>COMPLETED</code> state.</p>
3280
3280
  * @public
3281
3281
  */
3282
- ComputeTime?: number;
3282
+ ComputeTime?: number | undefined;
3283
3283
  /**
3284
3284
  * <p>The epoch time when Amazon Machine Learning marked the <code>MLModel</code> as <code>COMPLETED</code> or <code>FAILED</code>. <code>FinishedAt</code> is only available when the <code>MLModel</code> is in the <code>COMPLETED</code> or <code>FAILED</code> state.</p>
3285
3285
  * @public
3286
3286
  */
3287
- FinishedAt?: Date;
3287
+ FinishedAt?: Date | undefined;
3288
3288
  /**
3289
3289
  * <p>The epoch time when Amazon Machine Learning marked the <code>MLModel</code> as <code>INPROGRESS</code>. <code>StartedAt</code> isn't available if the <code>MLModel</code> is in the <code>PENDING</code> state.</p>
3290
3290
  * @public
3291
3291
  */
3292
- StartedAt?: Date;
3292
+ StartedAt?: Date | undefined;
3293
3293
  /**
3294
3294
  * <p>The recipe to use when training the <code>MLModel</code>. The <code>Recipe</code>
3295
3295
  * provides detailed information about the observation data to use during training, and
@@ -3298,14 +3298,14 @@ export interface GetMLModelOutput {
3298
3298
  * <b>Note:</b> This parameter is provided as part of the verbose format.</p>
3299
3299
  * @public
3300
3300
  */
3301
- Recipe?: string;
3301
+ Recipe?: string | undefined;
3302
3302
  /**
3303
3303
  * <p>The schema used by all of the data files referenced by the <code>DataSource</code>.</p>
3304
3304
  * <p>
3305
3305
  * <b>Note:</b> This parameter is provided as part of the verbose format.</p>
3306
3306
  * @public
3307
3307
  */
3308
- Schema?: string;
3308
+ Schema?: string | undefined;
3309
3309
  }
3310
3310
  /**
3311
3311
  * <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
@@ -3314,7 +3314,7 @@ export interface GetMLModelOutput {
3314
3314
  export declare class LimitExceededException extends __BaseException {
3315
3315
  readonly name: "LimitExceededException";
3316
3316
  readonly $fault: "client";
3317
- code?: number;
3317
+ code?: number | undefined;
3318
3318
  /**
3319
3319
  * @internal
3320
3320
  */
@@ -3397,23 +3397,23 @@ export interface Prediction {
3397
3397
  * <code>MLModel</code>.</p>
3398
3398
  * @public
3399
3399
  */
3400
- predictedLabel?: string;
3400
+ predictedLabel?: string | undefined;
3401
3401
  /**
3402
3402
  * <p>The prediction value for <code>REGRESSION</code>
3403
3403
  * <code>MLModel</code>.</p>
3404
3404
  * @public
3405
3405
  */
3406
- predictedValue?: number;
3406
+ predictedValue?: number | undefined;
3407
3407
  /**
3408
3408
  * <p>Provides the raw classification score corresponding to each label.</p>
3409
3409
  * @public
3410
3410
  */
3411
- predictedScores?: Record<string, number>;
3411
+ predictedScores?: Record<string, number> | undefined;
3412
3412
  /**
3413
3413
  * <p>Provides any additional details regarding the prediction.</p>
3414
3414
  * @public
3415
3415
  */
3416
- details?: Partial<Record<DetailsAttributes, string>>;
3416
+ details?: Partial<Record<DetailsAttributes, string>> | undefined;
3417
3417
  }
3418
3418
  /**
3419
3419
  * @public
@@ -3450,7 +3450,7 @@ export interface PredictOutput {
3450
3450
  * </ul>
3451
3451
  * @public
3452
3452
  */
3453
- Prediction?: Prediction;
3453
+ Prediction?: Prediction | undefined;
3454
3454
  }
3455
3455
  /**
3456
3456
  * @public
@@ -3478,7 +3478,7 @@ export interface UpdateBatchPredictionOutput {
3478
3478
  * of the <code>BatchPredictionId</code> in the request.</p>
3479
3479
  * @public
3480
3480
  */
3481
- BatchPredictionId?: string;
3481
+ BatchPredictionId?: string | undefined;
3482
3482
  }
3483
3483
  /**
3484
3484
  * @public
@@ -3506,7 +3506,7 @@ export interface UpdateDataSourceOutput {
3506
3506
  * of the <code>DataSourceID</code> in the request.</p>
3507
3507
  * @public
3508
3508
  */
3509
- DataSourceId?: string;
3509
+ DataSourceId?: string | undefined;
3510
3510
  }
3511
3511
  /**
3512
3512
  * @public
@@ -3534,7 +3534,7 @@ export interface UpdateEvaluationOutput {
3534
3534
  * of the <code>Evaluation</code> in the request.</p>
3535
3535
  * @public
3536
3536
  */
3537
- EvaluationId?: string;
3537
+ EvaluationId?: string | undefined;
3538
3538
  }
3539
3539
  /**
3540
3540
  * @public
@@ -3549,13 +3549,13 @@ export interface UpdateMLModelInput {
3549
3549
  * <p>A user-supplied name or description of the <code>MLModel</code>.</p>
3550
3550
  * @public
3551
3551
  */
3552
- MLModelName?: string;
3552
+ MLModelName?: string | undefined;
3553
3553
  /**
3554
3554
  * <p>The <code>ScoreThreshold</code> used in binary classification <code>MLModel</code> that marks the boundary between a positive prediction and a negative prediction.</p>
3555
3555
  * <p>Output values greater than or equal to the <code>ScoreThreshold</code> receive a positive result from the <code>MLModel</code>, such as <code>true</code>. Output values less than the <code>ScoreThreshold</code> receive a negative response from the <code>MLModel</code>, such as <code>false</code>.</p>
3556
3556
  * @public
3557
3557
  */
3558
- ScoreThreshold?: number;
3558
+ ScoreThreshold?: number | undefined;
3559
3559
  }
3560
3560
  /**
3561
3561
  * <p>Represents the output of an <code>UpdateMLModel</code> operation.</p>
@@ -3568,7 +3568,7 @@ export interface UpdateMLModelOutput {
3568
3568
  * of the <code>MLModelID</code> in the request.</p>
3569
3569
  * @public
3570
3570
  */
3571
- MLModelId?: string;
3571
+ MLModelId?: string | undefined;
3572
3572
  }
3573
3573
  /**
3574
3574
  * @internal