@aws-sdk/client-lookoutequipment 3.686.0 → 3.691.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.
@@ -52,7 +52,7 @@ export interface DatasetSchema {
52
52
  * <p>The data schema used within the given dataset.</p>
53
53
  * @public
54
54
  */
55
- InlineDataSchema?: __LazyJsonString | string;
55
+ InlineDataSchema?: __LazyJsonString | string | undefined;
56
56
  }
57
57
  /**
58
58
  * <p>A tag is a key-value pair that can be added to a resource as metadata. </p>
@@ -84,24 +84,24 @@ export interface CreateDatasetRequest {
84
84
  * column names, and data types. </p>
85
85
  * @public
86
86
  */
87
- DatasetSchema?: DatasetSchema;
87
+ DatasetSchema?: DatasetSchema | undefined;
88
88
  /**
89
89
  * <p>Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout
90
90
  * for Equipment. </p>
91
91
  * @public
92
92
  */
93
- ServerSideKmsKeyId?: string;
93
+ ServerSideKmsKeyId?: string | undefined;
94
94
  /**
95
95
  * <p> A unique identifier for the request. If you do not set the client request token, Amazon
96
96
  * Lookout for Equipment generates one. </p>
97
97
  * @public
98
98
  */
99
- ClientToken?: string;
99
+ ClientToken?: string | undefined;
100
100
  /**
101
101
  * <p>Any tags associated with the ingested data described in the dataset. </p>
102
102
  * @public
103
103
  */
104
- Tags?: Tag[];
104
+ Tags?: Tag[] | undefined;
105
105
  }
106
106
  /**
107
107
  * @public
@@ -125,17 +125,17 @@ export interface CreateDatasetResponse {
125
125
  * <p>The name of the dataset being created. </p>
126
126
  * @public
127
127
  */
128
- DatasetName?: string;
128
+ DatasetName?: string | undefined;
129
129
  /**
130
130
  * <p> The Amazon Resource Name (ARN) of the dataset being created. </p>
131
131
  * @public
132
132
  */
133
- DatasetArn?: string;
133
+ DatasetArn?: string | undefined;
134
134
  /**
135
135
  * <p>Indicates the status of the <code>CreateDataset</code> operation. </p>
136
136
  * @public
137
137
  */
138
- Status?: DatasetStatus;
138
+ Status?: DatasetStatus | undefined;
139
139
  }
140
140
  /**
141
141
  * <p> Processing of the request has failed because of an unknown error, exception or failure.
@@ -202,12 +202,12 @@ export interface InferenceInputNameConfiguration {
202
202
  * (-). </p>
203
203
  * @public
204
204
  */
205
- TimestampFormat?: string;
205
+ TimestampFormat?: string | undefined;
206
206
  /**
207
207
  * <p>Indicates the delimiter character used between items in the data. </p>
208
208
  * @public
209
209
  */
210
- ComponentTimestampDelimiter?: string;
210
+ ComponentTimestampDelimiter?: string | undefined;
211
211
  }
212
212
  /**
213
213
  * <p> Specifies configuration information for the input data for the inference, including
@@ -224,7 +224,7 @@ export interface InferenceS3InputConfiguration {
224
224
  * <p>The prefix for the S3 bucket used for the input data for the inference. </p>
225
225
  * @public
226
226
  */
227
- Prefix?: string;
227
+ Prefix?: string | undefined;
228
228
  }
229
229
  /**
230
230
  * <p>Specifies configuration information for the input data for the inference, including
@@ -237,19 +237,19 @@ export interface InferenceInputConfiguration {
237
237
  * Amazon S3 location of input data.</p>
238
238
  * @public
239
239
  */
240
- S3InputConfiguration?: InferenceS3InputConfiguration;
240
+ S3InputConfiguration?: InferenceS3InputConfiguration | undefined;
241
241
  /**
242
242
  * <p>Indicates the difference between your time zone and Coordinated Universal Time
243
243
  * (UTC).</p>
244
244
  * @public
245
245
  */
246
- InputTimeZoneOffset?: string;
246
+ InputTimeZoneOffset?: string | undefined;
247
247
  /**
248
248
  * <p>Specifies configuration information for the input data for the inference, including
249
249
  * timestamp format and delimiter. </p>
250
250
  * @public
251
251
  */
252
- InferenceInputNameConfiguration?: InferenceInputNameConfiguration;
252
+ InferenceInputNameConfiguration?: InferenceInputNameConfiguration | undefined;
253
253
  }
254
254
  /**
255
255
  * <p> Specifies configuration information for the output results from the inference,
@@ -266,7 +266,7 @@ export interface InferenceS3OutputConfiguration {
266
266
  * <p> The prefix for the S3 bucket used for the output results from the inference. </p>
267
267
  * @public
268
268
  */
269
- Prefix?: string;
269
+ Prefix?: string | undefined;
270
270
  }
271
271
  /**
272
272
  * <p> Specifies configuration information for the output results from for the inference,
@@ -284,7 +284,7 @@ export interface InferenceOutputConfiguration {
284
284
  * <p>The ID number for the KMS key key used to encrypt the inference output. </p>
285
285
  * @public
286
286
  */
287
- KmsKeyId?: string;
287
+ KmsKeyId?: string | undefined;
288
288
  }
289
289
  /**
290
290
  * @public
@@ -328,7 +328,7 @@ export interface CreateInferenceSchedulerRequest {
328
328
  * the inference process</a>.</p>
329
329
  * @public
330
330
  */
331
- DataDelayOffsetInMinutes?: number;
331
+ DataDelayOffsetInMinutes?: number | undefined;
332
332
  /**
333
333
  * <p> How often data is uploaded to the source Amazon S3 bucket for the input data. The value
334
334
  * chosen is the length of time between data uploads. For instance, if you select 5 minutes,
@@ -362,18 +362,18 @@ export interface CreateInferenceSchedulerRequest {
362
362
  * Amazon Lookout for Equipment. </p>
363
363
  * @public
364
364
  */
365
- ServerSideKmsKeyId?: string;
365
+ ServerSideKmsKeyId?: string | undefined;
366
366
  /**
367
367
  * <p> A unique identifier for the request. If you do not set the client request token, Amazon
368
368
  * Lookout for Equipment generates one. </p>
369
369
  * @public
370
370
  */
371
- ClientToken?: string;
371
+ ClientToken?: string | undefined;
372
372
  /**
373
373
  * <p>Any tags associated with the inference scheduler. </p>
374
374
  * @public
375
375
  */
376
- Tags?: Tag[];
376
+ Tags?: Tag[] | undefined;
377
377
  }
378
378
  /**
379
379
  * @public
@@ -410,17 +410,17 @@ export interface CreateInferenceSchedulerResponse {
410
410
  * <p>The Amazon Resource Name (ARN) of the inference scheduler being created. </p>
411
411
  * @public
412
412
  */
413
- InferenceSchedulerArn?: string;
413
+ InferenceSchedulerArn?: string | undefined;
414
414
  /**
415
415
  * <p>The name of inference scheduler being created. </p>
416
416
  * @public
417
417
  */
418
- InferenceSchedulerName?: string;
418
+ InferenceSchedulerName?: string | undefined;
419
419
  /**
420
420
  * <p>Indicates the status of the <code>CreateInferenceScheduler</code> operation. </p>
421
421
  * @public
422
422
  */
423
- Status?: InferenceSchedulerStatus;
423
+ Status?: InferenceSchedulerStatus | undefined;
424
424
  /**
425
425
  * <p>Provides a quality assessment for a model that uses labels.
426
426
  * If Lookout for Equipment determines that the
@@ -436,7 +436,7 @@ export interface CreateInferenceSchedulerResponse {
436
436
  * Amazon Lookout for Equipment</a>.</p>
437
437
  * @public
438
438
  */
439
- ModelQuality?: ModelQuality;
439
+ ModelQuality?: ModelQuality | undefined;
440
440
  }
441
441
  /**
442
442
  * <p> The resource requested could not be found. Verify the resource ID and retry your
@@ -498,27 +498,27 @@ export interface CreateLabelRequest {
498
498
  * security of your data. </p>
499
499
  * @public
500
500
  */
501
- FaultCode?: string;
501
+ FaultCode?: string | undefined;
502
502
  /**
503
503
  * <p> Metadata providing additional information about the label. </p>
504
504
  * <p>Data in this field will be retained for service usage. Follow best practices for the
505
505
  * security of your data.</p>
506
506
  * @public
507
507
  */
508
- Notes?: string;
508
+ Notes?: string | undefined;
509
509
  /**
510
510
  * <p> Indicates that a label pertains to a particular piece of equipment. </p>
511
511
  * <p>Data in this field will be retained for service usage. Follow best practices for the
512
512
  * security of your data.</p>
513
513
  * @public
514
514
  */
515
- Equipment?: string;
515
+ Equipment?: string | undefined;
516
516
  /**
517
517
  * <p> A unique identifier for the request to create a label. If you do not set the client
518
518
  * request token, Lookout for Equipment generates one. </p>
519
519
  * @public
520
520
  */
521
- ClientToken?: string;
521
+ ClientToken?: string | undefined;
522
522
  }
523
523
  /**
524
524
  * @public
@@ -528,7 +528,7 @@ export interface CreateLabelResponse {
528
528
  * <p> The ID of the label that you have created. </p>
529
529
  * @public
530
530
  */
531
- LabelId?: string;
531
+ LabelId?: string | undefined;
532
532
  }
533
533
  /**
534
534
  * @public
@@ -548,20 +548,20 @@ export interface CreateLabelGroupRequest {
548
548
  * security of your data.</p>
549
549
  * @public
550
550
  */
551
- FaultCodes?: string[];
551
+ FaultCodes?: string[] | undefined;
552
552
  /**
553
553
  * <p> A unique identifier for the request to create a label group. If you do not set the
554
554
  * client request token, Lookout for Equipment generates one. </p>
555
555
  * @public
556
556
  */
557
- ClientToken?: string;
557
+ ClientToken?: string | undefined;
558
558
  /**
559
559
  * <p> Tags that provide metadata about the label group you are creating. </p>
560
560
  * <p>Data in this field will be retained for service usage. Follow best practices for the
561
561
  * security of your data.</p>
562
562
  * @public
563
563
  */
564
- Tags?: Tag[];
564
+ Tags?: Tag[] | undefined;
565
565
  }
566
566
  /**
567
567
  * @public
@@ -572,12 +572,12 @@ export interface CreateLabelGroupResponse {
572
572
  * for service usage. Follow best practices for the security of your data. </p>
573
573
  * @public
574
574
  */
575
- LabelGroupName?: string;
575
+ LabelGroupName?: string | undefined;
576
576
  /**
577
577
  * <p> The Amazon Resource Name (ARN) of the label group that you have created. </p>
578
578
  * @public
579
579
  */
580
- LabelGroupArn?: string;
580
+ LabelGroupArn?: string | undefined;
581
581
  }
582
582
  /**
583
583
  * @public
@@ -625,7 +625,7 @@ export interface DataPreProcessingConfiguration {
625
625
  * </p>
626
626
  * @public
627
627
  */
628
- TargetSamplingRate?: TargetSamplingRate;
628
+ TargetSamplingRate?: TargetSamplingRate | undefined;
629
629
  }
630
630
  /**
631
631
  * <p>The location information (prefix and bucket name) for the s3 location being used for
@@ -642,7 +642,7 @@ export interface LabelsS3InputConfiguration {
642
642
  * <p> The prefix for the S3 bucket used for the label data. </p>
643
643
  * @public
644
644
  */
645
- Prefix?: string;
645
+ Prefix?: string | undefined;
646
646
  }
647
647
  /**
648
648
  * <p>Contains the configuration information for the S3 location being used to hold label
@@ -654,12 +654,12 @@ export interface LabelsInputConfiguration {
654
654
  * <p>Contains location information for the S3 location being used for label data. </p>
655
655
  * @public
656
656
  */
657
- S3InputConfiguration?: LabelsS3InputConfiguration;
657
+ S3InputConfiguration?: LabelsS3InputConfiguration | undefined;
658
658
  /**
659
659
  * <p> The name of the label group to be used for label data. </p>
660
660
  * @public
661
661
  */
662
- LabelGroupName?: string;
662
+ LabelGroupName?: string | undefined;
663
663
  }
664
664
  /**
665
665
  * <p>The Amazon S3 location for the pointwise model diagnostics for an Amazon Lookout for Equipment model. </p>
@@ -682,7 +682,7 @@ export interface ModelDiagnosticsS3OutputConfiguration {
682
682
  * the file path and filename of the model evaluation file. </p>
683
683
  * @public
684
684
  */
685
- Prefix?: string;
685
+ Prefix?: string | undefined;
686
686
  }
687
687
  /**
688
688
  * <p>Output configuration information for the pointwise model diagnostics for an Amazon Lookout for Equipment model.</p>
@@ -698,7 +698,7 @@ export interface ModelDiagnosticsOutputConfiguration {
698
698
  * <p>The Amazon Web Services Key Management Service (KMS) key identifier to encrypt the pointwise model diagnostics files.</p>
699
699
  * @public
700
700
  */
701
- KmsKeyId?: string;
701
+ KmsKeyId?: string | undefined;
702
702
  }
703
703
  /**
704
704
  * @public
@@ -718,49 +718,49 @@ export interface CreateModelRequest {
718
718
  * <p>The data schema for the machine learning model being created. </p>
719
719
  * @public
720
720
  */
721
- DatasetSchema?: DatasetSchema;
721
+ DatasetSchema?: DatasetSchema | undefined;
722
722
  /**
723
723
  * <p>The input configuration for the labels being used for the machine learning model that's
724
724
  * being created. </p>
725
725
  * @public
726
726
  */
727
- LabelsInputConfiguration?: LabelsInputConfiguration;
727
+ LabelsInputConfiguration?: LabelsInputConfiguration | undefined;
728
728
  /**
729
729
  * <p>A unique identifier for the request. If you do not set the client request token, Amazon
730
730
  * Lookout for Equipment generates one. </p>
731
731
  * @public
732
732
  */
733
- ClientToken?: string;
733
+ ClientToken?: string | undefined;
734
734
  /**
735
735
  * <p>Indicates the time reference in the dataset that should be used to begin the subset of
736
736
  * training data for the machine learning model. </p>
737
737
  * @public
738
738
  */
739
- TrainingDataStartTime?: Date;
739
+ TrainingDataStartTime?: Date | undefined;
740
740
  /**
741
741
  * <p>Indicates the time reference in the dataset that should be used to end the subset of
742
742
  * training data for the machine learning model. </p>
743
743
  * @public
744
744
  */
745
- TrainingDataEndTime?: Date;
745
+ TrainingDataEndTime?: Date | undefined;
746
746
  /**
747
747
  * <p>Indicates the time reference in the dataset that should be used to begin the subset of
748
748
  * evaluation data for the machine learning model. </p>
749
749
  * @public
750
750
  */
751
- EvaluationDataStartTime?: Date;
751
+ EvaluationDataStartTime?: Date | undefined;
752
752
  /**
753
753
  * <p> Indicates the time reference in the dataset that should be used to end the subset of
754
754
  * evaluation data for the machine learning model. </p>
755
755
  * @public
756
756
  */
757
- EvaluationDataEndTime?: Date;
757
+ EvaluationDataEndTime?: Date | undefined;
758
758
  /**
759
759
  * <p> The Amazon Resource Name (ARN) of a role with permission to access the data source
760
760
  * being used to create the machine learning model. </p>
761
761
  * @public
762
762
  */
763
- RoleArn?: string;
763
+ RoleArn?: string | undefined;
764
764
  /**
765
765
  * <p>The configuration is the <code>TargetSamplingRate</code>, which is the sampling rate of
766
766
  * the data after post processing by Amazon Lookout for Equipment. For example, if you provide data that has been
@@ -773,25 +773,25 @@ export interface CreateModelRequest {
773
773
  * </p>
774
774
  * @public
775
775
  */
776
- DataPreProcessingConfiguration?: DataPreProcessingConfiguration;
776
+ DataPreProcessingConfiguration?: DataPreProcessingConfiguration | undefined;
777
777
  /**
778
778
  * <p>Provides the identifier of the KMS key used to encrypt model data by Amazon Lookout
779
779
  * for Equipment. </p>
780
780
  * @public
781
781
  */
782
- ServerSideKmsKeyId?: string;
782
+ ServerSideKmsKeyId?: string | undefined;
783
783
  /**
784
784
  * <p> Any tags associated with the machine learning model being created. </p>
785
785
  * @public
786
786
  */
787
- Tags?: Tag[];
787
+ Tags?: Tag[] | undefined;
788
788
  /**
789
789
  * <p>Indicates that the asset associated with this sensor has been shut off. As long as this
790
790
  * condition is met, Lookout for Equipment will not use data from this asset for training,
791
791
  * evaluation, or inference.</p>
792
792
  * @public
793
793
  */
794
- OffCondition?: string;
794
+ OffCondition?: string | undefined;
795
795
  /**
796
796
  * <p>The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics.
797
797
  *
@@ -799,7 +799,7 @@ export interface CreateModelRequest {
799
799
  * You must also specify the <code>RoleArn</code> request parameter.</p>
800
800
  * @public
801
801
  */
802
- ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
802
+ ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
803
803
  }
804
804
  /**
805
805
  * @public
@@ -823,12 +823,12 @@ export interface CreateModelResponse {
823
823
  * <p>The Amazon Resource Name (ARN) of the model being created. </p>
824
824
  * @public
825
825
  */
826
- ModelArn?: string;
826
+ ModelArn?: string | undefined;
827
827
  /**
828
828
  * <p>Indicates the status of the <code>CreateModel</code> operation. </p>
829
829
  * @public
830
830
  */
831
- Status?: ModelStatus;
831
+ Status?: ModelStatus | undefined;
832
832
  }
833
833
  /**
834
834
  * @public
@@ -856,7 +856,7 @@ export interface CreateRetrainingSchedulerRequest {
856
856
  * nearest UTC day.</p>
857
857
  * @public
858
858
  */
859
- RetrainingStartDate?: Date;
859
+ RetrainingStartDate?: Date | undefined;
860
860
  /**
861
861
  * <p>This parameter uses the <a href="https://en.wikipedia.org/wiki/ISO_8601#Durations">ISO 8601</a> standard to set the frequency at which you want retraining to occur in
862
862
  * terms of Years, Months, and/or Days (note: other parameters like Time are not currently
@@ -888,13 +888,13 @@ export interface CreateRetrainingSchedulerRequest {
888
888
  * are manually activated</a>.</p>
889
889
  * @public
890
890
  */
891
- PromoteMode?: ModelPromoteMode;
891
+ PromoteMode?: ModelPromoteMode | undefined;
892
892
  /**
893
893
  * <p>A unique identifier for the request. If you do not set the client request token, Amazon
894
894
  * Lookout for Equipment generates one. </p>
895
895
  * @public
896
896
  */
897
- ClientToken?: string;
897
+ ClientToken?: string | undefined;
898
898
  }
899
899
  /**
900
900
  * @public
@@ -918,17 +918,17 @@ export interface CreateRetrainingSchedulerResponse {
918
918
  * <p>The name of the model that you added the retraining scheduler to. </p>
919
919
  * @public
920
920
  */
921
- ModelName?: string;
921
+ ModelName?: string | undefined;
922
922
  /**
923
923
  * <p>The ARN of the model that you added the retraining scheduler to. </p>
924
924
  * @public
925
925
  */
926
- ModelArn?: string;
926
+ ModelArn?: string | undefined;
927
927
  /**
928
928
  * <p>The status of the retraining scheduler. </p>
929
929
  * @public
930
930
  */
931
- Status?: RetrainingSchedulerStatus;
931
+ Status?: RetrainingSchedulerStatus | undefined;
932
932
  }
933
933
  /**
934
934
  * @public
@@ -1193,7 +1193,7 @@ export interface IngestedFilesSummary {
1193
1193
  * format is invalid (for example, a jpg or pdf) or not readable.</p>
1194
1194
  * @public
1195
1195
  */
1196
- DiscardedFiles?: S3Object[];
1196
+ DiscardedFiles?: S3Object[] | undefined;
1197
1197
  }
1198
1198
  /**
1199
1199
  * <p> Specifies S3 configuration information for the input data for the data ingestion job.
@@ -1211,7 +1211,7 @@ export interface IngestionS3InputConfiguration {
1211
1211
  * </p>
1212
1212
  * @public
1213
1213
  */
1214
- Prefix?: string;
1214
+ Prefix?: string | undefined;
1215
1215
  /**
1216
1216
  * <p> The pattern for matching the Amazon S3 files that will be used for ingestion.
1217
1217
  * If the schema was created previously without any KeyPattern, then the default KeyPattern
@@ -1222,7 +1222,7 @@ export interface IngestionS3InputConfiguration {
1222
1222
  * hyphen)</p>
1223
1223
  * @public
1224
1224
  */
1225
- KeyPattern?: string;
1225
+ KeyPattern?: string | undefined;
1226
1226
  }
1227
1227
  /**
1228
1228
  * <p> Specifies configuration information for the input data for the data ingestion job,
@@ -1259,82 +1259,82 @@ export interface DescribeDataIngestionJobResponse {
1259
1259
  * <p>Indicates the job ID of the data ingestion job. </p>
1260
1260
  * @public
1261
1261
  */
1262
- JobId?: string;
1262
+ JobId?: string | undefined;
1263
1263
  /**
1264
1264
  * <p>The Amazon Resource Name (ARN) of the dataset being used in the data ingestion job.
1265
1265
  * </p>
1266
1266
  * @public
1267
1267
  */
1268
- DatasetArn?: string;
1268
+ DatasetArn?: string | undefined;
1269
1269
  /**
1270
1270
  * <p>Specifies the S3 location configuration for the data input for the data ingestion job.
1271
1271
  * </p>
1272
1272
  * @public
1273
1273
  */
1274
- IngestionInputConfiguration?: IngestionInputConfiguration;
1274
+ IngestionInputConfiguration?: IngestionInputConfiguration | undefined;
1275
1275
  /**
1276
1276
  * <p>The Amazon Resource Name (ARN) of an IAM role with permission to access the data source
1277
1277
  * being ingested. </p>
1278
1278
  * @public
1279
1279
  */
1280
- RoleArn?: string;
1280
+ RoleArn?: string | undefined;
1281
1281
  /**
1282
1282
  * <p>The time at which the data ingestion job was created. </p>
1283
1283
  * @public
1284
1284
  */
1285
- CreatedAt?: Date;
1285
+ CreatedAt?: Date | undefined;
1286
1286
  /**
1287
1287
  * <p>Indicates the status of the <code>DataIngestionJob</code> operation. </p>
1288
1288
  * @public
1289
1289
  */
1290
- Status?: IngestionJobStatus;
1290
+ Status?: IngestionJobStatus | undefined;
1291
1291
  /**
1292
1292
  * <p>Specifies the reason for failure when a data ingestion job has failed. </p>
1293
1293
  * @public
1294
1294
  */
1295
- FailedReason?: string;
1295
+ FailedReason?: string | undefined;
1296
1296
  /**
1297
1297
  * <p> Gives statistics about a completed ingestion job. These statistics primarily relate to
1298
1298
  * quantifying incorrect data such as MissingCompleteSensorData, MissingSensorData,
1299
1299
  * UnsupportedDateFormats, InsufficientSensorData, and DuplicateTimeStamps. </p>
1300
1300
  * @public
1301
1301
  */
1302
- DataQualitySummary?: DataQualitySummary;
1302
+ DataQualitySummary?: DataQualitySummary | undefined;
1303
1303
  /**
1304
1304
  * <p>Gives statistics about how many files have been ingested, and which files have not been
1305
1305
  * ingested, for a particular ingestion job.</p>
1306
1306
  * @public
1307
1307
  */
1308
- IngestedFilesSummary?: IngestedFilesSummary;
1308
+ IngestedFilesSummary?: IngestedFilesSummary | undefined;
1309
1309
  /**
1310
1310
  * <p> Provides details about status of the ingestion job that is currently in progress.
1311
1311
  * </p>
1312
1312
  * @public
1313
1313
  */
1314
- StatusDetail?: string;
1314
+ StatusDetail?: string | undefined;
1315
1315
  /**
1316
1316
  * <p> Indicates the size of the ingested dataset. </p>
1317
1317
  * @public
1318
1318
  */
1319
- IngestedDataSize?: number;
1319
+ IngestedDataSize?: number | undefined;
1320
1320
  /**
1321
1321
  * <p> Indicates the earliest timestamp corresponding to data that was successfully ingested
1322
1322
  * during this specific ingestion job. </p>
1323
1323
  * @public
1324
1324
  */
1325
- DataStartTime?: Date;
1325
+ DataStartTime?: Date | undefined;
1326
1326
  /**
1327
1327
  * <p> Indicates the latest timestamp corresponding to data that was successfully ingested
1328
1328
  * during this specific ingestion job. </p>
1329
1329
  * @public
1330
1330
  */
1331
- DataEndTime?: Date;
1331
+ DataEndTime?: Date | undefined;
1332
1332
  /**
1333
1333
  * <p>The Amazon Resource Name (ARN) of the source dataset from which the data used for the
1334
1334
  * data ingestion job was imported from.</p>
1335
1335
  * @public
1336
1336
  */
1337
- SourceDatasetArn?: string;
1337
+ SourceDatasetArn?: string | undefined;
1338
1338
  }
1339
1339
  /**
1340
1340
  * @public
@@ -1354,45 +1354,45 @@ export interface DescribeDatasetResponse {
1354
1354
  * <p>The name of the dataset being described. </p>
1355
1355
  * @public
1356
1356
  */
1357
- DatasetName?: string;
1357
+ DatasetName?: string | undefined;
1358
1358
  /**
1359
1359
  * <p>The Amazon Resource Name (ARN) of the dataset being described. </p>
1360
1360
  * @public
1361
1361
  */
1362
- DatasetArn?: string;
1362
+ DatasetArn?: string | undefined;
1363
1363
  /**
1364
1364
  * <p>Specifies the time the dataset was created in Lookout for Equipment. </p>
1365
1365
  * @public
1366
1366
  */
1367
- CreatedAt?: Date;
1367
+ CreatedAt?: Date | undefined;
1368
1368
  /**
1369
1369
  * <p>Specifies the time the dataset was last updated, if it was. </p>
1370
1370
  * @public
1371
1371
  */
1372
- LastUpdatedAt?: Date;
1372
+ LastUpdatedAt?: Date | undefined;
1373
1373
  /**
1374
1374
  * <p>Indicates the status of the dataset. </p>
1375
1375
  * @public
1376
1376
  */
1377
- Status?: DatasetStatus;
1377
+ Status?: DatasetStatus | undefined;
1378
1378
  /**
1379
1379
  * <p>A JSON description of the data that is in each time series dataset, including names,
1380
1380
  * column names, and data types. </p>
1381
1381
  * @public
1382
1382
  */
1383
- Schema?: __LazyJsonString | string;
1383
+ Schema?: __LazyJsonString | string | undefined;
1384
1384
  /**
1385
1385
  * <p>Provides the identifier of the KMS key used to encrypt dataset data by Amazon Lookout
1386
1386
  * for Equipment. </p>
1387
1387
  * @public
1388
1388
  */
1389
- ServerSideKmsKeyId?: string;
1389
+ ServerSideKmsKeyId?: string | undefined;
1390
1390
  /**
1391
1391
  * <p>Specifies the S3 location configuration for the data input for the data ingestion job.
1392
1392
  * </p>
1393
1393
  * @public
1394
1394
  */
1395
- IngestionInputConfiguration?: IngestionInputConfiguration;
1395
+ IngestionInputConfiguration?: IngestionInputConfiguration | undefined;
1396
1396
  /**
1397
1397
  * <p> Gives statistics associated with the given dataset for the latest successful associated
1398
1398
  * ingestion job id. These statistics primarily relate to quantifying incorrect data such as
@@ -1400,37 +1400,37 @@ export interface DescribeDatasetResponse {
1400
1400
  * InsufficientSensorData, and DuplicateTimeStamps. </p>
1401
1401
  * @public
1402
1402
  */
1403
- DataQualitySummary?: DataQualitySummary;
1403
+ DataQualitySummary?: DataQualitySummary | undefined;
1404
1404
  /**
1405
1405
  * <p>IngestedFilesSummary associated with the given dataset for the latest successful
1406
1406
  * associated ingestion job id. </p>
1407
1407
  * @public
1408
1408
  */
1409
- IngestedFilesSummary?: IngestedFilesSummary;
1409
+ IngestedFilesSummary?: IngestedFilesSummary | undefined;
1410
1410
  /**
1411
1411
  * <p> The Amazon Resource Name (ARN) of the IAM role that you are using for this the data
1412
1412
  * ingestion job. </p>
1413
1413
  * @public
1414
1414
  */
1415
- RoleArn?: string;
1415
+ RoleArn?: string | undefined;
1416
1416
  /**
1417
1417
  * <p> Indicates the earliest timestamp corresponding to data that was successfully ingested
1418
1418
  * during the most recent ingestion of this particular dataset. </p>
1419
1419
  * @public
1420
1420
  */
1421
- DataStartTime?: Date;
1421
+ DataStartTime?: Date | undefined;
1422
1422
  /**
1423
1423
  * <p> Indicates the latest timestamp corresponding to data that was successfully ingested
1424
1424
  * during the most recent ingestion of this particular dataset. </p>
1425
1425
  * @public
1426
1426
  */
1427
- DataEndTime?: Date;
1427
+ DataEndTime?: Date | undefined;
1428
1428
  /**
1429
1429
  * <p>The Amazon Resource Name (ARN) of the source dataset from which the current data being
1430
1430
  * described was imported from.</p>
1431
1431
  * @public
1432
1432
  */
1433
- SourceDatasetArn?: string;
1433
+ SourceDatasetArn?: string | undefined;
1434
1434
  }
1435
1435
  /**
1436
1436
  * @public
@@ -1463,28 +1463,28 @@ export interface DescribeInferenceSchedulerResponse {
1463
1463
  * being described. </p>
1464
1464
  * @public
1465
1465
  */
1466
- ModelArn?: string;
1466
+ ModelArn?: string | undefined;
1467
1467
  /**
1468
1468
  * <p>The name of the machine learning model of the inference scheduler being described.
1469
1469
  * </p>
1470
1470
  * @public
1471
1471
  */
1472
- ModelName?: string;
1472
+ ModelName?: string | undefined;
1473
1473
  /**
1474
1474
  * <p>The name of the inference scheduler being described. </p>
1475
1475
  * @public
1476
1476
  */
1477
- InferenceSchedulerName?: string;
1477
+ InferenceSchedulerName?: string | undefined;
1478
1478
  /**
1479
1479
  * <p>The Amazon Resource Name (ARN) of the inference scheduler being described. </p>
1480
1480
  * @public
1481
1481
  */
1482
- InferenceSchedulerArn?: string;
1482
+ InferenceSchedulerArn?: string | undefined;
1483
1483
  /**
1484
1484
  * <p>Indicates the status of the inference scheduler. </p>
1485
1485
  * @public
1486
1486
  */
1487
- Status?: InferenceSchedulerStatus;
1487
+ Status?: InferenceSchedulerStatus | undefined;
1488
1488
  /**
1489
1489
  * <p> A period of time (in minutes) by which inference on the data is delayed after the data
1490
1490
  * starts. For instance, if you select an offset delay time of five minutes, inference will
@@ -1495,7 +1495,7 @@ export interface DescribeInferenceSchedulerResponse {
1495
1495
  * restart the scheduler when uploading new data.</p>
1496
1496
  * @public
1497
1497
  */
1498
- DataDelayOffsetInMinutes?: number;
1498
+ DataDelayOffsetInMinutes?: number | undefined;
1499
1499
  /**
1500
1500
  * <p>Specifies how often data is uploaded to the source S3 bucket for the input data. This
1501
1501
  * value is the length of time between data uploads. For instance, if you select 5 minutes,
@@ -1504,47 +1504,47 @@ export interface DescribeInferenceSchedulerResponse {
1504
1504
  * this example, it starts once every 5 minutes. </p>
1505
1505
  * @public
1506
1506
  */
1507
- DataUploadFrequency?: DataUploadFrequency;
1507
+ DataUploadFrequency?: DataUploadFrequency | undefined;
1508
1508
  /**
1509
1509
  * <p>Specifies the time at which the inference scheduler was created. </p>
1510
1510
  * @public
1511
1511
  */
1512
- CreatedAt?: Date;
1512
+ CreatedAt?: Date | undefined;
1513
1513
  /**
1514
1514
  * <p>Specifies the time at which the inference scheduler was last updated, if it was. </p>
1515
1515
  * @public
1516
1516
  */
1517
- UpdatedAt?: Date;
1517
+ UpdatedAt?: Date | undefined;
1518
1518
  /**
1519
1519
  * <p> Specifies configuration information for the input data for the inference scheduler,
1520
1520
  * including delimiter, format, and dataset location. </p>
1521
1521
  * @public
1522
1522
  */
1523
- DataInputConfiguration?: InferenceInputConfiguration;
1523
+ DataInputConfiguration?: InferenceInputConfiguration | undefined;
1524
1524
  /**
1525
1525
  * <p> Specifies information for the output results for the inference scheduler, including
1526
1526
  * the output S3 location. </p>
1527
1527
  * @public
1528
1528
  */
1529
- DataOutputConfiguration?: InferenceOutputConfiguration;
1529
+ DataOutputConfiguration?: InferenceOutputConfiguration | undefined;
1530
1530
  /**
1531
1531
  * <p> The Amazon Resource Name (ARN) of a role with permission to access the data source for
1532
1532
  * the inference scheduler being described. </p>
1533
1533
  * @public
1534
1534
  */
1535
- RoleArn?: string;
1535
+ RoleArn?: string | undefined;
1536
1536
  /**
1537
1537
  * <p>Provides the identifier of the KMS key used to encrypt inference scheduler data by
1538
1538
  * Amazon Lookout for Equipment. </p>
1539
1539
  * @public
1540
1540
  */
1541
- ServerSideKmsKeyId?: string;
1541
+ ServerSideKmsKeyId?: string | undefined;
1542
1542
  /**
1543
1543
  * <p>Indicates whether the latest execution for the inference scheduler was Anomalous
1544
1544
  * (anomalous events found) or Normal (no anomalous events found).</p>
1545
1545
  * @public
1546
1546
  */
1547
- LatestInferenceResult?: LatestInferenceResult;
1547
+ LatestInferenceResult?: LatestInferenceResult | undefined;
1548
1548
  }
1549
1549
  /**
1550
1550
  * @public
@@ -1569,56 +1569,56 @@ export interface DescribeLabelResponse {
1569
1569
  * <p> The name of the requested label group. </p>
1570
1570
  * @public
1571
1571
  */
1572
- LabelGroupName?: string;
1572
+ LabelGroupName?: string | undefined;
1573
1573
  /**
1574
1574
  * <p> The Amazon Resource Name (ARN) of the requested label group. </p>
1575
1575
  * @public
1576
1576
  */
1577
- LabelGroupArn?: string;
1577
+ LabelGroupArn?: string | undefined;
1578
1578
  /**
1579
1579
  * <p> The ID of the requested label. </p>
1580
1580
  * @public
1581
1581
  */
1582
- LabelId?: string;
1582
+ LabelId?: string | undefined;
1583
1583
  /**
1584
1584
  * <p> The start time of the requested label. </p>
1585
1585
  * @public
1586
1586
  */
1587
- StartTime?: Date;
1587
+ StartTime?: Date | undefined;
1588
1588
  /**
1589
1589
  * <p> The end time of the requested label. </p>
1590
1590
  * @public
1591
1591
  */
1592
- EndTime?: Date;
1592
+ EndTime?: Date | undefined;
1593
1593
  /**
1594
1594
  * <p> Indicates whether a labeled event represents an anomaly. </p>
1595
1595
  * @public
1596
1596
  */
1597
- Rating?: LabelRating;
1597
+ Rating?: LabelRating | undefined;
1598
1598
  /**
1599
1599
  * <p> Indicates the type of anomaly associated with the label. </p>
1600
1600
  * <p>Data in this field will be retained for service usage. Follow best practices for the
1601
1601
  * security of your data.</p>
1602
1602
  * @public
1603
1603
  */
1604
- FaultCode?: string;
1604
+ FaultCode?: string | undefined;
1605
1605
  /**
1606
1606
  * <p>Metadata providing additional information about the label.</p>
1607
1607
  * <p>Data in this field will be retained for service usage. Follow best practices for the
1608
1608
  * security of your data.</p>
1609
1609
  * @public
1610
1610
  */
1611
- Notes?: string;
1611
+ Notes?: string | undefined;
1612
1612
  /**
1613
1613
  * <p> Indicates that a label pertains to a particular piece of equipment. </p>
1614
1614
  * @public
1615
1615
  */
1616
- Equipment?: string;
1616
+ Equipment?: string | undefined;
1617
1617
  /**
1618
1618
  * <p> The time at which the label was created. </p>
1619
1619
  * @public
1620
1620
  */
1621
- CreatedAt?: Date;
1621
+ CreatedAt?: Date | undefined;
1622
1622
  }
1623
1623
  /**
1624
1624
  * @public
@@ -1638,28 +1638,28 @@ export interface DescribeLabelGroupResponse {
1638
1638
  * <p> The name of the label group. </p>
1639
1639
  * @public
1640
1640
  */
1641
- LabelGroupName?: string;
1641
+ LabelGroupName?: string | undefined;
1642
1642
  /**
1643
1643
  * <p> The Amazon Resource Name (ARN) of the label group. </p>
1644
1644
  * @public
1645
1645
  */
1646
- LabelGroupArn?: string;
1646
+ LabelGroupArn?: string | undefined;
1647
1647
  /**
1648
1648
  * <p> Codes indicating the type of anomaly associated with the labels in the lagbel group.
1649
1649
  * </p>
1650
1650
  * @public
1651
1651
  */
1652
- FaultCodes?: string[];
1652
+ FaultCodes?: string[] | undefined;
1653
1653
  /**
1654
1654
  * <p> The time at which the label group was created. </p>
1655
1655
  * @public
1656
1656
  */
1657
- CreatedAt?: Date;
1657
+ CreatedAt?: Date | undefined;
1658
1658
  /**
1659
1659
  * <p> The time at which the label group was updated. </p>
1660
1660
  * @public
1661
1661
  */
1662
- UpdatedAt?: Date;
1662
+ UpdatedAt?: Date | undefined;
1663
1663
  }
1664
1664
  /**
1665
1665
  * @public
@@ -1694,65 +1694,65 @@ export interface DescribeModelResponse {
1694
1694
  * <p>The name of the machine learning model being described. </p>
1695
1695
  * @public
1696
1696
  */
1697
- ModelName?: string;
1697
+ ModelName?: string | undefined;
1698
1698
  /**
1699
1699
  * <p>The Amazon Resource Name (ARN) of the machine learning model being described. </p>
1700
1700
  * @public
1701
1701
  */
1702
- ModelArn?: string;
1702
+ ModelArn?: string | undefined;
1703
1703
  /**
1704
1704
  * <p>The name of the dataset being used by the machine learning being described. </p>
1705
1705
  * @public
1706
1706
  */
1707
- DatasetName?: string;
1707
+ DatasetName?: string | undefined;
1708
1708
  /**
1709
1709
  * <p>The Amazon Resouce Name (ARN) of the dataset used to create the machine learning model
1710
1710
  * being described. </p>
1711
1711
  * @public
1712
1712
  */
1713
- DatasetArn?: string;
1713
+ DatasetArn?: string | undefined;
1714
1714
  /**
1715
1715
  * <p>A JSON description of the data that is in each time series dataset, including names,
1716
1716
  * column names, and data types. </p>
1717
1717
  * @public
1718
1718
  */
1719
- Schema?: __LazyJsonString | string;
1719
+ Schema?: __LazyJsonString | string | undefined;
1720
1720
  /**
1721
1721
  * <p>Specifies configuration information about the labels input, including its S3 location.
1722
1722
  * </p>
1723
1723
  * @public
1724
1724
  */
1725
- LabelsInputConfiguration?: LabelsInputConfiguration;
1725
+ LabelsInputConfiguration?: LabelsInputConfiguration | undefined;
1726
1726
  /**
1727
1727
  * <p> Indicates the time reference in the dataset that was used to begin the subset of
1728
1728
  * training data for the machine learning model. </p>
1729
1729
  * @public
1730
1730
  */
1731
- TrainingDataStartTime?: Date;
1731
+ TrainingDataStartTime?: Date | undefined;
1732
1732
  /**
1733
1733
  * <p> Indicates the time reference in the dataset that was used to end the subset of training
1734
1734
  * data for the machine learning model. </p>
1735
1735
  * @public
1736
1736
  */
1737
- TrainingDataEndTime?: Date;
1737
+ TrainingDataEndTime?: Date | undefined;
1738
1738
  /**
1739
1739
  * <p> Indicates the time reference in the dataset that was used to begin the subset of
1740
1740
  * evaluation data for the machine learning model. </p>
1741
1741
  * @public
1742
1742
  */
1743
- EvaluationDataStartTime?: Date;
1743
+ EvaluationDataStartTime?: Date | undefined;
1744
1744
  /**
1745
1745
  * <p> Indicates the time reference in the dataset that was used to end the subset of
1746
1746
  * evaluation data for the machine learning model. </p>
1747
1747
  * @public
1748
1748
  */
1749
- EvaluationDataEndTime?: Date;
1749
+ EvaluationDataEndTime?: Date | undefined;
1750
1750
  /**
1751
1751
  * <p> The Amazon Resource Name (ARN) of a role with permission to access the data source for
1752
1752
  * the machine learning model being described. </p>
1753
1753
  * @public
1754
1754
  */
1755
- RoleArn?: string;
1755
+ RoleArn?: string | undefined;
1756
1756
  /**
1757
1757
  * <p>The configuration is the <code>TargetSamplingRate</code>, which is the sampling rate of
1758
1758
  * the data after post processing by Amazon Lookout for Equipment. For example, if you provide data that has been
@@ -1765,173 +1765,173 @@ export interface DescribeModelResponse {
1765
1765
  * </p>
1766
1766
  * @public
1767
1767
  */
1768
- DataPreProcessingConfiguration?: DataPreProcessingConfiguration;
1768
+ DataPreProcessingConfiguration?: DataPreProcessingConfiguration | undefined;
1769
1769
  /**
1770
1770
  * <p>Specifies the current status of the model being described. Status describes the status
1771
1771
  * of the most recent action of the model. </p>
1772
1772
  * @public
1773
1773
  */
1774
- Status?: ModelStatus;
1774
+ Status?: ModelStatus | undefined;
1775
1775
  /**
1776
1776
  * <p>Indicates the time at which the training of the machine learning model began. </p>
1777
1777
  * @public
1778
1778
  */
1779
- TrainingExecutionStartTime?: Date;
1779
+ TrainingExecutionStartTime?: Date | undefined;
1780
1780
  /**
1781
1781
  * <p>Indicates the time at which the training of the machine learning model was completed.
1782
1782
  * </p>
1783
1783
  * @public
1784
1784
  */
1785
- TrainingExecutionEndTime?: Date;
1785
+ TrainingExecutionEndTime?: Date | undefined;
1786
1786
  /**
1787
1787
  * <p>If the training of the machine learning model failed, this indicates the reason for that
1788
1788
  * failure. </p>
1789
1789
  * @public
1790
1790
  */
1791
- FailedReason?: string;
1791
+ FailedReason?: string | undefined;
1792
1792
  /**
1793
1793
  * <p>The Model Metrics show an aggregated summary of the model's performance within the
1794
1794
  * evaluation time range. This is the JSON content of the metrics created when evaluating the
1795
1795
  * model. </p>
1796
1796
  * @public
1797
1797
  */
1798
- ModelMetrics?: __LazyJsonString | string;
1798
+ ModelMetrics?: __LazyJsonString | string | undefined;
1799
1799
  /**
1800
1800
  * <p>Indicates the last time the machine learning model was updated. The type of update is
1801
1801
  * not specified. </p>
1802
1802
  * @public
1803
1803
  */
1804
- LastUpdatedTime?: Date;
1804
+ LastUpdatedTime?: Date | undefined;
1805
1805
  /**
1806
1806
  * <p>Indicates the time and date at which the machine learning model was created. </p>
1807
1807
  * @public
1808
1808
  */
1809
- CreatedAt?: Date;
1809
+ CreatedAt?: Date | undefined;
1810
1810
  /**
1811
1811
  * <p>Provides the identifier of the KMS key used to encrypt model data by Amazon Lookout
1812
1812
  * for Equipment. </p>
1813
1813
  * @public
1814
1814
  */
1815
- ServerSideKmsKeyId?: string;
1815
+ ServerSideKmsKeyId?: string | undefined;
1816
1816
  /**
1817
1817
  * <p>Indicates that the asset associated with this sensor has been shut off. As long as this
1818
1818
  * condition is met, Lookout for Equipment will not use data from this asset for training, evaluation, or
1819
1819
  * inference.</p>
1820
1820
  * @public
1821
1821
  */
1822
- OffCondition?: string;
1822
+ OffCondition?: string | undefined;
1823
1823
  /**
1824
1824
  * <p>The Amazon Resource Name (ARN) of the source model version. This field appears if the
1825
1825
  * active model version was imported.</p>
1826
1826
  * @public
1827
1827
  */
1828
- SourceModelVersionArn?: string;
1828
+ SourceModelVersionArn?: string | undefined;
1829
1829
  /**
1830
1830
  * <p>The date and time when the import job was started. This field appears if the active
1831
1831
  * model version was imported.</p>
1832
1832
  * @public
1833
1833
  */
1834
- ImportJobStartTime?: Date;
1834
+ ImportJobStartTime?: Date | undefined;
1835
1835
  /**
1836
1836
  * <p>The date and time when the import job was completed. This field appears if the active
1837
1837
  * model version was imported.</p>
1838
1838
  * @public
1839
1839
  */
1840
- ImportJobEndTime?: Date;
1840
+ ImportJobEndTime?: Date | undefined;
1841
1841
  /**
1842
1842
  * <p>The name of the model version used by the inference schedular when running a scheduled
1843
1843
  * inference execution.</p>
1844
1844
  * @public
1845
1845
  */
1846
- ActiveModelVersion?: number;
1846
+ ActiveModelVersion?: number | undefined;
1847
1847
  /**
1848
1848
  * <p>The Amazon Resource Name (ARN) of the model version used by the inference scheduler when
1849
1849
  * running a scheduled inference execution.</p>
1850
1850
  * @public
1851
1851
  */
1852
- ActiveModelVersionArn?: string;
1852
+ ActiveModelVersionArn?: string | undefined;
1853
1853
  /**
1854
1854
  * <p>The date the active model version was activated.</p>
1855
1855
  * @public
1856
1856
  */
1857
- ModelVersionActivatedAt?: Date;
1857
+ ModelVersionActivatedAt?: Date | undefined;
1858
1858
  /**
1859
1859
  * <p>The model version that was set as the active model version prior to the current active
1860
1860
  * model version.</p>
1861
1861
  * @public
1862
1862
  */
1863
- PreviousActiveModelVersion?: number;
1863
+ PreviousActiveModelVersion?: number | undefined;
1864
1864
  /**
1865
1865
  * <p>The ARN of the model version that was set as the active model version prior to the
1866
1866
  * current active model version.</p>
1867
1867
  * @public
1868
1868
  */
1869
- PreviousActiveModelVersionArn?: string;
1869
+ PreviousActiveModelVersionArn?: string | undefined;
1870
1870
  /**
1871
1871
  * <p>The date and time when the previous active model version was activated.</p>
1872
1872
  * @public
1873
1873
  */
1874
- PreviousModelVersionActivatedAt?: Date;
1874
+ PreviousModelVersionActivatedAt?: Date | undefined;
1875
1875
  /**
1876
1876
  * <p>If the model version was retrained, this field shows a summary of the performance of the
1877
1877
  * prior model on the new training range. You can use the information in this JSON-formatted
1878
1878
  * object to compare the new model version and the prior model version.</p>
1879
1879
  * @public
1880
1880
  */
1881
- PriorModelMetrics?: __LazyJsonString | string;
1881
+ PriorModelMetrics?: __LazyJsonString | string | undefined;
1882
1882
  /**
1883
1883
  * <p>If the model version was generated by retraining and the training failed, this indicates
1884
1884
  * the reason for that failure. </p>
1885
1885
  * @public
1886
1886
  */
1887
- LatestScheduledRetrainingFailedReason?: string;
1887
+ LatestScheduledRetrainingFailedReason?: string | undefined;
1888
1888
  /**
1889
1889
  * <p>Indicates the status of the most recent scheduled retraining run. </p>
1890
1890
  * @public
1891
1891
  */
1892
- LatestScheduledRetrainingStatus?: ModelVersionStatus;
1892
+ LatestScheduledRetrainingStatus?: ModelVersionStatus | undefined;
1893
1893
  /**
1894
1894
  * <p>Indicates the most recent model version that was generated by retraining. </p>
1895
1895
  * @public
1896
1896
  */
1897
- LatestScheduledRetrainingModelVersion?: number;
1897
+ LatestScheduledRetrainingModelVersion?: number | undefined;
1898
1898
  /**
1899
1899
  * <p>Indicates the start time of the most recent scheduled retraining run. </p>
1900
1900
  * @public
1901
1901
  */
1902
- LatestScheduledRetrainingStartTime?: Date;
1902
+ LatestScheduledRetrainingStartTime?: Date | undefined;
1903
1903
  /**
1904
1904
  * <p>Indicates the number of days of data used in the most recent scheduled retraining run.
1905
1905
  * </p>
1906
1906
  * @public
1907
1907
  */
1908
- LatestScheduledRetrainingAvailableDataInDays?: number;
1908
+ LatestScheduledRetrainingAvailableDataInDays?: number | undefined;
1909
1909
  /**
1910
1910
  * <p>Indicates the date and time that the next scheduled retraining run will start on. Lookout for Equipment
1911
1911
  * truncates the time you provide to the nearest UTC day.</p>
1912
1912
  * @public
1913
1913
  */
1914
- NextScheduledRetrainingStartDate?: Date;
1914
+ NextScheduledRetrainingStartDate?: Date | undefined;
1915
1915
  /**
1916
1916
  * <p>Indicates the start time of the inference data that has been accumulated. </p>
1917
1917
  * @public
1918
1918
  */
1919
- AccumulatedInferenceDataStartTime?: Date;
1919
+ AccumulatedInferenceDataStartTime?: Date | undefined;
1920
1920
  /**
1921
1921
  * <p>Indicates the end time of the inference data that has been accumulated. </p>
1922
1922
  * @public
1923
1923
  */
1924
- AccumulatedInferenceDataEndTime?: Date;
1924
+ AccumulatedInferenceDataEndTime?: Date | undefined;
1925
1925
  /**
1926
1926
  * <p>Indicates the status of the retraining scheduler. </p>
1927
1927
  * @public
1928
1928
  */
1929
- RetrainingSchedulerStatus?: RetrainingSchedulerStatus;
1929
+ RetrainingSchedulerStatus?: RetrainingSchedulerStatus | undefined;
1930
1930
  /**
1931
1931
  * <p>Configuration information for the model's pointwise model diagnostics.</p>
1932
1932
  * @public
1933
1933
  */
1934
- ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
1934
+ ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
1935
1935
  /**
1936
1936
  * <p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the
1937
1937
  * model quality is poor based on training metrics, the value is
@@ -1946,7 +1946,7 @@ export interface DescribeModelResponse {
1946
1946
  * Amazon Lookout for Equipment</a>.</p>
1947
1947
  * @public
1948
1948
  */
1949
- ModelQuality?: ModelQuality;
1949
+ ModelQuality?: ModelQuality | undefined;
1950
1950
  }
1951
1951
  /**
1952
1952
  * @public
@@ -1984,87 +1984,87 @@ export interface DescribeModelVersionResponse {
1984
1984
  * <p>The name of the machine learning model that this version belongs to.</p>
1985
1985
  * @public
1986
1986
  */
1987
- ModelName?: string;
1987
+ ModelName?: string | undefined;
1988
1988
  /**
1989
1989
  * <p>The Amazon Resource Name (ARN) of the parent machine learning model that this version
1990
1990
  * belong to.</p>
1991
1991
  * @public
1992
1992
  */
1993
- ModelArn?: string;
1993
+ ModelArn?: string | undefined;
1994
1994
  /**
1995
1995
  * <p>The version of the machine learning model.</p>
1996
1996
  * @public
1997
1997
  */
1998
- ModelVersion?: number;
1998
+ ModelVersion?: number | undefined;
1999
1999
  /**
2000
2000
  * <p>The Amazon Resource Name (ARN) of the model version.</p>
2001
2001
  * @public
2002
2002
  */
2003
- ModelVersionArn?: string;
2003
+ ModelVersionArn?: string | undefined;
2004
2004
  /**
2005
2005
  * <p>The current status of the model version.</p>
2006
2006
  * @public
2007
2007
  */
2008
- Status?: ModelVersionStatus;
2008
+ Status?: ModelVersionStatus | undefined;
2009
2009
  /**
2010
2010
  * <p>Indicates whether this model version was created by training or by importing.</p>
2011
2011
  * @public
2012
2012
  */
2013
- SourceType?: ModelVersionSourceType;
2013
+ SourceType?: ModelVersionSourceType | undefined;
2014
2014
  /**
2015
2015
  * <p>The name of the dataset used to train the model version.</p>
2016
2016
  * @public
2017
2017
  */
2018
- DatasetName?: string;
2018
+ DatasetName?: string | undefined;
2019
2019
  /**
2020
2020
  * <p>The Amazon Resource Name (ARN) of the dataset used to train the model version.</p>
2021
2021
  * @public
2022
2022
  */
2023
- DatasetArn?: string;
2023
+ DatasetArn?: string | undefined;
2024
2024
  /**
2025
2025
  * <p>The schema of the data used to train the model version.</p>
2026
2026
  * @public
2027
2027
  */
2028
- Schema?: string;
2028
+ Schema?: string | undefined;
2029
2029
  /**
2030
2030
  * <p>Contains the configuration information for the S3 location being used to hold label
2031
2031
  * data. </p>
2032
2032
  * @public
2033
2033
  */
2034
- LabelsInputConfiguration?: LabelsInputConfiguration;
2034
+ LabelsInputConfiguration?: LabelsInputConfiguration | undefined;
2035
2035
  /**
2036
2036
  * <p>The date on which the training data began being gathered. If you imported the version,
2037
2037
  * this is the date that the training data in the source version began being gathered.</p>
2038
2038
  * @public
2039
2039
  */
2040
- TrainingDataStartTime?: Date;
2040
+ TrainingDataStartTime?: Date | undefined;
2041
2041
  /**
2042
2042
  * <p>The date on which the training data finished being gathered. If you imported the
2043
2043
  * version, this is the date that the training data in the source version finished being
2044
2044
  * gathered.</p>
2045
2045
  * @public
2046
2046
  */
2047
- TrainingDataEndTime?: Date;
2047
+ TrainingDataEndTime?: Date | undefined;
2048
2048
  /**
2049
2049
  * <p>The date on which the data in the evaluation set began being gathered. If you imported
2050
2050
  * the version, this is the date that the evaluation set data in the source version began
2051
2051
  * being gathered.</p>
2052
2052
  * @public
2053
2053
  */
2054
- EvaluationDataStartTime?: Date;
2054
+ EvaluationDataStartTime?: Date | undefined;
2055
2055
  /**
2056
2056
  * <p>The date on which the data in the evaluation set began being gathered. If you imported
2057
2057
  * the version, this is the date that the evaluation set data in the source version finished
2058
2058
  * being gathered.</p>
2059
2059
  * @public
2060
2060
  */
2061
- EvaluationDataEndTime?: Date;
2061
+ EvaluationDataEndTime?: Date | undefined;
2062
2062
  /**
2063
2063
  * <p>The Amazon Resource Name (ARN) of the role that was used to train the model
2064
2064
  * version.</p>
2065
2065
  * @public
2066
2066
  */
2067
- RoleArn?: string;
2067
+ RoleArn?: string | undefined;
2068
2068
  /**
2069
2069
  * <p>The configuration is the <code>TargetSamplingRate</code>, which is the sampling rate of
2070
2070
  * the data after post processing by Amazon Lookout for Equipment. For example, if you provide data that has been
@@ -2077,95 +2077,95 @@ export interface DescribeModelVersionResponse {
2077
2077
  * </p>
2078
2078
  * @public
2079
2079
  */
2080
- DataPreProcessingConfiguration?: DataPreProcessingConfiguration;
2080
+ DataPreProcessingConfiguration?: DataPreProcessingConfiguration | undefined;
2081
2081
  /**
2082
2082
  * <p>The time when the training of the version began.</p>
2083
2083
  * @public
2084
2084
  */
2085
- TrainingExecutionStartTime?: Date;
2085
+ TrainingExecutionStartTime?: Date | undefined;
2086
2086
  /**
2087
2087
  * <p>The time when the training of the version completed.</p>
2088
2088
  * @public
2089
2089
  */
2090
- TrainingExecutionEndTime?: Date;
2090
+ TrainingExecutionEndTime?: Date | undefined;
2091
2091
  /**
2092
2092
  * <p>The failure message if the training of the model version failed.</p>
2093
2093
  * @public
2094
2094
  */
2095
- FailedReason?: string;
2095
+ FailedReason?: string | undefined;
2096
2096
  /**
2097
2097
  * <p>Shows an aggregated summary, in JSON format, of the model's performance within the
2098
2098
  * evaluation time range. These metrics are created when evaluating the model.</p>
2099
2099
  * @public
2100
2100
  */
2101
- ModelMetrics?: string;
2101
+ ModelMetrics?: string | undefined;
2102
2102
  /**
2103
2103
  * <p>Indicates the last time the machine learning model version was updated.</p>
2104
2104
  * @public
2105
2105
  */
2106
- LastUpdatedTime?: Date;
2106
+ LastUpdatedTime?: Date | undefined;
2107
2107
  /**
2108
2108
  * <p>Indicates the time and date at which the machine learning model version was
2109
2109
  * created.</p>
2110
2110
  * @public
2111
2111
  */
2112
- CreatedAt?: Date;
2112
+ CreatedAt?: Date | undefined;
2113
2113
  /**
2114
2114
  * <p>The identifier of the KMS key key used to encrypt model version data by
2115
2115
  * Amazon Lookout for Equipment.</p>
2116
2116
  * @public
2117
2117
  */
2118
- ServerSideKmsKeyId?: string;
2118
+ ServerSideKmsKeyId?: string | undefined;
2119
2119
  /**
2120
2120
  * <p>Indicates that the asset associated with this sensor has been shut off. As long as this
2121
2121
  * condition is met, Lookout for Equipment will not use data from this asset for training,
2122
2122
  * evaluation, or inference.</p>
2123
2123
  * @public
2124
2124
  */
2125
- OffCondition?: string;
2125
+ OffCondition?: string | undefined;
2126
2126
  /**
2127
2127
  * <p>If model version was imported, then this field is the arn of the source model
2128
2128
  * version.</p>
2129
2129
  * @public
2130
2130
  */
2131
- SourceModelVersionArn?: string;
2131
+ SourceModelVersionArn?: string | undefined;
2132
2132
  /**
2133
2133
  * <p>The date and time when the import job began. This field appears if the model version was
2134
2134
  * imported.</p>
2135
2135
  * @public
2136
2136
  */
2137
- ImportJobStartTime?: Date;
2137
+ ImportJobStartTime?: Date | undefined;
2138
2138
  /**
2139
2139
  * <p>The date and time when the import job completed. This field appears if the model version
2140
2140
  * was imported.</p>
2141
2141
  * @public
2142
2142
  */
2143
- ImportJobEndTime?: Date;
2143
+ ImportJobEndTime?: Date | undefined;
2144
2144
  /**
2145
2145
  * <p>The size in bytes of the imported data. This field appears if the model version was
2146
2146
  * imported.</p>
2147
2147
  * @public
2148
2148
  */
2149
- ImportedDataSizeInBytes?: number;
2149
+ ImportedDataSizeInBytes?: number | undefined;
2150
2150
  /**
2151
2151
  * <p>If the model version was retrained, this field shows a summary of the performance of the
2152
2152
  * prior model on the new training range. You can use the information in this JSON-formatted
2153
2153
  * object to compare the new model version and the prior model version.</p>
2154
2154
  * @public
2155
2155
  */
2156
- PriorModelMetrics?: string;
2156
+ PriorModelMetrics?: string | undefined;
2157
2157
  /**
2158
2158
  * <p>Indicates the number of days of data used in the most recent scheduled retraining run.
2159
2159
  * </p>
2160
2160
  * @public
2161
2161
  */
2162
- RetrainingAvailableDataInDays?: number;
2162
+ RetrainingAvailableDataInDays?: number | undefined;
2163
2163
  /**
2164
2164
  * <p>Indicates whether the model version was promoted to be the active version after
2165
2165
  * retraining or if there was an error with or cancellation of the retraining. </p>
2166
2166
  * @public
2167
2167
  */
2168
- AutoPromotionResult?: AutoPromotionResult;
2168
+ AutoPromotionResult?: AutoPromotionResult | undefined;
2169
2169
  /**
2170
2170
  * <p>Indicates the reason for the <code>AutoPromotionResult</code>. For example, a model
2171
2171
  * might not be promoted if its performance was worse than the active version, if there was an
@@ -2174,17 +2174,17 @@ export interface DescribeModelVersionResponse {
2174
2174
  * better than the previous model. </p>
2175
2175
  * @public
2176
2176
  */
2177
- AutoPromotionResultReason?: string;
2177
+ AutoPromotionResultReason?: string | undefined;
2178
2178
  /**
2179
2179
  * <p>The Amazon S3 location where Amazon Lookout for Equipment saves the pointwise model diagnostics for the model version.</p>
2180
2180
  * @public
2181
2181
  */
2182
- ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
2182
+ ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
2183
2183
  /**
2184
2184
  * <p>The Amazon S3 output prefix for where Lookout for Equipment saves the pointwise model diagnostics for the model version.</p>
2185
2185
  * @public
2186
2186
  */
2187
- ModelDiagnosticsResultsObject?: S3Object;
2187
+ ModelDiagnosticsResultsObject?: S3Object | undefined;
2188
2188
  /**
2189
2189
  * <p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the
2190
2190
  * model quality is poor based on training metrics, the value is
@@ -2199,7 +2199,7 @@ export interface DescribeModelVersionResponse {
2199
2199
  * Amazon Lookout for Equipment</a>.</p>
2200
2200
  * @public
2201
2201
  */
2202
- ModelQuality?: ModelQuality;
2202
+ ModelQuality?: ModelQuality | undefined;
2203
2203
  }
2204
2204
  /**
2205
2205
  * @public
@@ -2220,22 +2220,22 @@ export interface DescribeResourcePolicyResponse {
2220
2220
  * <p>A unique identifier for a revision of the resource policy.</p>
2221
2221
  * @public
2222
2222
  */
2223
- PolicyRevisionId?: string;
2223
+ PolicyRevisionId?: string | undefined;
2224
2224
  /**
2225
2225
  * <p>The resource policy in a JSON-formatted string.</p>
2226
2226
  * @public
2227
2227
  */
2228
- ResourcePolicy?: string;
2228
+ ResourcePolicy?: string | undefined;
2229
2229
  /**
2230
2230
  * <p>The time when the resource policy was created.</p>
2231
2231
  * @public
2232
2232
  */
2233
- CreationTime?: Date;
2233
+ CreationTime?: Date | undefined;
2234
2234
  /**
2235
2235
  * <p>The time when the resource policy was last modified.</p>
2236
2236
  * @public
2237
2237
  */
2238
- LastModifiedTime?: Date;
2238
+ LastModifiedTime?: Date | undefined;
2239
2239
  }
2240
2240
  /**
2241
2241
  * @public
@@ -2255,34 +2255,34 @@ export interface DescribeRetrainingSchedulerResponse {
2255
2255
  * <p>The name of the model that the retraining scheduler is attached to. </p>
2256
2256
  * @public
2257
2257
  */
2258
- ModelName?: string;
2258
+ ModelName?: string | undefined;
2259
2259
  /**
2260
2260
  * <p>The ARN of the model that the retraining scheduler is attached to. </p>
2261
2261
  * @public
2262
2262
  */
2263
- ModelArn?: string;
2263
+ ModelArn?: string | undefined;
2264
2264
  /**
2265
2265
  * <p>The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the
2266
2266
  * nearest UTC day.</p>
2267
2267
  * @public
2268
2268
  */
2269
- RetrainingStartDate?: Date;
2269
+ RetrainingStartDate?: Date | undefined;
2270
2270
  /**
2271
2271
  * <p>The frequency at which the model retraining is set. This follows the <a href="https://en.wikipedia.org/wiki/ISO_8601#Durations">ISO 8601</a>
2272
2272
  * guidelines.</p>
2273
2273
  * @public
2274
2274
  */
2275
- RetrainingFrequency?: string;
2275
+ RetrainingFrequency?: string | undefined;
2276
2276
  /**
2277
2277
  * <p>The number of past days of data used for retraining.</p>
2278
2278
  * @public
2279
2279
  */
2280
- LookbackWindow?: string;
2280
+ LookbackWindow?: string | undefined;
2281
2281
  /**
2282
2282
  * <p>The status of the retraining scheduler. </p>
2283
2283
  * @public
2284
2284
  */
2285
- Status?: RetrainingSchedulerStatus;
2285
+ Status?: RetrainingSchedulerStatus | undefined;
2286
2286
  /**
2287
2287
  * <p>Indicates how the service uses new models. In <code>MANAGED</code> mode, new models are
2288
2288
  * used for inference if they have better performance than the current model. In
@@ -2290,17 +2290,17 @@ export interface DescribeRetrainingSchedulerResponse {
2290
2290
  * activated</a>.</p>
2291
2291
  * @public
2292
2292
  */
2293
- PromoteMode?: ModelPromoteMode;
2293
+ PromoteMode?: ModelPromoteMode | undefined;
2294
2294
  /**
2295
2295
  * <p>Indicates the time and date at which the retraining scheduler was created. </p>
2296
2296
  * @public
2297
2297
  */
2298
- CreatedAt?: Date;
2298
+ CreatedAt?: Date | undefined;
2299
2299
  /**
2300
2300
  * <p>Indicates the time and date at which the retraining scheduler was updated. </p>
2301
2301
  * @public
2302
2302
  */
2303
- UpdatedAt?: Date;
2303
+ UpdatedAt?: Date | undefined;
2304
2304
  }
2305
2305
  /**
2306
2306
  * @public
@@ -2317,24 +2317,24 @@ export interface ImportDatasetRequest {
2317
2317
  * with the name of the source dataset.</p>
2318
2318
  * @public
2319
2319
  */
2320
- DatasetName?: string;
2320
+ DatasetName?: string | undefined;
2321
2321
  /**
2322
2322
  * <p>A unique identifier for the request. If you do not set the client request token,
2323
2323
  * Amazon Lookout for Equipment generates one. </p>
2324
2324
  * @public
2325
2325
  */
2326
- ClientToken?: string;
2326
+ ClientToken?: string | undefined;
2327
2327
  /**
2328
2328
  * <p>Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.
2329
2329
  * </p>
2330
2330
  * @public
2331
2331
  */
2332
- ServerSideKmsKeyId?: string;
2332
+ ServerSideKmsKeyId?: string | undefined;
2333
2333
  /**
2334
2334
  * <p>Any tags associated with the dataset to be created.</p>
2335
2335
  * @public
2336
2336
  */
2337
- Tags?: Tag[];
2337
+ Tags?: Tag[] | undefined;
2338
2338
  }
2339
2339
  /**
2340
2340
  * @public
@@ -2344,22 +2344,22 @@ export interface ImportDatasetResponse {
2344
2344
  * <p>The name of the created machine learning dataset.</p>
2345
2345
  * @public
2346
2346
  */
2347
- DatasetName?: string;
2347
+ DatasetName?: string | undefined;
2348
2348
  /**
2349
2349
  * <p>The Amazon Resource Name (ARN) of the dataset that was imported.</p>
2350
2350
  * @public
2351
2351
  */
2352
- DatasetArn?: string;
2352
+ DatasetArn?: string | undefined;
2353
2353
  /**
2354
2354
  * <p>The status of the <code>ImportDataset</code> operation.</p>
2355
2355
  * @public
2356
2356
  */
2357
- Status?: DatasetStatus;
2357
+ Status?: DatasetStatus | undefined;
2358
2358
  /**
2359
2359
  * <p>A unique identifier for the job of importing the dataset.</p>
2360
2360
  * @public
2361
2361
  */
2362
- JobId?: string;
2362
+ JobId?: string | undefined;
2363
2363
  }
2364
2364
  /**
2365
2365
  * @public
@@ -2389,7 +2389,7 @@ export interface ImportModelVersionRequest {
2389
2389
  * name of the source model.</p>
2390
2390
  * @public
2391
2391
  */
2392
- ModelName?: string;
2392
+ ModelName?: string | undefined;
2393
2393
  /**
2394
2394
  * <p>The name of the dataset for the machine learning model being imported. </p>
2395
2395
  * @public
@@ -2400,30 +2400,30 @@ export interface ImportModelVersionRequest {
2400
2400
  * data. </p>
2401
2401
  * @public
2402
2402
  */
2403
- LabelsInputConfiguration?: LabelsInputConfiguration;
2403
+ LabelsInputConfiguration?: LabelsInputConfiguration | undefined;
2404
2404
  /**
2405
2405
  * <p>A unique identifier for the request. If you do not set the client request token,
2406
2406
  * Amazon Lookout for Equipment generates one. </p>
2407
2407
  * @public
2408
2408
  */
2409
- ClientToken?: string;
2409
+ ClientToken?: string | undefined;
2410
2410
  /**
2411
2411
  * <p>The Amazon Resource Name (ARN) of a role with permission to access the data source being
2412
2412
  * used to create the machine learning model. </p>
2413
2413
  * @public
2414
2414
  */
2415
- RoleArn?: string;
2415
+ RoleArn?: string | undefined;
2416
2416
  /**
2417
2417
  * <p>Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.
2418
2418
  * </p>
2419
2419
  * @public
2420
2420
  */
2421
- ServerSideKmsKeyId?: string;
2421
+ ServerSideKmsKeyId?: string | undefined;
2422
2422
  /**
2423
2423
  * <p>The tags associated with the machine learning model to be created. </p>
2424
2424
  * @public
2425
2425
  */
2426
- Tags?: Tag[];
2426
+ Tags?: Tag[] | undefined;
2427
2427
  /**
2428
2428
  * <p>Indicates how to import the accumulated inference data when a model version is imported.
2429
2429
  * The possible values are as follows:</p>
@@ -2442,7 +2442,7 @@ export interface ImportModelVersionRequest {
2442
2442
  * </ul>
2443
2443
  * @public
2444
2444
  */
2445
- InferenceDataImportStrategy?: InferenceDataImportStrategy;
2445
+ InferenceDataImportStrategy?: InferenceDataImportStrategy | undefined;
2446
2446
  }
2447
2447
  /**
2448
2448
  * @public
@@ -2452,27 +2452,27 @@ export interface ImportModelVersionResponse {
2452
2452
  * <p>The name for the machine learning model.</p>
2453
2453
  * @public
2454
2454
  */
2455
- ModelName?: string;
2455
+ ModelName?: string | undefined;
2456
2456
  /**
2457
2457
  * <p>The Amazon Resource Name (ARN) of the model being created. </p>
2458
2458
  * @public
2459
2459
  */
2460
- ModelArn?: string;
2460
+ ModelArn?: string | undefined;
2461
2461
  /**
2462
2462
  * <p>The Amazon Resource Name (ARN) of the model version being created. </p>
2463
2463
  * @public
2464
2464
  */
2465
- ModelVersionArn?: string;
2465
+ ModelVersionArn?: string | undefined;
2466
2466
  /**
2467
2467
  * <p>The version of the model being created.</p>
2468
2468
  * @public
2469
2469
  */
2470
- ModelVersion?: number;
2470
+ ModelVersion?: number | undefined;
2471
2471
  /**
2472
2472
  * <p>The status of the <code>ImportModelVersion</code> operation. </p>
2473
2473
  * @public
2474
2474
  */
2475
- Status?: ModelVersionStatus;
2475
+ Status?: ModelVersionStatus | undefined;
2476
2476
  }
2477
2477
  /**
2478
2478
  * @public
@@ -2482,23 +2482,23 @@ export interface ListDataIngestionJobsRequest {
2482
2482
  * <p>The name of the dataset being used for the data ingestion job. </p>
2483
2483
  * @public
2484
2484
  */
2485
- DatasetName?: string;
2485
+ DatasetName?: string | undefined;
2486
2486
  /**
2487
2487
  * <p>An opaque pagination token indicating where to continue the listing of data ingestion
2488
2488
  * jobs. </p>
2489
2489
  * @public
2490
2490
  */
2491
- NextToken?: string;
2491
+ NextToken?: string | undefined;
2492
2492
  /**
2493
2493
  * <p> Specifies the maximum number of data ingestion jobs to list. </p>
2494
2494
  * @public
2495
2495
  */
2496
- MaxResults?: number;
2496
+ MaxResults?: number | undefined;
2497
2497
  /**
2498
2498
  * <p>Indicates the status of the data ingestion job. </p>
2499
2499
  * @public
2500
2500
  */
2501
- Status?: IngestionJobStatus;
2501
+ Status?: IngestionJobStatus | undefined;
2502
2502
  }
2503
2503
  /**
2504
2504
  * <p>Provides information about a specified data ingestion job, including dataset
@@ -2510,28 +2510,28 @@ export interface DataIngestionJobSummary {
2510
2510
  * <p>Indicates the job ID of the data ingestion job. </p>
2511
2511
  * @public
2512
2512
  */
2513
- JobId?: string;
2513
+ JobId?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The name of the dataset used for the data ingestion job. </p>
2516
2516
  * @public
2517
2517
  */
2518
- DatasetName?: string;
2518
+ DatasetName?: string | undefined;
2519
2519
  /**
2520
2520
  * <p>The Amazon Resource Name (ARN) of the dataset used in the data ingestion job. </p>
2521
2521
  * @public
2522
2522
  */
2523
- DatasetArn?: string;
2523
+ DatasetArn?: string | undefined;
2524
2524
  /**
2525
2525
  * <p> Specifies information for the input data for the data inference job, including data
2526
2526
  * Amazon S3 location parameters. </p>
2527
2527
  * @public
2528
2528
  */
2529
- IngestionInputConfiguration?: IngestionInputConfiguration;
2529
+ IngestionInputConfiguration?: IngestionInputConfiguration | undefined;
2530
2530
  /**
2531
2531
  * <p>Indicates the status of the data ingestion job. </p>
2532
2532
  * @public
2533
2533
  */
2534
- Status?: IngestionJobStatus;
2534
+ Status?: IngestionJobStatus | undefined;
2535
2535
  }
2536
2536
  /**
2537
2537
  * @public
@@ -2542,13 +2542,13 @@ export interface ListDataIngestionJobsResponse {
2542
2542
  * jobs. </p>
2543
2543
  * @public
2544
2544
  */
2545
- NextToken?: string;
2545
+ NextToken?: string | undefined;
2546
2546
  /**
2547
2547
  * <p>Specifies information about the specific data ingestion job, including dataset name and
2548
2548
  * status. </p>
2549
2549
  * @public
2550
2550
  */
2551
- DataIngestionJobSummaries?: DataIngestionJobSummary[];
2551
+ DataIngestionJobSummaries?: DataIngestionJobSummary[] | undefined;
2552
2552
  }
2553
2553
  /**
2554
2554
  * @public
@@ -2559,17 +2559,17 @@ export interface ListDatasetsRequest {
2559
2559
  * </p>
2560
2560
  * @public
2561
2561
  */
2562
- NextToken?: string;
2562
+ NextToken?: string | undefined;
2563
2563
  /**
2564
2564
  * <p> Specifies the maximum number of datasets to list. </p>
2565
2565
  * @public
2566
2566
  */
2567
- MaxResults?: number;
2567
+ MaxResults?: number | undefined;
2568
2568
  /**
2569
2569
  * <p>The beginning of the name of the datasets to be listed. </p>
2570
2570
  * @public
2571
2571
  */
2572
- DatasetNameBeginsWith?: string;
2572
+ DatasetNameBeginsWith?: string | undefined;
2573
2573
  }
2574
2574
  /**
2575
2575
  * <p>Contains information about the specific data set, including name, ARN, and status.
@@ -2581,22 +2581,22 @@ export interface DatasetSummary {
2581
2581
  * <p>The name of the dataset. </p>
2582
2582
  * @public
2583
2583
  */
2584
- DatasetName?: string;
2584
+ DatasetName?: string | undefined;
2585
2585
  /**
2586
2586
  * <p>The Amazon Resource Name (ARN) of the specified dataset. </p>
2587
2587
  * @public
2588
2588
  */
2589
- DatasetArn?: string;
2589
+ DatasetArn?: string | undefined;
2590
2590
  /**
2591
2591
  * <p>Indicates the status of the dataset. </p>
2592
2592
  * @public
2593
2593
  */
2594
- Status?: DatasetStatus;
2594
+ Status?: DatasetStatus | undefined;
2595
2595
  /**
2596
2596
  * <p>The time at which the dataset was created in Amazon Lookout for Equipment. </p>
2597
2597
  * @public
2598
2598
  */
2599
- CreatedAt?: Date;
2599
+ CreatedAt?: Date | undefined;
2600
2600
  }
2601
2601
  /**
2602
2602
  * @public
@@ -2607,13 +2607,13 @@ export interface ListDatasetsResponse {
2607
2607
  * </p>
2608
2608
  * @public
2609
2609
  */
2610
- NextToken?: string;
2610
+ NextToken?: string | undefined;
2611
2611
  /**
2612
2612
  * <p>Provides information about the specified dataset, including creation time, dataset ARN,
2613
2613
  * and status. </p>
2614
2614
  * @public
2615
2615
  */
2616
- DatasetSummaries?: DatasetSummary[];
2616
+ DatasetSummaries?: DatasetSummary[] | undefined;
2617
2617
  }
2618
2618
  /**
2619
2619
  * @public
@@ -2624,12 +2624,12 @@ export interface ListInferenceEventsRequest {
2624
2624
  * events.</p>
2625
2625
  * @public
2626
2626
  */
2627
- NextToken?: string;
2627
+ NextToken?: string | undefined;
2628
2628
  /**
2629
2629
  * <p>Specifies the maximum number of inference events to list. </p>
2630
2630
  * @public
2631
2631
  */
2632
- MaxResults?: number;
2632
+ MaxResults?: number | undefined;
2633
2633
  /**
2634
2634
  * <p>The name of the inference scheduler for the inference events listed. </p>
2635
2635
  * @public
@@ -2659,33 +2659,33 @@ export interface InferenceEventSummary {
2659
2659
  * event. </p>
2660
2660
  * @public
2661
2661
  */
2662
- InferenceSchedulerArn?: string;
2662
+ InferenceSchedulerArn?: string | undefined;
2663
2663
  /**
2664
2664
  * <p>The name of the inference scheduler being used for the inference events. </p>
2665
2665
  * @public
2666
2666
  */
2667
- InferenceSchedulerName?: string;
2667
+ InferenceSchedulerName?: string | undefined;
2668
2668
  /**
2669
2669
  * <p>Indicates the starting time of an inference event. </p>
2670
2670
  * @public
2671
2671
  */
2672
- EventStartTime?: Date;
2672
+ EventStartTime?: Date | undefined;
2673
2673
  /**
2674
2674
  * <p>Indicates the ending time of an inference event. </p>
2675
2675
  * @public
2676
2676
  */
2677
- EventEndTime?: Date;
2677
+ EventEndTime?: Date | undefined;
2678
2678
  /**
2679
2679
  * <p> An array which specifies the names and values of all sensors contributing to an
2680
2680
  * inference event.</p>
2681
2681
  * @public
2682
2682
  */
2683
- Diagnostics?: string;
2683
+ Diagnostics?: string | undefined;
2684
2684
  /**
2685
2685
  * <p> Indicates the size of an inference event in seconds. </p>
2686
2686
  * @public
2687
2687
  */
2688
- EventDurationInSeconds?: number;
2688
+ EventDurationInSeconds?: number | undefined;
2689
2689
  }
2690
2690
  /**
2691
2691
  * @public
@@ -2696,14 +2696,14 @@ export interface ListInferenceEventsResponse {
2696
2696
  * executions. </p>
2697
2697
  * @public
2698
2698
  */
2699
- NextToken?: string;
2699
+ NextToken?: string | undefined;
2700
2700
  /**
2701
2701
  * <p>Provides an array of information about the individual inference events returned from the
2702
2702
  * <code>ListInferenceEvents</code> operation, including scheduler used, event start time,
2703
2703
  * event end time, diagnostics, and so on. </p>
2704
2704
  * @public
2705
2705
  */
2706
- InferenceEventSummaries?: InferenceEventSummary[];
2706
+ InferenceEventSummaries?: InferenceEventSummary[] | undefined;
2707
2707
  }
2708
2708
  /**
2709
2709
  * @public
@@ -2727,12 +2727,12 @@ export interface ListInferenceExecutionsRequest {
2727
2727
  * executions.</p>
2728
2728
  * @public
2729
2729
  */
2730
- NextToken?: string;
2730
+ NextToken?: string | undefined;
2731
2731
  /**
2732
2732
  * <p>Specifies the maximum number of inference executions to list. </p>
2733
2733
  * @public
2734
2734
  */
2735
- MaxResults?: number;
2735
+ MaxResults?: number | undefined;
2736
2736
  /**
2737
2737
  * <p>The name of the inference scheduler for the inference execution listed. </p>
2738
2738
  * @public
@@ -2743,18 +2743,18 @@ export interface ListInferenceExecutionsRequest {
2743
2743
  * execution. </p>
2744
2744
  * @public
2745
2745
  */
2746
- DataStartTimeAfter?: Date;
2746
+ DataStartTimeAfter?: Date | undefined;
2747
2747
  /**
2748
2748
  * <p>The time reference in the inferenced dataset before which Amazon Lookout for Equipment stopped the
2749
2749
  * inference execution. </p>
2750
2750
  * @public
2751
2751
  */
2752
- DataEndTimeBefore?: Date;
2752
+ DataEndTimeBefore?: Date | undefined;
2753
2753
  /**
2754
2754
  * <p>The status of the inference execution. </p>
2755
2755
  * @public
2756
2756
  */
2757
- Status?: InferenceExecutionStatus;
2757
+ Status?: InferenceExecutionStatus | undefined;
2758
2758
  }
2759
2759
  /**
2760
2760
  * <p>Contains information about the specific inference execution, including input and output
@@ -2766,81 +2766,81 @@ export interface InferenceExecutionSummary {
2766
2766
  * <p>The name of the machine learning model being used for the inference execution. </p>
2767
2767
  * @public
2768
2768
  */
2769
- ModelName?: string;
2769
+ ModelName?: string | undefined;
2770
2770
  /**
2771
2771
  * <p>The Amazon Resource Name (ARN) of the machine learning model used for the inference
2772
2772
  * execution. </p>
2773
2773
  * @public
2774
2774
  */
2775
- ModelArn?: string;
2775
+ ModelArn?: string | undefined;
2776
2776
  /**
2777
2777
  * <p>The name of the inference scheduler being used for the inference execution. </p>
2778
2778
  * @public
2779
2779
  */
2780
- InferenceSchedulerName?: string;
2780
+ InferenceSchedulerName?: string | undefined;
2781
2781
  /**
2782
2782
  * <p> The Amazon Resource Name (ARN) of the inference scheduler being used for the inference
2783
2783
  * execution. </p>
2784
2784
  * @public
2785
2785
  */
2786
- InferenceSchedulerArn?: string;
2786
+ InferenceSchedulerArn?: string | undefined;
2787
2787
  /**
2788
2788
  * <p>Indicates the start time at which the inference scheduler began the specific inference
2789
2789
  * execution. </p>
2790
2790
  * @public
2791
2791
  */
2792
- ScheduledStartTime?: Date;
2792
+ ScheduledStartTime?: Date | undefined;
2793
2793
  /**
2794
2794
  * <p>Indicates the time reference in the dataset at which the inference execution began.
2795
2795
  * </p>
2796
2796
  * @public
2797
2797
  */
2798
- DataStartTime?: Date;
2798
+ DataStartTime?: Date | undefined;
2799
2799
  /**
2800
2800
  * <p>Indicates the time reference in the dataset at which the inference execution stopped.
2801
2801
  * </p>
2802
2802
  * @public
2803
2803
  */
2804
- DataEndTime?: Date;
2804
+ DataEndTime?: Date | undefined;
2805
2805
  /**
2806
2806
  * <p> Specifies configuration information for the input data for the inference scheduler,
2807
2807
  * including delimiter, format, and dataset location. </p>
2808
2808
  * @public
2809
2809
  */
2810
- DataInputConfiguration?: InferenceInputConfiguration;
2810
+ DataInputConfiguration?: InferenceInputConfiguration | undefined;
2811
2811
  /**
2812
2812
  * <p> Specifies configuration information for the output results from for the inference
2813
2813
  * execution, including the output Amazon S3 location.
2814
2814
  * </p>
2815
2815
  * @public
2816
2816
  */
2817
- DataOutputConfiguration?: InferenceOutputConfiguration;
2817
+ DataOutputConfiguration?: InferenceOutputConfiguration | undefined;
2818
2818
  /**
2819
2819
  * <p>The S3 object that the inference execution results were uploaded to.</p>
2820
2820
  * @public
2821
2821
  */
2822
- CustomerResultObject?: S3Object;
2822
+ CustomerResultObject?: S3Object | undefined;
2823
2823
  /**
2824
2824
  * <p>Indicates the status of the inference execution. </p>
2825
2825
  * @public
2826
2826
  */
2827
- Status?: InferenceExecutionStatus;
2827
+ Status?: InferenceExecutionStatus | undefined;
2828
2828
  /**
2829
2829
  * <p> Specifies the reason for failure when an inference execution has failed. </p>
2830
2830
  * @public
2831
2831
  */
2832
- FailedReason?: string;
2832
+ FailedReason?: string | undefined;
2833
2833
  /**
2834
2834
  * <p>The model version used for the inference execution.</p>
2835
2835
  * @public
2836
2836
  */
2837
- ModelVersion?: number;
2837
+ ModelVersion?: number | undefined;
2838
2838
  /**
2839
2839
  * <p>The Amazon Resource Number (ARN) of the model version used for the inference
2840
2840
  * execution.</p>
2841
2841
  * @public
2842
2842
  */
2843
- ModelVersionArn?: string;
2843
+ ModelVersionArn?: string | undefined;
2844
2844
  }
2845
2845
  /**
2846
2846
  * @public
@@ -2851,7 +2851,7 @@ export interface ListInferenceExecutionsResponse {
2851
2851
  * executions. </p>
2852
2852
  * @public
2853
2853
  */
2854
- NextToken?: string;
2854
+ NextToken?: string | undefined;
2855
2855
  /**
2856
2856
  * <p>Provides an array of information about the individual inference executions returned from
2857
2857
  * the <code>ListInferenceExecutions</code> operation, including model used, inference
@@ -2864,7 +2864,7 @@ export interface ListInferenceExecutionsResponse {
2864
2864
  * </note>
2865
2865
  * @public
2866
2866
  */
2867
- InferenceExecutionSummaries?: InferenceExecutionSummary[];
2867
+ InferenceExecutionSummaries?: InferenceExecutionSummary[] | undefined;
2868
2868
  }
2869
2869
  /**
2870
2870
  * @public
@@ -2875,28 +2875,28 @@ export interface ListInferenceSchedulersRequest {
2875
2875
  * schedulers. </p>
2876
2876
  * @public
2877
2877
  */
2878
- NextToken?: string;
2878
+ NextToken?: string | undefined;
2879
2879
  /**
2880
2880
  * <p> Specifies the maximum number of inference schedulers to list. </p>
2881
2881
  * @public
2882
2882
  */
2883
- MaxResults?: number;
2883
+ MaxResults?: number | undefined;
2884
2884
  /**
2885
2885
  * <p>The beginning of the name of the inference schedulers to be listed. </p>
2886
2886
  * @public
2887
2887
  */
2888
- InferenceSchedulerNameBeginsWith?: string;
2888
+ InferenceSchedulerNameBeginsWith?: string | undefined;
2889
2889
  /**
2890
2890
  * <p>The name of the machine learning model used by the inference scheduler to be listed.
2891
2891
  * </p>
2892
2892
  * @public
2893
2893
  */
2894
- ModelName?: string;
2894
+ ModelName?: string | undefined;
2895
2895
  /**
2896
2896
  * <p>Specifies the current status of the inference schedulers.</p>
2897
2897
  * @public
2898
2898
  */
2899
- Status?: InferenceSchedulerStatus;
2899
+ Status?: InferenceSchedulerStatus | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * <p>Contains information about the specific inference scheduler, including data delay
@@ -2908,28 +2908,28 @@ export interface InferenceSchedulerSummary {
2908
2908
  * <p>The name of the machine learning model used for the inference scheduler. </p>
2909
2909
  * @public
2910
2910
  */
2911
- ModelName?: string;
2911
+ ModelName?: string | undefined;
2912
2912
  /**
2913
2913
  * <p> The Amazon Resource Name (ARN) of the machine learning model used by the inference
2914
2914
  * scheduler. </p>
2915
2915
  * @public
2916
2916
  */
2917
- ModelArn?: string;
2917
+ ModelArn?: string | undefined;
2918
2918
  /**
2919
2919
  * <p>The name of the inference scheduler. </p>
2920
2920
  * @public
2921
2921
  */
2922
- InferenceSchedulerName?: string;
2922
+ InferenceSchedulerName?: string | undefined;
2923
2923
  /**
2924
2924
  * <p> The Amazon Resource Name (ARN) of the inference scheduler. </p>
2925
2925
  * @public
2926
2926
  */
2927
- InferenceSchedulerArn?: string;
2927
+ InferenceSchedulerArn?: string | undefined;
2928
2928
  /**
2929
2929
  * <p>Indicates the status of the inference scheduler. </p>
2930
2930
  * @public
2931
2931
  */
2932
- Status?: InferenceSchedulerStatus;
2932
+ Status?: InferenceSchedulerStatus | undefined;
2933
2933
  /**
2934
2934
  * <p>A period of time (in minutes) by which inference on the data is delayed after the data
2935
2935
  * starts. For instance, if an offset delay time of five minutes was selected, inference will
@@ -2940,7 +2940,7 @@ export interface InferenceSchedulerSummary {
2940
2940
  * restart the scheduler when uploading new data. </p>
2941
2941
  * @public
2942
2942
  */
2943
- DataDelayOffsetInMinutes?: number;
2943
+ DataDelayOffsetInMinutes?: number | undefined;
2944
2944
  /**
2945
2945
  * <p>How often data is uploaded to the source S3 bucket for the input data. This value is the
2946
2946
  * length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout
@@ -2949,13 +2949,13 @@ export interface InferenceSchedulerSummary {
2949
2949
  * data. In this example, it starts once every 5 minutes. </p>
2950
2950
  * @public
2951
2951
  */
2952
- DataUploadFrequency?: DataUploadFrequency;
2952
+ DataUploadFrequency?: DataUploadFrequency | undefined;
2953
2953
  /**
2954
2954
  * <p>Indicates whether the latest execution for the inference scheduler was Anomalous
2955
2955
  * (anomalous events found) or Normal (no anomalous events found).</p>
2956
2956
  * @public
2957
2957
  */
2958
- LatestInferenceResult?: LatestInferenceResult;
2958
+ LatestInferenceResult?: LatestInferenceResult | undefined;
2959
2959
  }
2960
2960
  /**
2961
2961
  * @public
@@ -2966,13 +2966,13 @@ export interface ListInferenceSchedulersResponse {
2966
2966
  * schedulers. </p>
2967
2967
  * @public
2968
2968
  */
2969
- NextToken?: string;
2969
+ NextToken?: string | undefined;
2970
2970
  /**
2971
2971
  * <p>Provides information about the specified inference scheduler, including data upload
2972
2972
  * frequency, model name and ARN, and status. </p>
2973
2973
  * @public
2974
2974
  */
2975
- InferenceSchedulerSummaries?: InferenceSchedulerSummary[];
2975
+ InferenceSchedulerSummaries?: InferenceSchedulerSummary[] | undefined;
2976
2976
  }
2977
2977
  /**
2978
2978
  * @public
@@ -2982,18 +2982,18 @@ export interface ListLabelGroupsRequest {
2982
2982
  * <p> The beginning of the name of the label groups to be listed. </p>
2983
2983
  * @public
2984
2984
  */
2985
- LabelGroupNameBeginsWith?: string;
2985
+ LabelGroupNameBeginsWith?: string | undefined;
2986
2986
  /**
2987
2987
  * <p> An opaque pagination token indicating where to continue the listing of label groups.
2988
2988
  * </p>
2989
2989
  * @public
2990
2990
  */
2991
- NextToken?: string;
2991
+ NextToken?: string | undefined;
2992
2992
  /**
2993
2993
  * <p> Specifies the maximum number of label groups to list. </p>
2994
2994
  * @public
2995
2995
  */
2996
- MaxResults?: number;
2996
+ MaxResults?: number | undefined;
2997
2997
  }
2998
2998
  /**
2999
2999
  * <p> Contains information about the label group. </p>
@@ -3004,22 +3004,22 @@ export interface LabelGroupSummary {
3004
3004
  * <p> The name of the label group. </p>
3005
3005
  * @public
3006
3006
  */
3007
- LabelGroupName?: string;
3007
+ LabelGroupName?: string | undefined;
3008
3008
  /**
3009
3009
  * <p> The Amazon Resource Name (ARN) of the label group. </p>
3010
3010
  * @public
3011
3011
  */
3012
- LabelGroupArn?: string;
3012
+ LabelGroupArn?: string | undefined;
3013
3013
  /**
3014
3014
  * <p> The time at which the label group was created. </p>
3015
3015
  * @public
3016
3016
  */
3017
- CreatedAt?: Date;
3017
+ CreatedAt?: Date | undefined;
3018
3018
  /**
3019
3019
  * <p> The time at which the label group was updated. </p>
3020
3020
  * @public
3021
3021
  */
3022
- UpdatedAt?: Date;
3022
+ UpdatedAt?: Date | undefined;
3023
3023
  }
3024
3024
  /**
3025
3025
  * @public
@@ -3030,12 +3030,12 @@ export interface ListLabelGroupsResponse {
3030
3030
  * </p>
3031
3031
  * @public
3032
3032
  */
3033
- NextToken?: string;
3033
+ NextToken?: string | undefined;
3034
3034
  /**
3035
3035
  * <p> A summary of the label groups. </p>
3036
3036
  * @public
3037
3037
  */
3038
- LabelGroupSummaries?: LabelGroupSummary[];
3038
+ LabelGroupSummaries?: LabelGroupSummary[] | undefined;
3039
3039
  }
3040
3040
  /**
3041
3041
  * @public
@@ -3051,33 +3051,33 @@ export interface ListLabelsRequest {
3051
3051
  * </p>
3052
3052
  * @public
3053
3053
  */
3054
- IntervalStartTime?: Date;
3054
+ IntervalStartTime?: Date | undefined;
3055
3055
  /**
3056
3056
  * <p> Returns all labels with a start time earlier than the end time given. </p>
3057
3057
  * @public
3058
3058
  */
3059
- IntervalEndTime?: Date;
3059
+ IntervalEndTime?: Date | undefined;
3060
3060
  /**
3061
3061
  * <p> Returns labels with a particular fault code. </p>
3062
3062
  * @public
3063
3063
  */
3064
- FaultCode?: string;
3064
+ FaultCode?: string | undefined;
3065
3065
  /**
3066
3066
  * <p> Lists the labels that pertain to a particular piece of equipment. </p>
3067
3067
  * @public
3068
3068
  */
3069
- Equipment?: string;
3069
+ Equipment?: string | undefined;
3070
3070
  /**
3071
3071
  * <p> An opaque pagination token indicating where to continue the listing of label groups.
3072
3072
  * </p>
3073
3073
  * @public
3074
3074
  */
3075
- NextToken?: string;
3075
+ NextToken?: string | undefined;
3076
3076
  /**
3077
3077
  * <p> Specifies the maximum number of labels to list. </p>
3078
3078
  * @public
3079
3079
  */
3080
- MaxResults?: number;
3080
+ MaxResults?: number | undefined;
3081
3081
  }
3082
3082
  /**
3083
3083
  * <p> Information about the label. </p>
@@ -3088,49 +3088,49 @@ export interface LabelSummary {
3088
3088
  * <p> The name of the label group. </p>
3089
3089
  * @public
3090
3090
  */
3091
- LabelGroupName?: string;
3091
+ LabelGroupName?: string | undefined;
3092
3092
  /**
3093
3093
  * <p> The ID of the label. </p>
3094
3094
  * @public
3095
3095
  */
3096
- LabelId?: string;
3096
+ LabelId?: string | undefined;
3097
3097
  /**
3098
3098
  * <p> The Amazon Resource Name (ARN) of the label group. </p>
3099
3099
  * @public
3100
3100
  */
3101
- LabelGroupArn?: string;
3101
+ LabelGroupArn?: string | undefined;
3102
3102
  /**
3103
3103
  * <p> The timestamp indicating the start of the label. </p>
3104
3104
  * @public
3105
3105
  */
3106
- StartTime?: Date;
3106
+ StartTime?: Date | undefined;
3107
3107
  /**
3108
3108
  * <p> The timestamp indicating the end of the label. </p>
3109
3109
  * @public
3110
3110
  */
3111
- EndTime?: Date;
3111
+ EndTime?: Date | undefined;
3112
3112
  /**
3113
3113
  * <p> Indicates whether a labeled event represents an anomaly. </p>
3114
3114
  * @public
3115
3115
  */
3116
- Rating?: LabelRating;
3116
+ Rating?: LabelRating | undefined;
3117
3117
  /**
3118
3118
  * <p> Indicates the type of anomaly associated with the label. </p>
3119
3119
  * <p>Data in this field will be retained for service usage. Follow best practices for the
3120
3120
  * security of your data.</p>
3121
3121
  * @public
3122
3122
  */
3123
- FaultCode?: string;
3123
+ FaultCode?: string | undefined;
3124
3124
  /**
3125
3125
  * <p> Indicates that a label pertains to a particular piece of equipment. </p>
3126
3126
  * @public
3127
3127
  */
3128
- Equipment?: string;
3128
+ Equipment?: string | undefined;
3129
3129
  /**
3130
3130
  * <p> The time at which the label was created. </p>
3131
3131
  * @public
3132
3132
  */
3133
- CreatedAt?: Date;
3133
+ CreatedAt?: Date | undefined;
3134
3134
  }
3135
3135
  /**
3136
3136
  * @public
@@ -3141,7 +3141,7 @@ export interface ListLabelsResponse {
3141
3141
  * </p>
3142
3142
  * @public
3143
3143
  */
3144
- NextToken?: string;
3144
+ NextToken?: string | undefined;
3145
3145
  /**
3146
3146
  * <p> A summary of the items in the label group. </p>
3147
3147
  * <note>
@@ -3151,7 +3151,7 @@ export interface ListLabelsResponse {
3151
3151
  * </note>
3152
3152
  * @public
3153
3153
  */
3154
- LabelSummaries?: LabelSummary[];
3154
+ LabelSummaries?: LabelSummary[] | undefined;
3155
3155
  }
3156
3156
  /**
3157
3157
  * @public
@@ -3162,28 +3162,28 @@ export interface ListModelsRequest {
3162
3162
  * models. </p>
3163
3163
  * @public
3164
3164
  */
3165
- NextToken?: string;
3165
+ NextToken?: string | undefined;
3166
3166
  /**
3167
3167
  * <p> Specifies the maximum number of machine learning models to list. </p>
3168
3168
  * @public
3169
3169
  */
3170
- MaxResults?: number;
3170
+ MaxResults?: number | undefined;
3171
3171
  /**
3172
3172
  * <p>The status of the machine learning model. </p>
3173
3173
  * @public
3174
3174
  */
3175
- Status?: ModelStatus;
3175
+ Status?: ModelStatus | undefined;
3176
3176
  /**
3177
3177
  * <p>The beginning of the name of the machine learning models being listed. </p>
3178
3178
  * @public
3179
3179
  */
3180
- ModelNameBeginsWith?: string;
3180
+ ModelNameBeginsWith?: string | undefined;
3181
3181
  /**
3182
3182
  * <p>The beginning of the name of the dataset of the machine learning models to be listed.
3183
3183
  * </p>
3184
3184
  * @public
3185
3185
  */
3186
- DatasetNameBeginsWith?: string;
3186
+ DatasetNameBeginsWith?: string | undefined;
3187
3187
  }
3188
3188
  /**
3189
3189
  * <p>Provides information about the specified machine learning model, including dataset and
@@ -3195,76 +3195,76 @@ export interface ModelSummary {
3195
3195
  * <p>The name of the machine learning model. </p>
3196
3196
  * @public
3197
3197
  */
3198
- ModelName?: string;
3198
+ ModelName?: string | undefined;
3199
3199
  /**
3200
3200
  * <p> The Amazon Resource Name (ARN) of the machine learning model. </p>
3201
3201
  * @public
3202
3202
  */
3203
- ModelArn?: string;
3203
+ ModelArn?: string | undefined;
3204
3204
  /**
3205
3205
  * <p>The name of the dataset being used for the machine learning model. </p>
3206
3206
  * @public
3207
3207
  */
3208
- DatasetName?: string;
3208
+ DatasetName?: string | undefined;
3209
3209
  /**
3210
3210
  * <p> The Amazon Resource Name (ARN) of the dataset used to create the model. </p>
3211
3211
  * @public
3212
3212
  */
3213
- DatasetArn?: string;
3213
+ DatasetArn?: string | undefined;
3214
3214
  /**
3215
3215
  * <p>Indicates the status of the machine learning model. </p>
3216
3216
  * @public
3217
3217
  */
3218
- Status?: ModelStatus;
3218
+ Status?: ModelStatus | undefined;
3219
3219
  /**
3220
3220
  * <p>The time at which the specific model was created. </p>
3221
3221
  * @public
3222
3222
  */
3223
- CreatedAt?: Date;
3223
+ CreatedAt?: Date | undefined;
3224
3224
  /**
3225
3225
  * <p>The model version that the inference scheduler uses to run an inference
3226
3226
  * execution.</p>
3227
3227
  * @public
3228
3228
  */
3229
- ActiveModelVersion?: number;
3229
+ ActiveModelVersion?: number | undefined;
3230
3230
  /**
3231
3231
  * <p>The Amazon Resource Name (ARN) of the model version that is set as active. The active
3232
3232
  * model version is the model version that the inference scheduler uses to run an inference
3233
3233
  * execution.</p>
3234
3234
  * @public
3235
3235
  */
3236
- ActiveModelVersionArn?: string;
3236
+ ActiveModelVersionArn?: string | undefined;
3237
3237
  /**
3238
3238
  * <p>Indicates the status of the most recent scheduled retraining run. </p>
3239
3239
  * @public
3240
3240
  */
3241
- LatestScheduledRetrainingStatus?: ModelVersionStatus;
3241
+ LatestScheduledRetrainingStatus?: ModelVersionStatus | undefined;
3242
3242
  /**
3243
3243
  * <p>Indicates the most recent model version that was generated by retraining. </p>
3244
3244
  * @public
3245
3245
  */
3246
- LatestScheduledRetrainingModelVersion?: number;
3246
+ LatestScheduledRetrainingModelVersion?: number | undefined;
3247
3247
  /**
3248
3248
  * <p>Indicates the start time of the most recent scheduled retraining run. </p>
3249
3249
  * @public
3250
3250
  */
3251
- LatestScheduledRetrainingStartTime?: Date;
3251
+ LatestScheduledRetrainingStartTime?: Date | undefined;
3252
3252
  /**
3253
3253
  * <p>Indicates the date that the next scheduled retraining run will start on. Lookout for Equipment truncates
3254
3254
  * the time you provide to <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/cli/latest/userguide/cli-usage-parameters-types.html#parameter-type-timestamp">the nearest UTC day</a>.</p>
3255
3255
  * @public
3256
3256
  */
3257
- NextScheduledRetrainingStartDate?: Date;
3257
+ NextScheduledRetrainingStartDate?: Date | undefined;
3258
3258
  /**
3259
3259
  * <p>Indicates the status of the retraining scheduler. </p>
3260
3260
  * @public
3261
3261
  */
3262
- RetrainingSchedulerStatus?: RetrainingSchedulerStatus;
3262
+ RetrainingSchedulerStatus?: RetrainingSchedulerStatus | undefined;
3263
3263
  /**
3264
3264
  * <p>Output configuration information for the pointwise model diagnostics for an Amazon Lookout for Equipment model.</p>
3265
3265
  * @public
3266
3266
  */
3267
- ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
3267
+ ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
3268
3268
  /**
3269
3269
  * <p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the
3270
3270
  * model quality is poor based on training metrics, the value is
@@ -3279,7 +3279,7 @@ export interface ModelSummary {
3279
3279
  * Amazon Lookout for Equipment</a>.</p>
3280
3280
  * @public
3281
3281
  */
3282
- ModelQuality?: ModelQuality;
3282
+ ModelQuality?: ModelQuality | undefined;
3283
3283
  }
3284
3284
  /**
3285
3285
  * @public
@@ -3290,13 +3290,13 @@ export interface ListModelsResponse {
3290
3290
  * models. </p>
3291
3291
  * @public
3292
3292
  */
3293
- NextToken?: string;
3293
+ NextToken?: string | undefined;
3294
3294
  /**
3295
3295
  * <p>Provides information on the specified model, including created time, model and dataset
3296
3296
  * ARNs, and status. </p>
3297
3297
  * @public
3298
3298
  */
3299
- ModelSummaries?: ModelSummary[];
3299
+ ModelSummaries?: ModelSummary[] | undefined;
3300
3300
  }
3301
3301
  /**
3302
3302
  * @public
@@ -3315,42 +3315,42 @@ export interface ListModelVersionsRequest {
3315
3315
  * request to list the next page of results.</p>
3316
3316
  * @public
3317
3317
  */
3318
- NextToken?: string;
3318
+ NextToken?: string | undefined;
3319
3319
  /**
3320
3320
  * <p>Specifies the maximum number of machine learning model versions to list.</p>
3321
3321
  * @public
3322
3322
  */
3323
- MaxResults?: number;
3323
+ MaxResults?: number | undefined;
3324
3324
  /**
3325
3325
  * <p>Filter the results based on the current status of the model version.</p>
3326
3326
  * @public
3327
3327
  */
3328
- Status?: ModelVersionStatus;
3328
+ Status?: ModelVersionStatus | undefined;
3329
3329
  /**
3330
3330
  * <p>Filter the results based on the way the model version was generated.</p>
3331
3331
  * @public
3332
3332
  */
3333
- SourceType?: ModelVersionSourceType;
3333
+ SourceType?: ModelVersionSourceType | undefined;
3334
3334
  /**
3335
3335
  * <p>Filter results to return all the model versions created before this time.</p>
3336
3336
  * @public
3337
3337
  */
3338
- CreatedAtEndTime?: Date;
3338
+ CreatedAtEndTime?: Date | undefined;
3339
3339
  /**
3340
3340
  * <p>Filter results to return all the model versions created after this time.</p>
3341
3341
  * @public
3342
3342
  */
3343
- CreatedAtStartTime?: Date;
3343
+ CreatedAtStartTime?: Date | undefined;
3344
3344
  /**
3345
3345
  * <p>Specifies the highest version of the model to return in the list.</p>
3346
3346
  * @public
3347
3347
  */
3348
- MaxModelVersion?: number;
3348
+ MaxModelVersion?: number | undefined;
3349
3349
  /**
3350
3350
  * <p>Specifies the lowest version of the model to return in the list.</p>
3351
3351
  * @public
3352
3352
  */
3353
- MinModelVersion?: number;
3353
+ MinModelVersion?: number | undefined;
3354
3354
  }
3355
3355
  /**
3356
3356
  * <p>Contains information about the specific model version.</p>
@@ -3361,38 +3361,38 @@ export interface ModelVersionSummary {
3361
3361
  * <p>The name of the model that this model version is a version of.</p>
3362
3362
  * @public
3363
3363
  */
3364
- ModelName?: string;
3364
+ ModelName?: string | undefined;
3365
3365
  /**
3366
3366
  * <p>The Amazon Resource Name (ARN) of the model that this model version is a version
3367
3367
  * of.</p>
3368
3368
  * @public
3369
3369
  */
3370
- ModelArn?: string;
3370
+ ModelArn?: string | undefined;
3371
3371
  /**
3372
3372
  * <p>The version of the model.</p>
3373
3373
  * @public
3374
3374
  */
3375
- ModelVersion?: number;
3375
+ ModelVersion?: number | undefined;
3376
3376
  /**
3377
3377
  * <p>The Amazon Resource Name (ARN) of the model version.</p>
3378
3378
  * @public
3379
3379
  */
3380
- ModelVersionArn?: string;
3380
+ ModelVersionArn?: string | undefined;
3381
3381
  /**
3382
3382
  * <p>The time when this model version was created.</p>
3383
3383
  * @public
3384
3384
  */
3385
- CreatedAt?: Date;
3385
+ CreatedAt?: Date | undefined;
3386
3386
  /**
3387
3387
  * <p>The current status of the model version.</p>
3388
3388
  * @public
3389
3389
  */
3390
- Status?: ModelVersionStatus;
3390
+ Status?: ModelVersionStatus | undefined;
3391
3391
  /**
3392
3392
  * <p>Indicates how this model version was generated.</p>
3393
3393
  * @public
3394
3394
  */
3395
- SourceType?: ModelVersionSourceType;
3395
+ SourceType?: ModelVersionSourceType | undefined;
3396
3396
  /**
3397
3397
  * <p>Provides a quality assessment for a model that uses labels. If Lookout for Equipment determines that the
3398
3398
  * model quality is poor based on training metrics, the value is
@@ -3406,7 +3406,7 @@ export interface ModelVersionSummary {
3406
3406
  * Amazon Lookout for Equipment</a>.</p>
3407
3407
  * @public
3408
3408
  */
3409
- ModelQuality?: ModelQuality;
3409
+ ModelQuality?: ModelQuality | undefined;
3410
3410
  }
3411
3411
  /**
3412
3412
  * @public
@@ -3419,7 +3419,7 @@ export interface ListModelVersionsResponse {
3419
3419
  * request to list the next page of results.</p>
3420
3420
  * @public
3421
3421
  */
3422
- NextToken?: string;
3422
+ NextToken?: string | undefined;
3423
3423
  /**
3424
3424
  * <p>Provides information on the specified model version, including the created time, model
3425
3425
  * and dataset ARNs, and status.</p>
@@ -3430,7 +3430,7 @@ export interface ListModelVersionsResponse {
3430
3430
  * </note>
3431
3431
  * @public
3432
3432
  */
3433
- ModelVersionSummaries?: ModelVersionSummary[];
3433
+ ModelVersionSummaries?: ModelVersionSummary[] | undefined;
3434
3434
  }
3435
3435
  /**
3436
3436
  * @public
@@ -3441,24 +3441,24 @@ export interface ListRetrainingSchedulersRequest {
3441
3441
  * begin with the value you specify. </p>
3442
3442
  * @public
3443
3443
  */
3444
- ModelNameBeginsWith?: string;
3444
+ ModelNameBeginsWith?: string | undefined;
3445
3445
  /**
3446
3446
  * <p>Specify this field to only list retraining schedulers whose status matches the value you
3447
3447
  * specify. </p>
3448
3448
  * @public
3449
3449
  */
3450
- Status?: RetrainingSchedulerStatus;
3450
+ Status?: RetrainingSchedulerStatus | undefined;
3451
3451
  /**
3452
3452
  * <p>If the number of results exceeds the maximum, a pagination token is returned. Use the
3453
3453
  * token in the request to show the next page of retraining schedulers.</p>
3454
3454
  * @public
3455
3455
  */
3456
- NextToken?: string;
3456
+ NextToken?: string | undefined;
3457
3457
  /**
3458
3458
  * <p>Specifies the maximum number of retraining schedulers to list. </p>
3459
3459
  * @public
3460
3460
  */
3461
- MaxResults?: number;
3461
+ MaxResults?: number | undefined;
3462
3462
  }
3463
3463
  /**
3464
3464
  * <p>Provides information about the specified retraining scheduler, including model name,
@@ -3470,34 +3470,34 @@ export interface RetrainingSchedulerSummary {
3470
3470
  * <p>The name of the model that the retraining scheduler is attached to. </p>
3471
3471
  * @public
3472
3472
  */
3473
- ModelName?: string;
3473
+ ModelName?: string | undefined;
3474
3474
  /**
3475
3475
  * <p>The ARN of the model that the retraining scheduler is attached to. </p>
3476
3476
  * @public
3477
3477
  */
3478
- ModelArn?: string;
3478
+ ModelArn?: string | undefined;
3479
3479
  /**
3480
3480
  * <p>The status of the retraining scheduler. </p>
3481
3481
  * @public
3482
3482
  */
3483
- Status?: RetrainingSchedulerStatus;
3483
+ Status?: RetrainingSchedulerStatus | undefined;
3484
3484
  /**
3485
3485
  * <p>The start date for the retraining scheduler. Lookout for Equipment truncates the time you provide to the
3486
3486
  * nearest UTC day.</p>
3487
3487
  * @public
3488
3488
  */
3489
- RetrainingStartDate?: Date;
3489
+ RetrainingStartDate?: Date | undefined;
3490
3490
  /**
3491
3491
  * <p>The frequency at which the model retraining is set. This follows the <a href="https://en.wikipedia.org/wiki/ISO_8601#Durations">ISO 8601</a>
3492
3492
  * guidelines.</p>
3493
3493
  * @public
3494
3494
  */
3495
- RetrainingFrequency?: string;
3495
+ RetrainingFrequency?: string | undefined;
3496
3496
  /**
3497
3497
  * <p>The number of past days of data used for retraining.</p>
3498
3498
  * @public
3499
3499
  */
3500
- LookbackWindow?: string;
3500
+ LookbackWindow?: string | undefined;
3501
3501
  }
3502
3502
  /**
3503
3503
  * @public
@@ -3508,13 +3508,13 @@ export interface ListRetrainingSchedulersResponse {
3508
3508
  * model ARN, status, and start date. </p>
3509
3509
  * @public
3510
3510
  */
3511
- RetrainingSchedulerSummaries?: RetrainingSchedulerSummary[];
3511
+ RetrainingSchedulerSummaries?: RetrainingSchedulerSummary[] | undefined;
3512
3512
  /**
3513
3513
  * <p>If the number of results exceeds the maximum, this pagination token is returned. Use
3514
3514
  * this token in the request to show the next page of retraining schedulers.</p>
3515
3515
  * @public
3516
3516
  */
3517
- NextToken?: string;
3517
+ NextToken?: string | undefined;
3518
3518
  }
3519
3519
  /**
3520
3520
  * @public
@@ -3531,18 +3531,18 @@ export interface ListSensorStatisticsRequest {
3531
3531
  * be submitted as inputs. </p>
3532
3532
  * @public
3533
3533
  */
3534
- IngestionJobId?: string;
3534
+ IngestionJobId?: string | undefined;
3535
3535
  /**
3536
3536
  * <p>Specifies the maximum number of sensors for which to retrieve statistics. </p>
3537
3537
  * @public
3538
3538
  */
3539
- MaxResults?: number;
3539
+ MaxResults?: number | undefined;
3540
3540
  /**
3541
3541
  * <p>An opaque pagination token indicating where to continue the listing of sensor
3542
3542
  * statistics. </p>
3543
3543
  * @public
3544
3544
  */
3545
- NextToken?: string;
3545
+ NextToken?: string | undefined;
3546
3546
  }
3547
3547
  /**
3548
3548
  * @public
@@ -3571,7 +3571,7 @@ export interface CategoricalValues {
3571
3571
  * <p> Indicates the number of categories in the data. </p>
3572
3572
  * @public
3573
3573
  */
3574
- NumberOfCategory?: number;
3574
+ NumberOfCategory?: number | undefined;
3575
3575
  }
3576
3576
  /**
3577
3577
  * <p> Entity that comprises information of count and percentage. </p>
@@ -3605,12 +3605,12 @@ export interface LargeTimestampGaps {
3605
3605
  * <p> Indicates the number of large timestamp gaps, if there are any. </p>
3606
3606
  * @public
3607
3607
  */
3608
- NumberOfLargeTimestampGaps?: number;
3608
+ NumberOfLargeTimestampGaps?: number | undefined;
3609
3609
  /**
3610
3610
  * <p> Indicates the size of the largest timestamp gap, in days. </p>
3611
3611
  * @public
3612
3612
  */
3613
- MaxTimestampGapInDays?: number;
3613
+ MaxTimestampGapInDays?: number | undefined;
3614
3614
  }
3615
3615
  /**
3616
3616
  * @public
@@ -3640,7 +3640,7 @@ export interface MonotonicValues {
3640
3640
  * <p> Indicates the monotonicity of values. Can be INCREASING, DECREASING, or STATIC. </p>
3641
3641
  * @public
3642
3642
  */
3643
- Monotonicity?: Monotonicity;
3643
+ Monotonicity?: Monotonicity | undefined;
3644
3644
  }
3645
3645
  /**
3646
3646
  * <p> Entity that comprises information on operating modes in data. </p>
@@ -3665,78 +3665,78 @@ export interface SensorStatisticsSummary {
3665
3665
  * belong to. </p>
3666
3666
  * @public
3667
3667
  */
3668
- ComponentName?: string;
3668
+ ComponentName?: string | undefined;
3669
3669
  /**
3670
3670
  * <p> Name of the sensor that the statistics belong to. </p>
3671
3671
  * @public
3672
3672
  */
3673
- SensorName?: string;
3673
+ SensorName?: string | undefined;
3674
3674
  /**
3675
3675
  * <p> Parameter that indicates whether data exists for the sensor that the statistics belong
3676
3676
  * to. </p>
3677
3677
  * @public
3678
3678
  */
3679
- DataExists?: boolean;
3679
+ DataExists?: boolean | undefined;
3680
3680
  /**
3681
3681
  * <p> Parameter that describes the total number of, and percentage of, values that are
3682
3682
  * missing for the sensor that the statistics belong to. </p>
3683
3683
  * @public
3684
3684
  */
3685
- MissingValues?: CountPercent;
3685
+ MissingValues?: CountPercent | undefined;
3686
3686
  /**
3687
3687
  * <p> Parameter that describes the total number of, and percentage of, values that are
3688
3688
  * invalid for the sensor that the statistics belong to. </p>
3689
3689
  * @public
3690
3690
  */
3691
- InvalidValues?: CountPercent;
3691
+ InvalidValues?: CountPercent | undefined;
3692
3692
  /**
3693
3693
  * <p> Parameter that describes the total number of invalid date entries associated with the
3694
3694
  * sensor that the statistics belong to. </p>
3695
3695
  * @public
3696
3696
  */
3697
- InvalidDateEntries?: CountPercent;
3697
+ InvalidDateEntries?: CountPercent | undefined;
3698
3698
  /**
3699
3699
  * <p> Parameter that describes the total number of duplicate timestamp records associated
3700
3700
  * with the sensor that the statistics belong to. </p>
3701
3701
  * @public
3702
3702
  */
3703
- DuplicateTimestamps?: CountPercent;
3703
+ DuplicateTimestamps?: CountPercent | undefined;
3704
3704
  /**
3705
3705
  * <p> Parameter that describes potential risk about whether data associated with the sensor
3706
3706
  * is categorical. </p>
3707
3707
  * @public
3708
3708
  */
3709
- CategoricalValues?: CategoricalValues;
3709
+ CategoricalValues?: CategoricalValues | undefined;
3710
3710
  /**
3711
3711
  * <p> Parameter that describes potential risk about whether data associated with the sensor
3712
3712
  * has more than one operating mode. </p>
3713
3713
  * @public
3714
3714
  */
3715
- MultipleOperatingModes?: MultipleOperatingModes;
3715
+ MultipleOperatingModes?: MultipleOperatingModes | undefined;
3716
3716
  /**
3717
3717
  * <p> Parameter that describes potential risk about whether data associated with the sensor
3718
3718
  * contains one or more large gaps between consecutive timestamps. </p>
3719
3719
  * @public
3720
3720
  */
3721
- LargeTimestampGaps?: LargeTimestampGaps;
3721
+ LargeTimestampGaps?: LargeTimestampGaps | undefined;
3722
3722
  /**
3723
3723
  * <p> Parameter that describes potential risk about whether data associated with the sensor
3724
3724
  * is mostly monotonic. </p>
3725
3725
  * @public
3726
3726
  */
3727
- MonotonicValues?: MonotonicValues;
3727
+ MonotonicValues?: MonotonicValues | undefined;
3728
3728
  /**
3729
3729
  * <p> Indicates the time reference to indicate the beginning of valid data associated with
3730
3730
  * the sensor that the statistics belong to. </p>
3731
3731
  * @public
3732
3732
  */
3733
- DataStartTime?: Date;
3733
+ DataStartTime?: Date | undefined;
3734
3734
  /**
3735
3735
  * <p> Indicates the time reference to indicate the end of valid data associated with the
3736
3736
  * sensor that the statistics belong to. </p>
3737
3737
  * @public
3738
3738
  */
3739
- DataEndTime?: Date;
3739
+ DataEndTime?: Date | undefined;
3740
3740
  }
3741
3741
  /**
3742
3742
  * @public
@@ -3748,13 +3748,13 @@ export interface ListSensorStatisticsResponse {
3748
3748
  * values, and the number and percentage of duplicate timestamps. </p>
3749
3749
  * @public
3750
3750
  */
3751
- SensorStatisticsSummaries?: SensorStatisticsSummary[];
3751
+ SensorStatisticsSummaries?: SensorStatisticsSummary[] | undefined;
3752
3752
  /**
3753
3753
  * <p>An opaque pagination token indicating where to continue the listing of sensor
3754
3754
  * statistics. </p>
3755
3755
  * @public
3756
3756
  */
3757
- NextToken?: string;
3757
+ NextToken?: string | undefined;
3758
3758
  }
3759
3759
  /**
3760
3760
  * @public
@@ -3775,7 +3775,7 @@ export interface ListTagsForResourceResponse {
3775
3775
  * <p> Any tags associated with the resource. </p>
3776
3776
  * @public
3777
3777
  */
3778
- Tags?: Tag[];
3778
+ Tags?: Tag[] | undefined;
3779
3779
  }
3780
3780
  /**
3781
3781
  * @public
@@ -3796,13 +3796,13 @@ export interface PutResourcePolicyRequest {
3796
3796
  * <p>A unique identifier for a revision of the resource policy.</p>
3797
3797
  * @public
3798
3798
  */
3799
- PolicyRevisionId?: string;
3799
+ PolicyRevisionId?: string | undefined;
3800
3800
  /**
3801
3801
  * <p>A unique identifier for the request. If you do not set the client request token,
3802
3802
  * Amazon Lookout for Equipment generates one. </p>
3803
3803
  * @public
3804
3804
  */
3805
- ClientToken?: string;
3805
+ ClientToken?: string | undefined;
3806
3806
  }
3807
3807
  /**
3808
3808
  * @public
@@ -3812,12 +3812,12 @@ export interface PutResourcePolicyResponse {
3812
3812
  * <p>The Amazon Resource Name (ARN) of the resource for which the policy was created.</p>
3813
3813
  * @public
3814
3814
  */
3815
- ResourceArn?: string;
3815
+ ResourceArn?: string | undefined;
3816
3816
  /**
3817
3817
  * <p>A unique identifier for a revision of the resource policy.</p>
3818
3818
  * @public
3819
3819
  */
3820
- PolicyRevisionId?: string;
3820
+ PolicyRevisionId?: string | undefined;
3821
3821
  }
3822
3822
  /**
3823
3823
  * @public
@@ -3845,7 +3845,7 @@ export interface StartDataIngestionJobRequest {
3845
3845
  * Lookout for Equipment generates one. </p>
3846
3846
  * @public
3847
3847
  */
3848
- ClientToken?: string;
3848
+ ClientToken?: string | undefined;
3849
3849
  }
3850
3850
  /**
3851
3851
  * @public
@@ -3855,12 +3855,12 @@ export interface StartDataIngestionJobResponse {
3855
3855
  * <p>Indicates the job ID of the data ingestion job. </p>
3856
3856
  * @public
3857
3857
  */
3858
- JobId?: string;
3858
+ JobId?: string | undefined;
3859
3859
  /**
3860
3860
  * <p>Indicates the status of the <code>StartDataIngestionJob</code> operation. </p>
3861
3861
  * @public
3862
3862
  */
3863
- Status?: IngestionJobStatus;
3863
+ Status?: IngestionJobStatus | undefined;
3864
3864
  }
3865
3865
  /**
3866
3866
  * @public
@@ -3881,27 +3881,27 @@ export interface StartInferenceSchedulerResponse {
3881
3881
  * scheduler. </p>
3882
3882
  * @public
3883
3883
  */
3884
- ModelArn?: string;
3884
+ ModelArn?: string | undefined;
3885
3885
  /**
3886
3886
  * <p>The name of the machine learning model being used by the inference scheduler. </p>
3887
3887
  * @public
3888
3888
  */
3889
- ModelName?: string;
3889
+ ModelName?: string | undefined;
3890
3890
  /**
3891
3891
  * <p>The name of the inference scheduler being started. </p>
3892
3892
  * @public
3893
3893
  */
3894
- InferenceSchedulerName?: string;
3894
+ InferenceSchedulerName?: string | undefined;
3895
3895
  /**
3896
3896
  * <p>The Amazon Resource Name (ARN) of the inference scheduler being started. </p>
3897
3897
  * @public
3898
3898
  */
3899
- InferenceSchedulerArn?: string;
3899
+ InferenceSchedulerArn?: string | undefined;
3900
3900
  /**
3901
3901
  * <p>Indicates the status of the inference scheduler. </p>
3902
3902
  * @public
3903
3903
  */
3904
- Status?: InferenceSchedulerStatus;
3904
+ Status?: InferenceSchedulerStatus | undefined;
3905
3905
  }
3906
3906
  /**
3907
3907
  * @public
@@ -3921,17 +3921,17 @@ export interface StartRetrainingSchedulerResponse {
3921
3921
  * <p>The name of the model whose retraining scheduler is being started. </p>
3922
3922
  * @public
3923
3923
  */
3924
- ModelName?: string;
3924
+ ModelName?: string | undefined;
3925
3925
  /**
3926
3926
  * <p>The ARN of the model whose retraining scheduler is being started. </p>
3927
3927
  * @public
3928
3928
  */
3929
- ModelArn?: string;
3929
+ ModelArn?: string | undefined;
3930
3930
  /**
3931
3931
  * <p>The status of the retraining scheduler. </p>
3932
3932
  * @public
3933
3933
  */
3934
- Status?: RetrainingSchedulerStatus;
3934
+ Status?: RetrainingSchedulerStatus | undefined;
3935
3935
  }
3936
3936
  /**
3937
3937
  * @public
@@ -3952,28 +3952,28 @@ export interface StopInferenceSchedulerResponse {
3952
3952
  * scheduler being stopped. </p>
3953
3953
  * @public
3954
3954
  */
3955
- ModelArn?: string;
3955
+ ModelArn?: string | undefined;
3956
3956
  /**
3957
3957
  * <p>The name of the machine learning model used by the inference scheduler being stopped.
3958
3958
  * </p>
3959
3959
  * @public
3960
3960
  */
3961
- ModelName?: string;
3961
+ ModelName?: string | undefined;
3962
3962
  /**
3963
3963
  * <p>The name of the inference scheduler being stopped. </p>
3964
3964
  * @public
3965
3965
  */
3966
- InferenceSchedulerName?: string;
3966
+ InferenceSchedulerName?: string | undefined;
3967
3967
  /**
3968
3968
  * <p>The Amazon Resource Name (ARN) of the inference schedule being stopped. </p>
3969
3969
  * @public
3970
3970
  */
3971
- InferenceSchedulerArn?: string;
3971
+ InferenceSchedulerArn?: string | undefined;
3972
3972
  /**
3973
3973
  * <p>Indicates the status of the inference scheduler. </p>
3974
3974
  * @public
3975
3975
  */
3976
- Status?: InferenceSchedulerStatus;
3976
+ Status?: InferenceSchedulerStatus | undefined;
3977
3977
  }
3978
3978
  /**
3979
3979
  * @public
@@ -3993,17 +3993,17 @@ export interface StopRetrainingSchedulerResponse {
3993
3993
  * <p>The name of the model whose retraining scheduler is being stopped. </p>
3994
3994
  * @public
3995
3995
  */
3996
- ModelName?: string;
3996
+ ModelName?: string | undefined;
3997
3997
  /**
3998
3998
  * <p>The ARN of the model whose retraining scheduler is being stopped. </p>
3999
3999
  * @public
4000
4000
  */
4001
- ModelArn?: string;
4001
+ ModelArn?: string | undefined;
4002
4002
  /**
4003
4003
  * <p>The status of the retraining scheduler. </p>
4004
4004
  * @public
4005
4005
  */
4006
- Status?: RetrainingSchedulerStatus;
4006
+ Status?: RetrainingSchedulerStatus | undefined;
4007
4007
  }
4008
4008
  /**
4009
4009
  * @public
@@ -4074,37 +4074,37 @@ export interface UpdateActiveModelVersionResponse {
4074
4074
  * set.</p>
4075
4075
  * @public
4076
4076
  */
4077
- ModelName?: string;
4077
+ ModelName?: string | undefined;
4078
4078
  /**
4079
4079
  * <p>The Amazon Resource Name (ARN) of the machine learning model for which the active model
4080
4080
  * version was set.</p>
4081
4081
  * @public
4082
4082
  */
4083
- ModelArn?: string;
4083
+ ModelArn?: string | undefined;
4084
4084
  /**
4085
4085
  * <p>The version that is currently active of the machine learning model for which the active
4086
4086
  * model version was set.</p>
4087
4087
  * @public
4088
4088
  */
4089
- CurrentActiveVersion?: number;
4089
+ CurrentActiveVersion?: number | undefined;
4090
4090
  /**
4091
4091
  * <p>The previous version that was active of the machine learning model for which the active
4092
4092
  * model version was set.</p>
4093
4093
  * @public
4094
4094
  */
4095
- PreviousActiveVersion?: number;
4095
+ PreviousActiveVersion?: number | undefined;
4096
4096
  /**
4097
4097
  * <p>The Amazon Resource Name (ARN) of the machine learning model version that is the current
4098
4098
  * active model version.</p>
4099
4099
  * @public
4100
4100
  */
4101
- CurrentActiveVersionArn?: string;
4101
+ CurrentActiveVersionArn?: string | undefined;
4102
4102
  /**
4103
4103
  * <p>The Amazon Resource Name (ARN) of the machine learning model version that was the
4104
4104
  * previous active model version.</p>
4105
4105
  * @public
4106
4106
  */
4107
- PreviousActiveVersionArn?: string;
4107
+ PreviousActiveVersionArn?: string | undefined;
4108
4108
  }
4109
4109
  /**
4110
4110
  * @public
@@ -4125,7 +4125,7 @@ export interface UpdateInferenceSchedulerRequest {
4125
4125
  * restart the scheduler when uploading new data.</p>
4126
4126
  * @public
4127
4127
  */
4128
- DataDelayOffsetInMinutes?: number;
4128
+ DataDelayOffsetInMinutes?: number | undefined;
4129
4129
  /**
4130
4130
  * <p>How often data is uploaded to the source S3 bucket for the input data. The value chosen
4131
4131
  * is the length of time between data uploads. For instance, if you select 5 minutes, Amazon
@@ -4134,25 +4134,25 @@ export interface UpdateInferenceSchedulerRequest {
4134
4134
  * your data. In this example, it starts once every 5 minutes. </p>
4135
4135
  * @public
4136
4136
  */
4137
- DataUploadFrequency?: DataUploadFrequency;
4137
+ DataUploadFrequency?: DataUploadFrequency | undefined;
4138
4138
  /**
4139
4139
  * <p> Specifies information for the input data for the inference scheduler, including
4140
4140
  * delimiter, format, and dataset location. </p>
4141
4141
  * @public
4142
4142
  */
4143
- DataInputConfiguration?: InferenceInputConfiguration;
4143
+ DataInputConfiguration?: InferenceInputConfiguration | undefined;
4144
4144
  /**
4145
4145
  * <p> Specifies information for the output results from the inference scheduler, including
4146
4146
  * the output S3 location. </p>
4147
4147
  * @public
4148
4148
  */
4149
- DataOutputConfiguration?: InferenceOutputConfiguration;
4149
+ DataOutputConfiguration?: InferenceOutputConfiguration | undefined;
4150
4150
  /**
4151
4151
  * <p> The Amazon Resource Name (ARN) of a role with permission to access the data source for
4152
4152
  * the inference scheduler. </p>
4153
4153
  * @public
4154
4154
  */
4155
- RoleArn?: string;
4155
+ RoleArn?: string | undefined;
4156
4156
  }
4157
4157
  /**
4158
4158
  * @public
@@ -4169,7 +4169,7 @@ export interface UpdateLabelGroupRequest {
4169
4169
  * security of your data.</p>
4170
4170
  * @public
4171
4171
  */
4172
- FaultCodes?: string[];
4172
+ FaultCodes?: string[] | undefined;
4173
4173
  }
4174
4174
  /**
4175
4175
  * @public
@@ -4185,18 +4185,18 @@ export interface UpdateModelRequest {
4185
4185
  * data. </p>
4186
4186
  * @public
4187
4187
  */
4188
- LabelsInputConfiguration?: LabelsInputConfiguration;
4188
+ LabelsInputConfiguration?: LabelsInputConfiguration | undefined;
4189
4189
  /**
4190
4190
  * <p>The ARN of the model to update.</p>
4191
4191
  * @public
4192
4192
  */
4193
- RoleArn?: string;
4193
+ RoleArn?: string | undefined;
4194
4194
  /**
4195
4195
  * <p>The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics for the model.
4196
4196
  * You must also specify the <code>RoleArn</code> request parameter.</p>
4197
4197
  * @public
4198
4198
  */
4199
- ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration;
4199
+ ModelDiagnosticsOutputConfiguration?: ModelDiagnosticsOutputConfiguration | undefined;
4200
4200
  }
4201
4201
  /**
4202
4202
  * @public
@@ -4212,7 +4212,7 @@ export interface UpdateRetrainingSchedulerRequest {
4212
4212
  * nearest UTC day.</p>
4213
4213
  * @public
4214
4214
  */
4215
- RetrainingStartDate?: Date;
4215
+ RetrainingStartDate?: Date | undefined;
4216
4216
  /**
4217
4217
  * <p>This parameter uses the <a href="https://en.wikipedia.org/wiki/ISO_8601#Durations">ISO 8601</a> standard to set the frequency at which you want retraining to occur in
4218
4218
  * terms of Years, Months, and/or Days (note: other parameters like Time are not currently
@@ -4231,12 +4231,12 @@ export interface UpdateRetrainingSchedulerRequest {
4231
4231
  * </ul>
4232
4232
  * @public
4233
4233
  */
4234
- RetrainingFrequency?: string;
4234
+ RetrainingFrequency?: string | undefined;
4235
4235
  /**
4236
4236
  * <p>The number of past days of data that will be used for retraining.</p>
4237
4237
  * @public
4238
4238
  */
4239
- LookbackWindow?: string;
4239
+ LookbackWindow?: string | undefined;
4240
4240
  /**
4241
4241
  * <p>Indicates how the service will use new models. In <code>MANAGED</code> mode, new models
4242
4242
  * will automatically be used for inference if they have better performance than the current
@@ -4244,5 +4244,5 @@ export interface UpdateRetrainingSchedulerRequest {
4244
4244
  * are manually activated</a>.</p>
4245
4245
  * @public
4246
4246
  */
4247
- PromoteMode?: ModelPromoteMode;
4247
+ PromoteMode?: ModelPromoteMode | undefined;
4248
4248
  }