@@ -768,6 +768,49 @@ export interface LabelsInputConfiguration {
768
768
LabelGroupName ?: string ;
769
769
}
770
770
771
+ /**
772
+ * @public
773
+ * <p>The Amazon S3 location for the pointwise model diagnostics for an Amazon Lookout for Equipment model. </p>
774
+ */
775
+ export interface ModelDiagnosticsS3OutputConfiguration {
776
+ /**
777
+ * @public
778
+ * <p>The name of the Amazon S3 bucket where the pointwise model diagnostics are located. You must be the owner of the Amazon S3 bucket. </p>
779
+ */
780
+ Bucket : string | undefined ;
781
+
782
+ /**
783
+ * @public
784
+ * <p>The Amazon S3 prefix for the location of the pointwise model diagnostics. The
785
+ * prefix specifies the folder and evaluation result file name.
786
+ * (<code>bucket</code>).</p>
787
+ * <p>When you call <code>CreateModel</code> or <code>UpdateModel</code>, specify the path
788
+ * within the bucket that you want Lookout for Equipment to save the model to. During training, Lookout for Equipment creates the model evaluation model
789
+ * as a compressed JSON file with the name <code>model_diagnostics_results.json.gz</code>.</p>
790
+ * <p>When you call <code>DescribeModel</code> or <code>DescribeModelVersion</code>, <code>prefix</code> contains
791
+ * the file path and filename of the model evaluation file. </p>
792
+ */
793
+ Prefix ?: string ;
794
+ }
795
+
796
+ /**
797
+ * @public
798
+ * <p>Output configuration information for the pointwise model diagnostics for an Amazon Lookout for Equipment model.</p>
799
+ */
800
+ export interface ModelDiagnosticsOutputConfiguration {
801
+ /**
802
+ * @public
803
+ * <p>The Amazon S3 location for the pointwise model diagnostics. </p>
804
+ */
805
+ S3OutputConfiguration : ModelDiagnosticsS3OutputConfiguration | undefined ;
806
+
807
+ /**
808
+ * @public
809
+ * <p>The Amazon Web Services Key Management Service (KMS) key identifier to encrypt the pointwise model diagnostics files.</p>
810
+ */
811
+ KmsKeyId ?: string ;
812
+ }
813
+
771
814
/**
772
815
* @public
773
816
*/
@@ -873,6 +916,15 @@ export interface CreateModelRequest {
873
916
* evaluation, or inference.</p>
874
917
*/
875
918
OffCondition ?: string ;
919
+
920
+ /**
921
+ * @public
922
+ * <p>The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics.
923
+ *
924
+ *
925
+ * You must also specify the <code>RoleArn</code> request parameter.</p>
926
+ */
927
+ ModelDiagnosticsOutputConfiguration ?: ModelDiagnosticsOutputConfiguration ;
876
928
}
877
929
878
930
/**
@@ -1151,7 +1203,7 @@ export interface MissingCompleteSensorData {
1151
1203
export interface SensorsWithShortDateRange {
1152
1204
/**
1153
1205
* @public
1154
- * <p> Indicates the number of sensors that have less than 90 days of data. </p>
1206
+ * <p> Indicates the number of sensors that have less than 14 days of data. </p>
1155
1207
*/
1156
1208
AffectedSensorCount : number | undefined ;
1157
1209
}
@@ -1172,7 +1224,7 @@ export interface InsufficientSensorData {
1172
1224
/**
1173
1225
* @public
1174
1226
* <p> Parameter that describes the total number of sensors that have a short date range of
1175
- * less than 90 days of data overall. </p>
1227
+ * less than 14 days of data overall. </p>
1176
1228
*/
1177
1229
SensorsWithShortDateRange : SensorsWithShortDateRange | undefined ;
1178
1230
}
@@ -1553,7 +1605,7 @@ export interface DescribeDatasetResponse {
1553
1605
1554
1606
/**
1555
1607
* @public
1556
- * <p> IngestedFilesSummary associated with the given dataset for the latest successful
1608
+ * <p>IngestedFilesSummary associated with the given dataset for the latest successful
1557
1609
* associated ingestion job id. </p>
1558
1610
*/
1559
1611
IngestedFilesSummary ?: IngestedFilesSummary ;
@@ -2159,6 +2211,12 @@ export interface DescribeModelResponse {
2159
2211
* <p>Indicates the status of the retraining scheduler. </p>
2160
2212
*/
2161
2213
RetrainingSchedulerStatus ?: RetrainingSchedulerStatus ;
2214
+
2215
+ /**
2216
+ * @public
2217
+ * <p>Configuration information for the model's pointwise model diagnostics.</p>
2218
+ */
2219
+ ModelDiagnosticsOutputConfiguration ?: ModelDiagnosticsOutputConfiguration ;
2162
2220
}
2163
2221
2164
2222
/**
@@ -2423,6 +2481,18 @@ export interface DescribeModelVersionResponse {
2423
2481
* better than the previous model. </p>
2424
2482
*/
2425
2483
AutoPromotionResultReason ?: string ;
2484
+
2485
+ /**
2486
+ * @public
2487
+ * <p>The Amazon S3 location where Amazon Lookout for Equipment saves the pointwise model diagnostics for the model version.</p>
2488
+ */
2489
+ ModelDiagnosticsOutputConfiguration ?: ModelDiagnosticsOutputConfiguration ;
2490
+
2491
+ /**
2492
+ * @public
2493
+ * <p>The Amazon S3 output prefix for where Lookout for Equipment saves the pointwise model diagnostics for the model version.</p>
2494
+ */
2495
+ ModelDiagnosticsResultsObject ?: S3Object ;
2426
2496
}
2427
2497
2428
2498
/**
@@ -3177,7 +3247,13 @@ export interface ListInferenceExecutionsResponse {
3177
3247
* @public
3178
3248
* <p>Provides an array of information about the individual inference executions returned from
3179
3249
* the <code>ListInferenceExecutions</code> operation, including model used, inference
3180
- * scheduler, data configuration, and so on. </p>
3250
+ * scheduler, data configuration, and so on. </p>
3251
+ * <note>
3252
+ * <p>If you don't supply the <code>InferenceSchedulerName</code> request parameter, or
3253
+ * if you supply the name of an inference scheduler that doesn't exist,
3254
+ * <code>ListInferenceExecutions</code> returns an empty array in
3255
+ * <code>InferenceExecutionSummaries</code>.</p>
3256
+ * </note>
3181
3257
*/
3182
3258
InferenceExecutionSummaries ?: InferenceExecutionSummary [ ] ;
3183
3259
}
@@ -3383,7 +3459,7 @@ export interface ListLabelGroupsResponse {
3383
3459
export interface ListLabelsRequest {
3384
3460
/**
3385
3461
* @public
3386
- * <p> Retruns the name of the label group. </p>
3462
+ * <p> Returns the name of the label group. </p>
3387
3463
*/
3388
3464
LabelGroupName : string | undefined ;
3389
3465
@@ -3502,6 +3578,11 @@ export interface ListLabelsResponse {
3502
3578
/**
3503
3579
* @public
3504
3580
* <p> A summary of the items in the label group. </p>
3581
+ * <note>
3582
+ * <p>If you don't supply the <code>LabelGroupName</code> request parameter, or if you supply
3583
+ * the name of a label group that doesn't exist, <code>ListLabels</code> returns an empty array in
3584
+ * <code>LabelSummaries</code>.</p>
3585
+ * </note>
3505
3586
*/
3506
3587
LabelSummaries ?: LabelSummary [ ] ;
3507
3588
}
@@ -3630,6 +3711,12 @@ export interface ModelSummary {
3630
3711
* <p>Indicates the status of the retraining scheduler. </p>
3631
3712
*/
3632
3713
RetrainingSchedulerStatus ?: RetrainingSchedulerStatus ;
3714
+
3715
+ /**
3716
+ * @public
3717
+ * <p>Output configuration information for the pointwise model diagnostics for an Amazon Lookout for Equipment model.</p>
3718
+ */
3719
+ ModelDiagnosticsOutputConfiguration ?: ModelDiagnosticsOutputConfiguration ;
3633
3720
}
3634
3721
3635
3722
/**
@@ -3780,6 +3867,11 @@ export interface ListModelVersionsResponse {
3780
3867
* @public
3781
3868
* <p>Provides information on the specified model version, including the created time, model
3782
3869
* and dataset ARNs, and status.</p>
3870
+ * <note>
3871
+ * <p>If you don't supply the <code>ModelName</code> request parameter, or if you supply the name
3872
+ * of a model that doesn't exist, <code>ListModelVersions</code> returns an empty array in
3873
+ * <code>ModelVersionSummaries</code>. </p>
3874
+ * </note>
3783
3875
*/
3784
3876
ModelVersionSummaries ?: ModelVersionSummary [ ] ;
3785
3877
}
@@ -4644,6 +4736,13 @@ export interface UpdateModelRequest {
4644
4736
* <p>The ARN of the model to update.</p>
4645
4737
*/
4646
4738
RoleArn ?: string ;
4739
+
4740
+ /**
4741
+ * @public
4742
+ * <p>The Amazon S3 location where you want Amazon Lookout for Equipment to save the pointwise model diagnostics for the model.
4743
+ * You must also specify the <code>RoleArn</code> request parameter.</p>
4744
+ */
4745
+ ModelDiagnosticsOutputConfiguration ?: ModelDiagnosticsOutputConfiguration ;
4647
4746
}
4648
4747
4649
4748
/**
0 commit comments