cdk-comprehend-s3olap 2.0.81 → 2.0.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +9 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/greengrassv2-2020-11-30.min.json +26 -19
  8. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.min.json +282 -31
  9. package/node_modules/aws-sdk/apis/lookoutequipment-2020-12-15.paginators.json +10 -0
  10. package/node_modules/aws-sdk/apis/macie2-2020-01-01.min.json +390 -119
  11. package/node_modules/aws-sdk/apis/voice-id-2021-09-27.min.json +15 -2
  12. package/node_modules/aws-sdk/clients/fsx.d.ts +1 -1
  13. package/node_modules/aws-sdk/clients/greengrassv2.d.ts +22 -13
  14. package/node_modules/aws-sdk/clients/lookoutequipment.d.ts +399 -10
  15. package/node_modules/aws-sdk/clients/macie2.d.ts +289 -41
  16. package/node_modules/aws-sdk/clients/sso.d.ts +19 -19
  17. package/node_modules/aws-sdk/clients/ssoadmin.d.ts +115 -115
  18. package/node_modules/aws-sdk/clients/voiceid.d.ts +26 -16
  19. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  20. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
  21. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  22. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  23. package/node_modules/aws-sdk/lib/core.js +1 -1
  24. package/node_modules/aws-sdk/package.json +1 -1
  25. package/node_modules/esbuild/bin/esbuild +12 -6
  26. package/node_modules/esbuild/install.js +4 -4
  27. package/node_modules/esbuild/lib/main.js +19 -13
  28. package/node_modules/esbuild/package.json +22 -22
  29. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  30. package/node_modules/esbuild-linux-64/package.json +1 -1
  31. package/package.json +10 -10
@@ -27,6 +27,22 @@ declare class LookoutEquipment extends Service {
27
27
  * Creates a scheduled inference. Scheduling an inference is setting up a continuous real-time inference plan to analyze new measurement data. When setting up the schedule, you provide an S3 bucket location for the input data, assign it a delimiter between separate entries in the data, set an offset delay if desired, and set the frequency of inferencing. You must also provide an S3 bucket location for the output data.
28
28
  */
29
29
  createInferenceScheduler(callback?: (err: AWSError, data: LookoutEquipment.Types.CreateInferenceSchedulerResponse) => void): Request<LookoutEquipment.Types.CreateInferenceSchedulerResponse, AWSError>;
30
+ /**
31
+ * Creates a label for an event.
32
+ */
33
+ createLabel(params: LookoutEquipment.Types.CreateLabelRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.CreateLabelResponse) => void): Request<LookoutEquipment.Types.CreateLabelResponse, AWSError>;
34
+ /**
35
+ * Creates a label for an event.
36
+ */
37
+ createLabel(callback?: (err: AWSError, data: LookoutEquipment.Types.CreateLabelResponse) => void): Request<LookoutEquipment.Types.CreateLabelResponse, AWSError>;
38
+ /**
39
+ * Creates a group of labels.
40
+ */
41
+ createLabelGroup(params: LookoutEquipment.Types.CreateLabelGroupRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.CreateLabelGroupResponse) => void): Request<LookoutEquipment.Types.CreateLabelGroupResponse, AWSError>;
42
+ /**
43
+ * Creates a group of labels.
44
+ */
45
+ createLabelGroup(callback?: (err: AWSError, data: LookoutEquipment.Types.CreateLabelGroupResponse) => void): Request<LookoutEquipment.Types.CreateLabelGroupResponse, AWSError>;
30
46
  /**
31
47
  * Creates an ML model for data inference. A machine-learning (ML) model is a mathematical model that finds patterns in your data. In Amazon Lookout for Equipment, the model learns the patterns of normal behavior and detects abnormal behavior that could be potential equipment failure (or maintenance events). The models are made by analyzing normal data and abnormalities in machine behavior that have already occurred. Your model is trained using a portion of the data from your dataset and uses that data to learn patterns of normal behavior and abnormal patterns that lead to equipment failure. Another portion of the data is used to evaluate the model's accuracy.
32
48
  */
@@ -51,6 +67,22 @@ declare class LookoutEquipment extends Service {
51
67
  * Deletes an inference scheduler that has been set up. Already processed output results are not affected.
52
68
  */
53
69
  deleteInferenceScheduler(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
70
+ /**
71
+ * Deletes a label.
72
+ */
73
+ deleteLabel(params: LookoutEquipment.Types.DeleteLabelRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
74
+ /**
75
+ * Deletes a label.
76
+ */
77
+ deleteLabel(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
78
+ /**
79
+ * Deletes a group of labels.
80
+ */
81
+ deleteLabelGroup(params: LookoutEquipment.Types.DeleteLabelGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
82
+ /**
83
+ * Deletes a group of labels.
84
+ */
85
+ deleteLabelGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
54
86
  /**
55
87
  * Deletes an ML model currently available for Amazon Lookout for Equipment. This will prevent it from being used with an inference scheduler, even one that is already set up.
56
88
  */
@@ -83,6 +115,22 @@ declare class LookoutEquipment extends Service {
83
115
  * Specifies information about the inference scheduler being used, including name, model, status, and associated metadata
84
116
  */
85
117
  describeInferenceScheduler(callback?: (err: AWSError, data: LookoutEquipment.Types.DescribeInferenceSchedulerResponse) => void): Request<LookoutEquipment.Types.DescribeInferenceSchedulerResponse, AWSError>;
118
+ /**
119
+ * Returns the name of the label.
120
+ */
121
+ describeLabel(params: LookoutEquipment.Types.DescribeLabelRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.DescribeLabelResponse) => void): Request<LookoutEquipment.Types.DescribeLabelResponse, AWSError>;
122
+ /**
123
+ * Returns the name of the label.
124
+ */
125
+ describeLabel(callback?: (err: AWSError, data: LookoutEquipment.Types.DescribeLabelResponse) => void): Request<LookoutEquipment.Types.DescribeLabelResponse, AWSError>;
126
+ /**
127
+ * Returns information about the label group.
128
+ */
129
+ describeLabelGroup(params: LookoutEquipment.Types.DescribeLabelGroupRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.DescribeLabelGroupResponse) => void): Request<LookoutEquipment.Types.DescribeLabelGroupResponse, AWSError>;
130
+ /**
131
+ * Returns information about the label group.
132
+ */
133
+ describeLabelGroup(callback?: (err: AWSError, data: LookoutEquipment.Types.DescribeLabelGroupResponse) => void): Request<LookoutEquipment.Types.DescribeLabelGroupResponse, AWSError>;
86
134
  /**
87
135
  * Provides a JSON containing the overall information about a specific ML model, including model name and ARN, dataset, training and evaluation information, status, and so on.
88
136
  */
@@ -131,6 +179,22 @@ declare class LookoutEquipment extends Service {
131
179
  * Retrieves a list of all inference schedulers currently available for your account.
132
180
  */
133
181
  listInferenceSchedulers(callback?: (err: AWSError, data: LookoutEquipment.Types.ListInferenceSchedulersResponse) => void): Request<LookoutEquipment.Types.ListInferenceSchedulersResponse, AWSError>;
182
+ /**
183
+ * Returns a list of the label groups.
184
+ */
185
+ listLabelGroups(params: LookoutEquipment.Types.ListLabelGroupsRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.ListLabelGroupsResponse) => void): Request<LookoutEquipment.Types.ListLabelGroupsResponse, AWSError>;
186
+ /**
187
+ * Returns a list of the label groups.
188
+ */
189
+ listLabelGroups(callback?: (err: AWSError, data: LookoutEquipment.Types.ListLabelGroupsResponse) => void): Request<LookoutEquipment.Types.ListLabelGroupsResponse, AWSError>;
190
+ /**
191
+ * Provides a list of labels.
192
+ */
193
+ listLabels(params: LookoutEquipment.Types.ListLabelsRequest, callback?: (err: AWSError, data: LookoutEquipment.Types.ListLabelsResponse) => void): Request<LookoutEquipment.Types.ListLabelsResponse, AWSError>;
194
+ /**
195
+ * Provides a list of labels.
196
+ */
197
+ listLabels(callback?: (err: AWSError, data: LookoutEquipment.Types.ListLabelsResponse) => void): Request<LookoutEquipment.Types.ListLabelsResponse, AWSError>;
134
198
  /**
135
199
  * Generates a list of all models in the account, including model name and ARN, dataset, and status.
136
200
  */
@@ -203,6 +267,14 @@ declare class LookoutEquipment extends Service {
203
267
  * Updates an inference scheduler.
204
268
  */
205
269
  updateInferenceScheduler(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
270
+ /**
271
+ * Updates the label group.
272
+ */
273
+ updateLabelGroup(params: LookoutEquipment.Types.UpdateLabelGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
274
+ /**
275
+ * Updates the label group.
276
+ */
277
+ updateLabelGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
206
278
  }
207
279
  declare namespace LookoutEquipment {
208
280
  export type AmazonResourceArn = string;
@@ -218,6 +290,7 @@ declare namespace LookoutEquipment {
218
290
  */
219
291
  NumberOfCategory?: Integer;
220
292
  }
293
+ export type Comments = string;
221
294
  export type ComponentName = string;
222
295
  export type ComponentTimestampDelimiter = string;
223
296
  export interface CountPercent {
@@ -276,11 +349,11 @@ declare namespace LookoutEquipment {
276
349
  */
277
350
  InferenceSchedulerName: InferenceSchedulerName;
278
351
  /**
279
- * A period of time (in minutes) by which inference on the data is delayed after the data starts. For instance, if you select an offset delay time of five minutes, inference will not begin on the data until the first data measurement after the five minute mark. For example, if five minutes is selected, the inference scheduler will wake up at the configured frequency with the additional five minute delay time to check the customer S3 bucket. The customer can upload data at the same frequency and they don't need to stop and restart the scheduler when uploading new data.
352
+ * The interval (in minutes) of planned delay at the start of each inference segment. For example, if inference is set to run every ten minutes, the delay is set to five minutes and the time is 09:08. The inference scheduler will wake up at the configured interval (which, without a delay configured, would be 09:10) plus the additional five minute delay time (so 09:15) to check your Amazon S3 bucket. The delay provides a buffer for you to upload data at the same frequency, so that you don't have to stop and restart the scheduler when uploading new data. For more information, see Understanding the inference process.
280
353
  */
281
354
  DataDelayOffsetInMinutes?: DataDelayOffsetInMinutes;
282
355
  /**
283
- * How often data is uploaded to the source S3 bucket for the input data. The value chosen is the length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout for Equipment will upload the real-time data to the source bucket once every 5 minutes. This frequency also determines how often Amazon Lookout for Equipment starts a scheduled inference on your data. In this example, it starts once every 5 minutes.
356
+ * How often data is uploaded to the source Amazon S3 bucket for the input data. The value chosen is the length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout for Equipment will upload the real-time data to the source bucket once every 5 minutes. This frequency also determines how often Amazon Lookout for Equipment runs inference on your data. For more information, see Understanding the inference process.
284
357
  */
285
358
  DataUploadFrequency: DataUploadFrequency;
286
359
  /**
@@ -322,6 +395,74 @@ declare namespace LookoutEquipment {
322
395
  */
323
396
  Status?: InferenceSchedulerStatus;
324
397
  }
398
+ export interface CreateLabelGroupRequest {
399
+ /**
400
+ * Names a group of labels. Data in this field will be retained for service usage. Follow best practices for the security of your data.
401
+ */
402
+ LabelGroupName: LabelGroupName;
403
+ /**
404
+ * The acceptable fault codes (indicating the type of anomaly associated with the label) that can be used with this label group. Data in this field will be retained for service usage. Follow best practices for the security of your data.
405
+ */
406
+ FaultCodes?: FaultCodes;
407
+ /**
408
+ * A unique identifier for the request to create a label group. If you do not set the client request token, Lookout for Equipment generates one.
409
+ */
410
+ ClientToken: IdempotenceToken;
411
+ /**
412
+ * Tags that provide metadata about the label group you are creating. Data in this field will be retained for service usage. Follow best practices for the security of your data.
413
+ */
414
+ Tags?: TagList;
415
+ }
416
+ export interface CreateLabelGroupResponse {
417
+ /**
418
+ * The name of the label group that you have created. Data in this field will be retained for service usage. Follow best practices for the security of your data.
419
+ */
420
+ LabelGroupName?: LabelGroupName;
421
+ /**
422
+ * The ARN of the label group that you have created.
423
+ */
424
+ LabelGroupArn?: LabelGroupArn;
425
+ }
426
+ export interface CreateLabelRequest {
427
+ /**
428
+ * The name of a group of labels. Data in this field will be retained for service usage. Follow best practices for the security of your data.
429
+ */
430
+ LabelGroupName: LabelGroupName;
431
+ /**
432
+ * The start time of the labeled event.
433
+ */
434
+ StartTime: Timestamp;
435
+ /**
436
+ * The end time of the labeled event.
437
+ */
438
+ EndTime: Timestamp;
439
+ /**
440
+ * Indicates whether a labeled event represents an anomaly.
441
+ */
442
+ Rating: LabelRating;
443
+ /**
444
+ * Provides additional information about the label. The fault code must be defined in the FaultCodes attribute of the label group. Data in this field will be retained for service usage. Follow best practices for the security of your data.
445
+ */
446
+ FaultCode?: FaultCode;
447
+ /**
448
+ * Metadata providing additional information about the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.
449
+ */
450
+ Notes?: Comments;
451
+ /**
452
+ * Indicates that a label pertains to a particular piece of equipment. Data in this field will be retained for service usage. Follow best practices for the security of your data.
453
+ */
454
+ Equipment?: Equipment;
455
+ /**
456
+ * A unique identifier for the request to create a label. If you do not set the client request token, Lookout for Equipment generates one.
457
+ */
458
+ ClientToken: IdempotenceToken;
459
+ }
460
+ export interface CreateLabelResponse {
461
+ /**
462
+ * The ID of the label that you have created.
463
+ */
464
+ LabelId?: LabelId;
465
+ }
325
466
  export interface CreateModelRequest {
326
467
  /**
327
468
  * The name for the ML model to be created.
@@ -485,6 +626,22 @@ declare namespace LookoutEquipment {
485
626
  */
486
627
  InferenceSchedulerName: InferenceSchedulerIdentifier;
487
628
  }
629
+ export interface DeleteLabelGroupRequest {
630
+ /**
631
+ * The name of the label group that you want to delete. Data in this field will be retained for service usage. Follow best practices for the security of your data.
632
+ */
633
+ LabelGroupName: LabelGroupName;
634
+ }
635
+ export interface DeleteLabelRequest {
636
+ /**
637
+ * The name of the label group that contains the label that you want to delete. Data in this field will be retained for service usage. Follow best practices for the security of your data.
638
+ */
639
+ LabelGroupName: LabelGroupName;
640
+ /**
641
+ * The ID of the label that you want to delete.
642
+ */
643
+ LabelId: LabelId;
644
+ }
488
645
  export interface DeleteModelRequest {
489
646
  /**
490
647
  * The name of the ML model to be deleted.
@@ -667,6 +824,90 @@ declare namespace LookoutEquipment {
667
824
  * Provides the identifier of the KMS key used to encrypt inference scheduler data by Amazon Lookout for Equipment.
668
825
  */
669
826
  ServerSideKmsKeyId?: KmsKeyArn;
827
+ /**
828
+ * Indicates whether the latest execution for the inference scheduler was Anomalous (anomalous events found) or Normal (no anomalous events found).
829
+ */
830
+ LatestInferenceResult?: LatestInferenceResult;
831
+ }
832
+ export interface DescribeLabelGroupRequest {
833
+ /**
834
+ * Returns the name of the label group.
835
+ */
836
+ LabelGroupName: LabelGroupName;
837
+ }
838
+ export interface DescribeLabelGroupResponse {
839
+ /**
840
+ * The name of the label group.
841
+ */
842
+ LabelGroupName?: LabelGroupName;
843
+ /**
844
+ * The ARN of the label group.
845
+ */
846
+ LabelGroupArn?: LabelGroupArn;
847
+ /**
848
+ * Codes indicating the type of anomaly associated with the labels in the lagbel group.
849
+ */
850
+ FaultCodes?: FaultCodes;
851
+ /**
852
+ * The time at which the label group was created.
853
+ */
854
+ CreatedAt?: Timestamp;
855
+ /**
856
+ * The time at which the label group was updated.
857
+ */
858
+ UpdatedAt?: Timestamp;
859
+ }
860
+ export interface DescribeLabelRequest {
861
+ /**
862
+ * Returns the name of the group containing the label.
863
+ */
864
+ LabelGroupName: LabelGroupName;
865
+ /**
866
+ * Returns the ID of the label.
867
+ */
868
+ LabelId: LabelId;
869
+ }
870
+ export interface DescribeLabelResponse {
871
+ /**
872
+ * The name of the requested label group.
873
+ */
874
+ LabelGroupName?: LabelGroupName;
875
+ /**
876
+ * The ARN of the requested label group.
877
+ */
878
+ LabelGroupArn?: LabelGroupArn;
879
+ /**
880
+ * The ID of the requested label.
881
+ */
882
+ LabelId?: LabelId;
883
+ /**
884
+ * The start time of the requested label.
885
+ */
886
+ StartTime?: Timestamp;
887
+ /**
888
+ * The end time of the requested label.
889
+ */
890
+ EndTime?: Timestamp;
891
+ /**
892
+ * Indicates whether a labeled event represents an anomaly.
893
+ */
894
+ Rating?: LabelRating;
895
+ /**
896
+ * Indicates the type of anomaly associated with the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.
897
+ */
898
+ FaultCode?: FaultCode;
899
+ /**
900
+ * Metadata providing additional information about the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.
901
+ */
902
+ Notes?: Comments;
903
+ /**
904
+ * Indicates that a label pertains to a particular piece of equipment.
905
+ */
906
+ Equipment?: Equipment;
907
+ /**
908
+ * The time at which the label was created.
909
+ */
910
+ CreatedAt?: Timestamp;
670
911
  }
671
912
  export interface DescribeModelRequest {
672
913
  /**
@@ -766,7 +1007,10 @@ declare namespace LookoutEquipment {
766
1007
  */
767
1008
  TotalNumberOfDuplicateTimestamps: Integer;
768
1009
  }
1010
+ export type Equipment = string;
769
1011
  export type EventDurationInSeconds = number;
1012
+ export type FaultCode = string;
1013
+ export type FaultCodes = FaultCode[];
770
1014
  export type FileNameTimestampFormat = string;
771
1015
  export type Float = number;
772
1016
  export type IamRoleArn = string;
@@ -938,6 +1182,10 @@ declare namespace LookoutEquipment {
938
1182
  * How often data is uploaded to the source S3 bucket for the input data. This value is the length of time between data uploads. For instance, if you select 5 minutes, Amazon Lookout for Equipment will upload the real-time data to the source bucket once every 5 minutes. This frequency also determines how often Amazon Lookout for Equipment starts a scheduled inference on your data. In this example, it starts once every 5 minutes.
939
1183
  */
940
1184
  DataUploadFrequency?: DataUploadFrequency;
1185
+ /**
1186
+ * Indicates whether the latest execution for the inference scheduler was Anomalous (anomalous events found) or Normal (no anomalous events found).
1187
+ */
1188
+ LatestInferenceResult?: LatestInferenceResult;
941
1189
  }
942
1190
  export interface IngestedFilesSummary {
943
1191
  /**
@@ -999,11 +1247,77 @@ declare namespace LookoutEquipment {
999
1247
  }
1000
1248
  export type KeyPattern = string;
1001
1249
  export type KmsKeyArn = string;
1250
+ export type LabelGroupArn = string;
1251
+ export type LabelGroupName = string;
1252
+ export type LabelGroupSummaries = LabelGroupSummary[];
1253
+ export interface LabelGroupSummary {
1254
+ /**
1255
+ * The name of the label group.
1256
+ */
1257
+ LabelGroupName?: LabelGroupName;
1258
+ /**
1259
+ * The ARN of the label group.
1260
+ */
1261
+ LabelGroupArn?: LabelGroupArn;
1262
+ /**
1263
+ * The time at which the label group was created.
1264
+ */
1265
+ CreatedAt?: Timestamp;
1266
+ /**
1267
+ * The time at which the label group was updated.
1268
+ */
1269
+ UpdatedAt?: Timestamp;
1270
+ }
1271
+ export type LabelId = string;
1272
+ export type LabelRating = "ANOMALY"|"NO_ANOMALY"|"NEUTRAL"|string;
1273
+ export type LabelSummaries = LabelSummary[];
1274
+ export interface LabelSummary {
1275
+ /**
1276
+ * The name of the label group.
1277
+ */
1278
+ LabelGroupName?: LabelGroupName;
1279
+ /**
1280
+ * The ID of the label.
1281
+ */
1282
+ LabelId?: LabelId;
1283
+ /**
1284
+ * The ARN of the label group.
1285
+ */
1286
+ LabelGroupArn?: LabelGroupArn;
1287
+ /**
1288
+ * The timestamp indicating the start of the label.
1289
+ */
1290
+ StartTime?: Timestamp;
1291
+ /**
1292
+ * The timestamp indicating the end of the label.
1293
+ */
1294
+ EndTime?: Timestamp;
1295
+ /**
1296
+ * Indicates whether a labeled event represents an anomaly.
1297
+ */
1298
+ Rating?: LabelRating;
1299
+ /**
1300
+ * Indicates the type of anomaly associated with the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.
1301
+ */
1302
+ FaultCode?: FaultCode;
1303
+ /**
1304
+ * Indicates that a label pertains to a particular piece of equipment.
1305
+ */
1306
+ Equipment?: Equipment;
1307
+ /**
1308
+ * The time at which the label was created.
1309
+ */
1310
+ CreatedAt?: Timestamp;
1311
+ }
1002
1312
  export interface LabelsInputConfiguration {
1003
1313
  /**
1004
1314
  * Contains location information for the S3 location being used for label data.
1005
1315
  */
1006
- S3InputConfiguration: LabelsS3InputConfiguration;
1316
+ S3InputConfiguration?: LabelsS3InputConfiguration;
1317
+ /**
1318
+ * The name of the label group to be used for label data.
1319
+ */
1320
+ LabelGroupName?: LabelGroupName;
1007
1321
  }
1008
1322
  export interface LabelsS3InputConfiguration {
1009
1323
  /**
@@ -1029,13 +1343,14 @@ declare namespace LookoutEquipment {
1029
1343
  */
1030
1344
  MaxTimestampGapInDays?: Integer;
1031
1345
  }
1346
+ export type LatestInferenceResult = "ANOMALOUS"|"NORMAL"|string;
1032
1347
  export interface ListDataIngestionJobsRequest {
1033
1348
  /**
1034
1349
  * The name of the dataset being used for the data ingestion job.
1035
1350
  */
1036
1351
  DatasetName?: DatasetName;
1037
1352
  /**
1038
- * An opaque pagination token indicating where to continue the listing of data ingestion jobs.
1353
+ * An opaque pagination token indicating where to continue the listing of data ingestion jobs.
1039
1354
  */
1040
1355
  NextToken?: NextToken;
1041
1356
  /**
@@ -1095,11 +1410,11 @@ declare namespace LookoutEquipment {
1095
1410
  */
1096
1411
  InferenceSchedulerName: InferenceSchedulerIdentifier;
1097
1412
  /**
1098
- * Lookout for Equipment will return all the inference events with start time equal to or greater than the start time given.
1413
+ * Lookout for Equipment will return all the inference events with an end time equal to or greater than the start time given.
1099
1414
  */
1100
1415
  IntervalStartTime: Timestamp;
1101
1416
  /**
1102
- * Lookout for Equipment will return all the inference events with end time equal to or less than the end time given.
1417
+ * Returns all the inference events with an end start time equal to or greater than less than the end time given
1103
1418
  */
1104
1419
  IntervalEndTime: Timestamp;
1105
1420
  }
@@ -1177,6 +1492,70 @@ declare namespace LookoutEquipment {
1177
1492
  */
1178
1493
  InferenceSchedulerSummaries?: InferenceSchedulerSummaries;
1179
1494
  }
1495
+ export interface ListLabelGroupsRequest {
1496
+ /**
1497
+ * The beginning of the name of the label groups to be listed.
1498
+ */
1499
+ LabelGroupNameBeginsWith?: LabelGroupName;
1500
+ /**
1501
+ * An opaque pagination token indicating where to continue the listing of label groups.
1502
+ */
1503
+ NextToken?: NextToken;
1504
+ /**
1505
+ * Specifies the maximum number of label groups to list.
1506
+ */
1507
+ MaxResults?: MaxResults;
1508
+ }
1509
+ export interface ListLabelGroupsResponse {
1510
+ /**
1511
+ * An opaque pagination token indicating where to continue the listing of label groups.
1512
+ */
1513
+ NextToken?: NextToken;
1514
+ /**
1515
+ * A summary of the label groups.
1516
+ */
1517
+ LabelGroupSummaries?: LabelGroupSummaries;
1518
+ }
1519
+ export interface ListLabelsRequest {
1520
+ /**
1521
+ * Retruns the name of the label group.
1522
+ */
1523
+ LabelGroupName: LabelGroupName;
1524
+ /**
1525
+ * Returns all the labels with a end time equal to or later than the start time given.
1526
+ */
1527
+ IntervalStartTime?: Timestamp;
1528
+ /**
1529
+ * Returns all labels with a start time earlier than the end time given.
1530
+ */
1531
+ IntervalEndTime?: Timestamp;
1532
+ /**
1533
+ * Returns labels with a particular fault code.
1534
+ */
1535
+ FaultCode?: FaultCode;
1536
+ /**
1537
+ * Lists the labels that pertain to a particular piece of equipment.
1538
+ */
1539
+ Equipment?: Equipment;
1540
+ /**
1541
+ * An opaque pagination token indicating where to continue the listing of label groups.
1542
+ */
1543
+ NextToken?: NextToken;
1544
+ /**
1545
+ * Specifies the maximum number of labels to list.
1546
+ */
1547
+ MaxResults?: MaxResults;
1548
+ }
1549
+ export interface ListLabelsResponse {
1550
+ /**
1551
+ * An opaque pagination token indicating where to continue the listing of datasets.
1552
+ */
1553
+ NextToken?: NextToken;
1554
+ /**
1555
+ * A summary of the items in the label group.
1556
+ */
1557
+ LabelSummaries?: LabelSummaries;
1558
+ }
1180
1559
  export interface ListModelsRequest {
1181
1560
  /**
1182
1561
  * An opaque pagination token indicating where to continue the listing of ML models.
@@ -1220,21 +1599,21 @@ declare namespace LookoutEquipment {
1220
1599
  */
1221
1600
  IngestionJobId?: IngestionJobId;
1222
1601
  /**
1223
- * Specifies the maximum number of sensors for which to retrieve statistics.
1602
+ * Specifies the maximum number of sensors for which to retrieve statistics.
1224
1603
  */
1225
1604
  MaxResults?: MaxResults;
1226
1605
  /**
1227
- * An opaque pagination token indicating where to continue the listing of sensor statistics.
1606
+ * An opaque pagination token indicating where to continue the listing of sensor statistics.
1228
1607
  */
1229
1608
  NextToken?: NextToken;
1230
1609
  }
1231
1610
  export interface ListSensorStatisticsResponse {
1232
1611
  /**
1233
- * Provides ingestion-based statistics regarding the specified sensor with respect to various validation types, such as whether data exists, the number and percentage of missing values, and the number and percentage of duplicate timestamps.
1612
+ * Provides ingestion-based statistics regarding the specified sensor with respect to various validation types, such as whether data exists, the number and percentage of missing values, and the number and percentage of duplicate timestamps.
1234
1613
  */
1235
1614
  SensorStatisticsSummaries?: SensorStatisticsSummaries;
1236
1615
  /**
1237
- * An opaque pagination token indicating where to continue the listing of sensor statistics.
1616
+ * An opaque pagination token indicating where to continue the listing of sensor statistics.
1238
1617
  */
1239
1618
  NextToken?: NextToken;
1240
1619
  }
@@ -1551,6 +1930,16 @@ declare namespace LookoutEquipment {
1551
1930
  */
1552
1931
  RoleArn?: IamRoleArn;
1553
1932
  }
1933
+ export interface UpdateLabelGroupRequest {
1934
+ /**
1935
+ * The name of the label group to be updated.
1936
+ */
1937
+ LabelGroupName: LabelGroupName;
1938
+ /**
1939
+ * Updates the code indicating the type of anomaly associated with the label. Data in this field will be retained for service usage. Follow best practices for the security of your data.
1940
+ */
1941
+ FaultCodes?: FaultCodes;
1942
+ }
1554
1943
  /**
1555
1944
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
1556
1945
  */