@aws-sdk/client-lookoutequipment 3.325.0 → 3.326.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist-types/commands/CreateDatasetCommand.d.ts +8 -0
  2. package/dist-types/commands/CreateInferenceSchedulerCommand.d.ts +8 -0
  3. package/dist-types/commands/CreateLabelCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateLabelGroupCommand.d.ts +7 -0
  5. package/dist-types/commands/CreateModelCommand.d.ts +7 -0
  6. package/dist-types/commands/DeleteDatasetCommand.d.ts +4 -0
  7. package/dist-types/commands/DeleteInferenceSchedulerCommand.d.ts +4 -0
  8. package/dist-types/commands/DeleteLabelCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteLabelGroupCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteModelCommand.d.ts +4 -0
  11. package/dist-types/commands/DescribeDataIngestionJobCommand.d.ts +56 -0
  12. package/dist-types/commands/DescribeDatasetCommand.d.ts +56 -0
  13. package/dist-types/commands/DescribeInferenceSchedulerCommand.d.ts +35 -0
  14. package/dist-types/commands/DescribeLabelCommand.d.ts +15 -0
  15. package/dist-types/commands/DescribeLabelGroupCommand.d.ts +12 -0
  16. package/dist-types/commands/DescribeModelCommand.d.ts +34 -0
  17. package/dist-types/commands/ListDataIngestionJobsCommand.d.ts +21 -0
  18. package/dist-types/commands/ListDatasetsCommand.d.ts +14 -0
  19. package/dist-types/commands/ListInferenceEventsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListInferenceExecutionsCommand.d.ts +41 -0
  21. package/dist-types/commands/ListInferenceSchedulersCommand.d.ts +18 -0
  22. package/dist-types/commands/ListLabelGroupsCommand.d.ts +14 -0
  23. package/dist-types/commands/ListLabelsCommand.d.ts +19 -0
  24. package/dist-types/commands/ListModelsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListSensorStatisticsCommand.d.ts +47 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  27. package/dist-types/commands/StartDataIngestionJobCommand.d.ts +7 -0
  28. package/dist-types/commands/StartInferenceSchedulerCommand.d.ts +10 -0
  29. package/dist-types/commands/StopInferenceSchedulerCommand.d.ts +10 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  32. package/dist-types/commands/UpdateInferenceSchedulerCommand.d.ts +4 -0
  33. package/dist-types/commands/UpdateLabelGroupCommand.d.ts +4 -0
  34. package/package.json +3 -3
@@ -45,6 +45,12 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
45
45
  * };
46
46
  * const command = new CreateDatasetCommand(input);
47
47
  * const response = await client.send(command);
48
+ * // { // CreateDatasetResponse
49
+ * // DatasetName: "STRING_VALUE",
50
+ * // DatasetArn: "STRING_VALUE",
51
+ * // Status: "CREATED" || "INGESTION_IN_PROGRESS" || "ACTIVE",
52
+ * // };
53
+ *
48
54
  * ```
49
55
  *
50
56
  * @param CreateDatasetCommandInput - {@link CreateDatasetCommandInput}
@@ -75,6 +81,8 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
75
81
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
76
82
  * related AWS service that's being utilized. </p>
77
83
  *
84
+ * @throws {@link LookoutEquipmentServiceException}
85
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
78
86
  *
79
87
  */
80
88
  export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -65,6 +65,12 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
65
65
  * };
66
66
  * const command = new CreateInferenceSchedulerCommand(input);
67
67
  * const response = await client.send(command);
68
+ * // { // CreateInferenceSchedulerResponse
69
+ * // InferenceSchedulerArn: "STRING_VALUE",
70
+ * // InferenceSchedulerName: "STRING_VALUE",
71
+ * // Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
72
+ * // };
73
+ *
68
74
  * ```
69
75
  *
70
76
  * @param CreateInferenceSchedulerCommandInput - {@link CreateInferenceSchedulerCommandInput}
@@ -99,6 +105,8 @@ export interface CreateInferenceSchedulerCommandOutput extends CreateInferenceSc
99
105
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
100
106
  * related AWS service that's being utilized. </p>
101
107
  *
108
+ * @throws {@link LookoutEquipmentServiceException}
109
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
102
110
  *
103
111
  */
104
112
  export declare class CreateInferenceSchedulerCommand extends $Command<CreateInferenceSchedulerCommandInput, CreateInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -40,6 +40,10 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat
40
40
  * };
41
41
  * const command = new CreateLabelCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateLabelResponse
44
+ * // LabelId: "STRING_VALUE",
45
+ * // };
46
+ *
43
47
  * ```
44
48
  *
45
49
  * @param CreateLabelCommandInput - {@link CreateLabelCommandInput}
@@ -74,6 +78,8 @@ export interface CreateLabelCommandOutput extends CreateLabelResponse, __Metadat
74
78
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
75
79
  * related AWS service that's being utilized. </p>
76
80
  *
81
+ * @throws {@link LookoutEquipmentServiceException}
82
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
77
83
  *
78
84
  */
79
85
  export declare class CreateLabelCommand extends $Command<CreateLabelCommandInput, CreateLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -43,6 +43,11 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse,
43
43
  * };
44
44
  * const command = new CreateLabelGroupCommand(input);
45
45
  * const response = await client.send(command);
46
+ * // { // CreateLabelGroupResponse
47
+ * // LabelGroupName: "STRING_VALUE",
48
+ * // LabelGroupArn: "STRING_VALUE",
49
+ * // };
50
+ *
46
51
  * ```
47
52
  *
48
53
  * @param CreateLabelGroupCommandInput - {@link CreateLabelGroupCommandInput}
@@ -73,6 +78,8 @@ export interface CreateLabelGroupCommandOutput extends CreateLabelGroupResponse,
73
78
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
74
79
  * related AWS service that's being utilized. </p>
75
80
  *
81
+ * @throws {@link LookoutEquipmentServiceException}
82
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
76
83
  *
77
84
  */
78
85
  export declare class CreateLabelGroupCommand extends $Command<CreateLabelGroupCommandInput, CreateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -67,6 +67,11 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
67
67
  * };
68
68
  * const command = new CreateModelCommand(input);
69
69
  * const response = await client.send(command);
70
+ * // { // CreateModelResponse
71
+ * // ModelArn: "STRING_VALUE",
72
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
73
+ * // };
74
+ *
70
75
  * ```
71
76
  *
72
77
  * @param CreateModelCommandInput - {@link CreateModelCommandInput}
@@ -101,6 +106,8 @@ export interface CreateModelCommandOutput extends CreateModelResponse, __Metadat
101
106
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
102
107
  * related AWS service that's being utilized. </p>
103
108
  *
109
+ * @throws {@link LookoutEquipmentServiceException}
110
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
104
111
  *
105
112
  */
106
113
  export declare class CreateModelCommand extends $Command<CreateModelCommandInput, CreateModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
35
35
  * };
36
36
  * const command = new DeleteDatasetCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DeleteDatasetCommandInput - {@link DeleteDatasetCommandInput}
@@ -66,6 +68,8 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
66
68
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
67
69
  * related AWS service that's being utilized. </p>
68
70
  *
71
+ * @throws {@link LookoutEquipmentServiceException}
72
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
69
73
  *
70
74
  */
71
75
  export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
32
32
  * };
33
33
  * const command = new DeleteInferenceSchedulerCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteInferenceSchedulerCommandInput - {@link DeleteInferenceSchedulerCommandInput}
@@ -63,6 +65,8 @@ export interface DeleteInferenceSchedulerCommandOutput extends __MetadataBearer
63
65
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
64
66
  * related AWS service that's being utilized. </p>
65
67
  *
68
+ * @throws {@link LookoutEquipmentServiceException}
69
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
66
70
  *
67
71
  */
68
72
  export declare class DeleteInferenceSchedulerCommand extends $Command<DeleteInferenceSchedulerCommandInput, DeleteInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new DeleteLabelCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteLabelCommandInput - {@link DeleteLabelCommandInput}
@@ -65,6 +67,8 @@ export interface DeleteLabelCommandOutput extends __MetadataBearer {
65
67
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
66
68
  * related AWS service that's being utilized. </p>
67
69
  *
70
+ * @throws {@link LookoutEquipmentServiceException}
71
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
68
72
  *
69
73
  */
70
74
  export declare class DeleteLabelCommand extends $Command<DeleteLabelCommandInput, DeleteLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteLabelGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteLabelGroupCommandInput - {@link DeleteLabelGroupCommandInput}
@@ -64,6 +66,8 @@ export interface DeleteLabelGroupCommandOutput extends __MetadataBearer {
64
66
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
65
67
  * related AWS service that's being utilized. </p>
66
68
  *
69
+ * @throws {@link LookoutEquipmentServiceException}
70
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
67
71
  *
68
72
  */
69
73
  export declare class DeleteLabelGroupCommand extends $Command<DeleteLabelGroupCommandInput, DeleteLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteModelCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteModelCommandInput - {@link DeleteModelCommandInput}
@@ -64,6 +66,8 @@ export interface DeleteModelCommandOutput extends __MetadataBearer {
64
66
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
65
67
  * related AWS service that's being utilized. </p>
66
68
  *
69
+ * @throws {@link LookoutEquipmentServiceException}
70
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
67
71
  *
68
72
  */
69
73
  export declare class DeleteModelCommand extends $Command<DeleteModelCommandInput, DeleteModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -32,6 +32,60 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
32
32
  * };
33
33
  * const command = new DescribeDataIngestionJobCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeDataIngestionJobResponse
36
+ * // JobId: "STRING_VALUE",
37
+ * // DatasetArn: "STRING_VALUE",
38
+ * // IngestionInputConfiguration: { // IngestionInputConfiguration
39
+ * // S3InputConfiguration: { // IngestionS3InputConfiguration
40
+ * // Bucket: "STRING_VALUE", // required
41
+ * // Prefix: "STRING_VALUE",
42
+ * // KeyPattern: "STRING_VALUE",
43
+ * // },
44
+ * // },
45
+ * // RoleArn: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
48
+ * // FailedReason: "STRING_VALUE",
49
+ * // DataQualitySummary: { // DataQualitySummary
50
+ * // InsufficientSensorData: { // InsufficientSensorData
51
+ * // MissingCompleteSensorData: { // MissingCompleteSensorData
52
+ * // AffectedSensorCount: Number("int"), // required
53
+ * // },
54
+ * // SensorsWithShortDateRange: { // SensorsWithShortDateRange
55
+ * // AffectedSensorCount: Number("int"), // required
56
+ * // },
57
+ * // },
58
+ * // MissingSensorData: { // MissingSensorData
59
+ * // AffectedSensorCount: Number("int"), // required
60
+ * // TotalNumberOfMissingValues: Number("int"), // required
61
+ * // },
62
+ * // InvalidSensorData: { // InvalidSensorData
63
+ * // AffectedSensorCount: Number("int"), // required
64
+ * // TotalNumberOfInvalidValues: Number("int"), // required
65
+ * // },
66
+ * // UnsupportedTimestamps: { // UnsupportedTimestamps
67
+ * // TotalNumberOfUnsupportedTimestamps: Number("int"), // required
68
+ * // },
69
+ * // DuplicateTimestamps: { // DuplicateTimestamps
70
+ * // TotalNumberOfDuplicateTimestamps: Number("int"), // required
71
+ * // },
72
+ * // },
73
+ * // IngestedFilesSummary: { // IngestedFilesSummary
74
+ * // TotalNumberOfFiles: Number("int"), // required
75
+ * // IngestedNumberOfFiles: Number("int"), // required
76
+ * // DiscardedFiles: [ // ListOfDiscardedFiles
77
+ * // { // S3Object
78
+ * // Bucket: "STRING_VALUE", // required
79
+ * // Key: "STRING_VALUE", // required
80
+ * // },
81
+ * // ],
82
+ * // },
83
+ * // StatusDetail: "STRING_VALUE",
84
+ * // IngestedDataSize: Number("long"),
85
+ * // DataStartTime: new Date("TIMESTAMP"),
86
+ * // DataEndTime: new Date("TIMESTAMP"),
87
+ * // };
88
+ *
35
89
  * ```
36
90
  *
37
91
  * @param DescribeDataIngestionJobCommandInput - {@link DescribeDataIngestionJobCommandInput}
@@ -59,6 +113,8 @@ export interface DescribeDataIngestionJobCommandOutput extends DescribeDataInges
59
113
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
114
  * related AWS service that's being utilized. </p>
61
115
  *
116
+ * @throws {@link LookoutEquipmentServiceException}
117
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
62
118
  *
63
119
  */
64
120
  export declare class DescribeDataIngestionJobCommand extends $Command<DescribeDataIngestionJobCommandInput, DescribeDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -32,6 +32,60 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
32
32
  * };
33
33
  * const command = new DescribeDatasetCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeDatasetResponse
36
+ * // DatasetName: "STRING_VALUE",
37
+ * // DatasetArn: "STRING_VALUE",
38
+ * // CreatedAt: new Date("TIMESTAMP"),
39
+ * // LastUpdatedAt: new Date("TIMESTAMP"),
40
+ * // Status: "CREATED" || "INGESTION_IN_PROGRESS" || "ACTIVE",
41
+ * // Schema: "STRING_VALUE",
42
+ * // ServerSideKmsKeyId: "STRING_VALUE",
43
+ * // IngestionInputConfiguration: { // IngestionInputConfiguration
44
+ * // S3InputConfiguration: { // IngestionS3InputConfiguration
45
+ * // Bucket: "STRING_VALUE", // required
46
+ * // Prefix: "STRING_VALUE",
47
+ * // KeyPattern: "STRING_VALUE",
48
+ * // },
49
+ * // },
50
+ * // DataQualitySummary: { // DataQualitySummary
51
+ * // InsufficientSensorData: { // InsufficientSensorData
52
+ * // MissingCompleteSensorData: { // MissingCompleteSensorData
53
+ * // AffectedSensorCount: Number("int"), // required
54
+ * // },
55
+ * // SensorsWithShortDateRange: { // SensorsWithShortDateRange
56
+ * // AffectedSensorCount: Number("int"), // required
57
+ * // },
58
+ * // },
59
+ * // MissingSensorData: { // MissingSensorData
60
+ * // AffectedSensorCount: Number("int"), // required
61
+ * // TotalNumberOfMissingValues: Number("int"), // required
62
+ * // },
63
+ * // InvalidSensorData: { // InvalidSensorData
64
+ * // AffectedSensorCount: Number("int"), // required
65
+ * // TotalNumberOfInvalidValues: Number("int"), // required
66
+ * // },
67
+ * // UnsupportedTimestamps: { // UnsupportedTimestamps
68
+ * // TotalNumberOfUnsupportedTimestamps: Number("int"), // required
69
+ * // },
70
+ * // DuplicateTimestamps: { // DuplicateTimestamps
71
+ * // TotalNumberOfDuplicateTimestamps: Number("int"), // required
72
+ * // },
73
+ * // },
74
+ * // IngestedFilesSummary: { // IngestedFilesSummary
75
+ * // TotalNumberOfFiles: Number("int"), // required
76
+ * // IngestedNumberOfFiles: Number("int"), // required
77
+ * // DiscardedFiles: [ // ListOfDiscardedFiles
78
+ * // { // S3Object
79
+ * // Bucket: "STRING_VALUE", // required
80
+ * // Key: "STRING_VALUE", // required
81
+ * // },
82
+ * // ],
83
+ * // },
84
+ * // RoleArn: "STRING_VALUE",
85
+ * // DataStartTime: new Date("TIMESTAMP"),
86
+ * // DataEndTime: new Date("TIMESTAMP"),
87
+ * // };
88
+ *
35
89
  * ```
36
90
  *
37
91
  * @param DescribeDatasetCommandInput - {@link DescribeDatasetCommandInput}
@@ -59,6 +113,8 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
59
113
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
114
  * related AWS service that's being utilized. </p>
61
115
  *
116
+ * @throws {@link LookoutEquipmentServiceException}
117
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
62
118
  *
63
119
  */
64
120
  export declare class DescribeDatasetCommand extends $Command<DescribeDatasetCommandInput, DescribeDatasetCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -32,6 +32,39 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
32
32
  * };
33
33
  * const command = new DescribeInferenceSchedulerCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // DescribeInferenceSchedulerResponse
36
+ * // ModelArn: "STRING_VALUE",
37
+ * // ModelName: "STRING_VALUE",
38
+ * // InferenceSchedulerName: "STRING_VALUE",
39
+ * // InferenceSchedulerArn: "STRING_VALUE",
40
+ * // Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
41
+ * // DataDelayOffsetInMinutes: Number("long"),
42
+ * // DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
43
+ * // CreatedAt: new Date("TIMESTAMP"),
44
+ * // UpdatedAt: new Date("TIMESTAMP"),
45
+ * // DataInputConfiguration: { // InferenceInputConfiguration
46
+ * // S3InputConfiguration: { // InferenceS3InputConfiguration
47
+ * // Bucket: "STRING_VALUE", // required
48
+ * // Prefix: "STRING_VALUE",
49
+ * // },
50
+ * // InputTimeZoneOffset: "STRING_VALUE",
51
+ * // InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
52
+ * // TimestampFormat: "STRING_VALUE",
53
+ * // ComponentTimestampDelimiter: "STRING_VALUE",
54
+ * // },
55
+ * // },
56
+ * // DataOutputConfiguration: { // InferenceOutputConfiguration
57
+ * // S3OutputConfiguration: { // InferenceS3OutputConfiguration
58
+ * // Bucket: "STRING_VALUE", // required
59
+ * // Prefix: "STRING_VALUE",
60
+ * // },
61
+ * // KmsKeyId: "STRING_VALUE",
62
+ * // },
63
+ * // RoleArn: "STRING_VALUE",
64
+ * // ServerSideKmsKeyId: "STRING_VALUE",
65
+ * // LatestInferenceResult: "ANOMALOUS" || "NORMAL",
66
+ * // };
67
+ *
35
68
  * ```
36
69
  *
37
70
  * @param DescribeInferenceSchedulerCommandInput - {@link DescribeInferenceSchedulerCommandInput}
@@ -59,6 +92,8 @@ export interface DescribeInferenceSchedulerCommandOutput extends DescribeInferen
59
92
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
93
  * related AWS service that's being utilized. </p>
61
94
  *
95
+ * @throws {@link LookoutEquipmentServiceException}
96
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
62
97
  *
63
98
  */
64
99
  export declare class DescribeInferenceSchedulerCommand extends $Command<DescribeInferenceSchedulerCommandInput, DescribeInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -34,6 +34,19 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
34
34
  * };
35
35
  * const command = new DescribeLabelCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DescribeLabelResponse
38
+ * // LabelGroupName: "STRING_VALUE",
39
+ * // LabelGroupArn: "STRING_VALUE",
40
+ * // LabelId: "STRING_VALUE",
41
+ * // StartTime: new Date("TIMESTAMP"),
42
+ * // EndTime: new Date("TIMESTAMP"),
43
+ * // Rating: "ANOMALY" || "NO_ANOMALY" || "NEUTRAL",
44
+ * // FaultCode: "STRING_VALUE",
45
+ * // Notes: "STRING_VALUE",
46
+ * // Equipment: "STRING_VALUE",
47
+ * // CreatedAt: new Date("TIMESTAMP"),
48
+ * // };
49
+ *
37
50
  * ```
38
51
  *
39
52
  * @param DescribeLabelCommandInput - {@link DescribeLabelCommandInput}
@@ -61,6 +74,8 @@ export interface DescribeLabelCommandOutput extends DescribeLabelResponse, __Met
61
74
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
62
75
  * related AWS service that's being utilized. </p>
63
76
  *
77
+ * @throws {@link LookoutEquipmentServiceException}
78
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
64
79
  *
65
80
  */
66
81
  export declare class DescribeLabelCommand extends $Command<DescribeLabelCommandInput, DescribeLabelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
33
33
  * };
34
34
  * const command = new DescribeLabelGroupCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeLabelGroupResponse
37
+ * // LabelGroupName: "STRING_VALUE",
38
+ * // LabelGroupArn: "STRING_VALUE",
39
+ * // FaultCodes: [ // FaultCodes
40
+ * // "STRING_VALUE",
41
+ * // ],
42
+ * // CreatedAt: new Date("TIMESTAMP"),
43
+ * // UpdatedAt: new Date("TIMESTAMP"),
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param DescribeLabelGroupCommandInput - {@link DescribeLabelGroupCommandInput}
@@ -60,6 +70,8 @@ export interface DescribeLabelGroupCommandOutput extends DescribeLabelGroupRespo
60
70
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
61
71
  * related AWS service that's being utilized. </p>
62
72
  *
73
+ * @throws {@link LookoutEquipmentServiceException}
74
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
63
75
  *
64
76
  */
65
77
  export declare class DescribeLabelGroupCommand extends $Command<DescribeLabelGroupCommandInput, DescribeLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -33,6 +33,38 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
33
33
  * };
34
34
  * const command = new DescribeModelCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeModelResponse
37
+ * // ModelName: "STRING_VALUE",
38
+ * // ModelArn: "STRING_VALUE",
39
+ * // DatasetName: "STRING_VALUE",
40
+ * // DatasetArn: "STRING_VALUE",
41
+ * // Schema: "STRING_VALUE",
42
+ * // LabelsInputConfiguration: { // LabelsInputConfiguration
43
+ * // S3InputConfiguration: { // LabelsS3InputConfiguration
44
+ * // Bucket: "STRING_VALUE", // required
45
+ * // Prefix: "STRING_VALUE",
46
+ * // },
47
+ * // LabelGroupName: "STRING_VALUE",
48
+ * // },
49
+ * // TrainingDataStartTime: new Date("TIMESTAMP"),
50
+ * // TrainingDataEndTime: new Date("TIMESTAMP"),
51
+ * // EvaluationDataStartTime: new Date("TIMESTAMP"),
52
+ * // EvaluationDataEndTime: new Date("TIMESTAMP"),
53
+ * // RoleArn: "STRING_VALUE",
54
+ * // DataPreProcessingConfiguration: { // DataPreProcessingConfiguration
55
+ * // TargetSamplingRate: "PT1S" || "PT5S" || "PT10S" || "PT15S" || "PT30S" || "PT1M" || "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
56
+ * // },
57
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
58
+ * // TrainingExecutionStartTime: new Date("TIMESTAMP"),
59
+ * // TrainingExecutionEndTime: new Date("TIMESTAMP"),
60
+ * // FailedReason: "STRING_VALUE",
61
+ * // ModelMetrics: "STRING_VALUE",
62
+ * // LastUpdatedTime: new Date("TIMESTAMP"),
63
+ * // CreatedAt: new Date("TIMESTAMP"),
64
+ * // ServerSideKmsKeyId: "STRING_VALUE",
65
+ * // OffCondition: "STRING_VALUE",
66
+ * // };
67
+ *
36
68
  * ```
37
69
  *
38
70
  * @param DescribeModelCommandInput - {@link DescribeModelCommandInput}
@@ -60,6 +92,8 @@ export interface DescribeModelCommandOutput extends DescribeModelResponse, __Met
60
92
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
61
93
  * related AWS service that's being utilized. </p>
62
94
  *
95
+ * @throws {@link LookoutEquipmentServiceException}
96
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
63
97
  *
64
98
  */
65
99
  export declare class DescribeModelCommand extends $Command<DescribeModelCommandInput, DescribeModelCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -35,6 +35,25 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
35
35
  * };
36
36
  * const command = new ListDataIngestionJobsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListDataIngestionJobsResponse
39
+ * // NextToken: "STRING_VALUE",
40
+ * // DataIngestionJobSummaries: [ // DataIngestionJobSummaries
41
+ * // { // DataIngestionJobSummary
42
+ * // JobId: "STRING_VALUE",
43
+ * // DatasetName: "STRING_VALUE",
44
+ * // DatasetArn: "STRING_VALUE",
45
+ * // IngestionInputConfiguration: { // IngestionInputConfiguration
46
+ * // S3InputConfiguration: { // IngestionS3InputConfiguration
47
+ * // Bucket: "STRING_VALUE", // required
48
+ * // Prefix: "STRING_VALUE",
49
+ * // KeyPattern: "STRING_VALUE",
50
+ * // },
51
+ * // },
52
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
53
+ * // },
54
+ * // ],
55
+ * // };
56
+ *
38
57
  * ```
39
58
  *
40
59
  * @param ListDataIngestionJobsCommandInput - {@link ListDataIngestionJobsCommandInput}
@@ -58,6 +77,8 @@ export interface ListDataIngestionJobsCommandOutput extends ListDataIngestionJob
58
77
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
59
78
  * related AWS service that's being utilized. </p>
60
79
  *
80
+ * @throws {@link LookoutEquipmentServiceException}
81
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
61
82
  *
62
83
  */
63
84
  export declare class ListDataIngestionJobsCommand extends $Command<ListDataIngestionJobsCommandInput, ListDataIngestionJobsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -34,6 +34,18 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
34
34
  * };
35
35
  * const command = new ListDatasetsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListDatasetsResponse
38
+ * // NextToken: "STRING_VALUE",
39
+ * // DatasetSummaries: [ // DatasetSummaries
40
+ * // { // DatasetSummary
41
+ * // DatasetName: "STRING_VALUE",
42
+ * // DatasetArn: "STRING_VALUE",
43
+ * // Status: "CREATED" || "INGESTION_IN_PROGRESS" || "ACTIVE",
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // },
46
+ * // ],
47
+ * // };
48
+ *
37
49
  * ```
38
50
  *
39
51
  * @param ListDatasetsCommandInput - {@link ListDatasetsCommandInput}
@@ -57,6 +69,8 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
57
69
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
58
70
  * related AWS service that's being utilized. </p>
59
71
  *
72
+ * @throws {@link LookoutEquipmentServiceException}
73
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
60
74
  *
61
75
  */
62
76
  export declare class ListDatasetsCommand extends $Command<ListDatasetsCommandInput, ListDatasetsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
36
36
  * };
37
37
  * const command = new ListInferenceEventsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListInferenceEventsResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // InferenceEventSummaries: [ // InferenceEventSummaries
42
+ * // { // InferenceEventSummary
43
+ * // InferenceSchedulerArn: "STRING_VALUE",
44
+ * // InferenceSchedulerName: "STRING_VALUE",
45
+ * // EventStartTime: new Date("TIMESTAMP"),
46
+ * // EventEndTime: new Date("TIMESTAMP"),
47
+ * // Diagnostics: "STRING_VALUE",
48
+ * // EventDurationInSeconds: Number("long"),
49
+ * // },
50
+ * // ],
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListInferenceEventsCommandInput - {@link ListInferenceEventsCommandInput}
@@ -63,6 +77,8 @@ export interface ListInferenceEventsCommandOutput extends ListInferenceEventsRes
63
77
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
64
78
  * related AWS service that's being utilized. </p>
65
79
  *
80
+ * @throws {@link LookoutEquipmentServiceException}
81
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
66
82
  *
67
83
  */
68
84
  export declare class ListInferenceEventsCommand extends $Command<ListInferenceEventsCommandInput, ListInferenceEventsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -37,6 +37,45 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
37
37
  * };
38
38
  * const command = new ListInferenceExecutionsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListInferenceExecutionsResponse
41
+ * // NextToken: "STRING_VALUE",
42
+ * // InferenceExecutionSummaries: [ // InferenceExecutionSummaries
43
+ * // { // InferenceExecutionSummary
44
+ * // ModelName: "STRING_VALUE",
45
+ * // ModelArn: "STRING_VALUE",
46
+ * // InferenceSchedulerName: "STRING_VALUE",
47
+ * // InferenceSchedulerArn: "STRING_VALUE",
48
+ * // ScheduledStartTime: new Date("TIMESTAMP"),
49
+ * // DataStartTime: new Date("TIMESTAMP"),
50
+ * // DataEndTime: new Date("TIMESTAMP"),
51
+ * // DataInputConfiguration: { // InferenceInputConfiguration
52
+ * // S3InputConfiguration: { // InferenceS3InputConfiguration
53
+ * // Bucket: "STRING_VALUE", // required
54
+ * // Prefix: "STRING_VALUE",
55
+ * // },
56
+ * // InputTimeZoneOffset: "STRING_VALUE",
57
+ * // InferenceInputNameConfiguration: { // InferenceInputNameConfiguration
58
+ * // TimestampFormat: "STRING_VALUE",
59
+ * // ComponentTimestampDelimiter: "STRING_VALUE",
60
+ * // },
61
+ * // },
62
+ * // DataOutputConfiguration: { // InferenceOutputConfiguration
63
+ * // S3OutputConfiguration: { // InferenceS3OutputConfiguration
64
+ * // Bucket: "STRING_VALUE", // required
65
+ * // Prefix: "STRING_VALUE",
66
+ * // },
67
+ * // KmsKeyId: "STRING_VALUE",
68
+ * // },
69
+ * // CustomerResultObject: { // S3Object
70
+ * // Bucket: "STRING_VALUE", // required
71
+ * // Key: "STRING_VALUE", // required
72
+ * // },
73
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
74
+ * // FailedReason: "STRING_VALUE",
75
+ * // },
76
+ * // ],
77
+ * // };
78
+ *
40
79
  * ```
41
80
  *
42
81
  * @param ListInferenceExecutionsCommandInput - {@link ListInferenceExecutionsCommandInput}
@@ -64,6 +103,8 @@ export interface ListInferenceExecutionsCommandOutput extends ListInferenceExecu
64
103
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
65
104
  * related AWS service that's being utilized. </p>
66
105
  *
106
+ * @throws {@link LookoutEquipmentServiceException}
107
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
67
108
  *
68
109
  */
69
110
  export declare class ListInferenceExecutionsCommand extends $Command<ListInferenceExecutionsCommandInput, ListInferenceExecutionsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -36,6 +36,22 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
36
36
  * };
37
37
  * const command = new ListInferenceSchedulersCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListInferenceSchedulersResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // InferenceSchedulerSummaries: [ // InferenceSchedulerSummaries
42
+ * // { // InferenceSchedulerSummary
43
+ * // ModelName: "STRING_VALUE",
44
+ * // ModelArn: "STRING_VALUE",
45
+ * // InferenceSchedulerName: "STRING_VALUE",
46
+ * // InferenceSchedulerArn: "STRING_VALUE",
47
+ * // Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
48
+ * // DataDelayOffsetInMinutes: Number("long"),
49
+ * // DataUploadFrequency: "PT5M" || "PT10M" || "PT15M" || "PT30M" || "PT1H",
50
+ * // LatestInferenceResult: "ANOMALOUS" || "NORMAL",
51
+ * // },
52
+ * // ],
53
+ * // };
54
+ *
39
55
  * ```
40
56
  *
41
57
  * @param ListInferenceSchedulersCommandInput - {@link ListInferenceSchedulersCommandInput}
@@ -59,6 +75,8 @@ export interface ListInferenceSchedulersCommandOutput extends ListInferenceSched
59
75
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
76
  * related AWS service that's being utilized. </p>
61
77
  *
78
+ * @throws {@link LookoutEquipmentServiceException}
79
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
62
80
  *
63
81
  */
64
82
  export declare class ListInferenceSchedulersCommand extends $Command<ListInferenceSchedulersCommandInput, ListInferenceSchedulersCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
35
35
  * };
36
36
  * const command = new ListLabelGroupsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListLabelGroupsResponse
39
+ * // NextToken: "STRING_VALUE",
40
+ * // LabelGroupSummaries: [ // LabelGroupSummaries
41
+ * // { // LabelGroupSummary
42
+ * // LabelGroupName: "STRING_VALUE",
43
+ * // LabelGroupArn: "STRING_VALUE",
44
+ * // CreatedAt: new Date("TIMESTAMP"),
45
+ * // UpdatedAt: new Date("TIMESTAMP"),
46
+ * // },
47
+ * // ],
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param ListLabelGroupsCommandInput - {@link ListLabelGroupsCommandInput}
@@ -58,6 +70,8 @@ export interface ListLabelGroupsCommandOutput extends ListLabelGroupsResponse, _
58
70
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
59
71
  * related AWS service that's being utilized. </p>
60
72
  *
73
+ * @throws {@link LookoutEquipmentServiceException}
74
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
61
75
  *
62
76
  */
63
77
  export declare class ListLabelGroupsCommand extends $Command<ListLabelGroupsCommandInput, ListLabelGroupsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -39,6 +39,23 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
39
39
  * };
40
40
  * const command = new ListLabelsCommand(input);
41
41
  * const response = await client.send(command);
42
+ * // { // ListLabelsResponse
43
+ * // NextToken: "STRING_VALUE",
44
+ * // LabelSummaries: [ // LabelSummaries
45
+ * // { // LabelSummary
46
+ * // LabelGroupName: "STRING_VALUE",
47
+ * // LabelId: "STRING_VALUE",
48
+ * // LabelGroupArn: "STRING_VALUE",
49
+ * // StartTime: new Date("TIMESTAMP"),
50
+ * // EndTime: new Date("TIMESTAMP"),
51
+ * // Rating: "ANOMALY" || "NO_ANOMALY" || "NEUTRAL",
52
+ * // FaultCode: "STRING_VALUE",
53
+ * // Equipment: "STRING_VALUE",
54
+ * // CreatedAt: new Date("TIMESTAMP"),
55
+ * // },
56
+ * // ],
57
+ * // };
58
+ *
42
59
  * ```
43
60
  *
44
61
  * @param ListLabelsCommandInput - {@link ListLabelsCommandInput}
@@ -62,6 +79,8 @@ export interface ListLabelsCommandOutput extends ListLabelsResponse, __MetadataB
62
79
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
63
80
  * related AWS service that's being utilized. </p>
64
81
  *
82
+ * @throws {@link LookoutEquipmentServiceException}
83
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
65
84
  *
66
85
  */
67
86
  export declare class ListLabelsCommand extends $Command<ListLabelsCommandInput, ListLabelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -36,6 +36,20 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
36
36
  * };
37
37
  * const command = new ListModelsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListModelsResponse
40
+ * // NextToken: "STRING_VALUE",
41
+ * // ModelSummaries: [ // ModelSummaries
42
+ * // { // ModelSummary
43
+ * // ModelName: "STRING_VALUE",
44
+ * // ModelArn: "STRING_VALUE",
45
+ * // DatasetName: "STRING_VALUE",
46
+ * // DatasetArn: "STRING_VALUE",
47
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
48
+ * // CreatedAt: new Date("TIMESTAMP"),
49
+ * // },
50
+ * // ],
51
+ * // };
52
+ *
39
53
  * ```
40
54
  *
41
55
  * @param ListModelsCommandInput - {@link ListModelsCommandInput}
@@ -59,6 +73,8 @@ export interface ListModelsCommandOutput extends ListModelsResponse, __MetadataB
59
73
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
60
74
  * related AWS service that's being utilized. </p>
61
75
  *
76
+ * @throws {@link LookoutEquipmentServiceException}
77
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
62
78
  *
63
79
  */
64
80
  export declare class ListModelsCommand extends $Command<ListModelsCommandInput, ListModelsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -36,6 +36,51 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
36
36
  * };
37
37
  * const command = new ListSensorStatisticsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListSensorStatisticsResponse
40
+ * // SensorStatisticsSummaries: [ // SensorStatisticsSummaries
41
+ * // { // SensorStatisticsSummary
42
+ * // ComponentName: "STRING_VALUE",
43
+ * // SensorName: "STRING_VALUE",
44
+ * // DataExists: true || false,
45
+ * // MissingValues: { // CountPercent
46
+ * // Count: Number("int"), // required
47
+ * // Percentage: Number("float"), // required
48
+ * // },
49
+ * // InvalidValues: {
50
+ * // Count: Number("int"), // required
51
+ * // Percentage: Number("float"), // required
52
+ * // },
53
+ * // InvalidDateEntries: {
54
+ * // Count: Number("int"), // required
55
+ * // Percentage: Number("float"), // required
56
+ * // },
57
+ * // DuplicateTimestamps: {
58
+ * // Count: Number("int"), // required
59
+ * // Percentage: Number("float"), // required
60
+ * // },
61
+ * // CategoricalValues: { // CategoricalValues
62
+ * // Status: "POTENTIAL_ISSUE_DETECTED" || "NO_ISSUE_DETECTED", // required
63
+ * // NumberOfCategory: Number("int"),
64
+ * // },
65
+ * // MultipleOperatingModes: { // MultipleOperatingModes
66
+ * // Status: "POTENTIAL_ISSUE_DETECTED" || "NO_ISSUE_DETECTED", // required
67
+ * // },
68
+ * // LargeTimestampGaps: { // LargeTimestampGaps
69
+ * // Status: "POTENTIAL_ISSUE_DETECTED" || "NO_ISSUE_DETECTED", // required
70
+ * // NumberOfLargeTimestampGaps: Number("int"),
71
+ * // MaxTimestampGapInDays: Number("int"),
72
+ * // },
73
+ * // MonotonicValues: { // MonotonicValues
74
+ * // Status: "POTENTIAL_ISSUE_DETECTED" || "NO_ISSUE_DETECTED", // required
75
+ * // Monotonicity: "DECREASING" || "INCREASING" || "STATIC",
76
+ * // },
77
+ * // DataStartTime: new Date("TIMESTAMP"),
78
+ * // DataEndTime: new Date("TIMESTAMP"),
79
+ * // },
80
+ * // ],
81
+ * // NextToken: "STRING_VALUE",
82
+ * // };
83
+ *
39
84
  * ```
40
85
  *
41
86
  * @param ListSensorStatisticsCommandInput - {@link ListSensorStatisticsCommandInput}
@@ -63,6 +108,8 @@ export interface ListSensorStatisticsCommandOutput extends ListSensorStatisticsR
63
108
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
64
109
  * related AWS service that's being utilized. </p>
65
110
  *
111
+ * @throws {@link LookoutEquipmentServiceException}
112
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
66
113
  *
67
114
  */
68
115
  export declare class ListSensorStatisticsCommand extends $Command<ListSensorStatisticsCommandInput, ListSensorStatisticsCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -31,6 +31,15 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // ListTagsForResourceResponse
35
+ * // Tags: [ // TagList
36
+ * // { // Tag
37
+ * // Key: "STRING_VALUE", // required
38
+ * // Value: "STRING_VALUE", // required
39
+ * // },
40
+ * // ],
41
+ * // };
42
+ *
34
43
  * ```
35
44
  *
36
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -58,6 +67,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
58
67
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
59
68
  * related AWS service that's being utilized. </p>
60
69
  *
70
+ * @throws {@link LookoutEquipmentServiceException}
71
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
61
72
  *
62
73
  */
63
74
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -41,6 +41,11 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
41
41
  * };
42
42
  * const command = new StartDataIngestionJobCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // { // StartDataIngestionJobResponse
45
+ * // JobId: "STRING_VALUE",
46
+ * // Status: "IN_PROGRESS" || "SUCCESS" || "FAILED",
47
+ * // };
48
+ *
44
49
  * ```
45
50
  *
46
51
  * @param StartDataIngestionJobCommandInput - {@link StartDataIngestionJobCommandInput}
@@ -75,6 +80,8 @@ export interface StartDataIngestionJobCommandOutput extends StartDataIngestionJo
75
80
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
76
81
  * related AWS service that's being utilized. </p>
77
82
  *
83
+ * @throws {@link LookoutEquipmentServiceException}
84
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
78
85
  *
79
86
  */
80
87
  export declare class StartDataIngestionJobCommand extends $Command<StartDataIngestionJobCommandInput, StartDataIngestionJobCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -31,6 +31,14 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
31
31
  * };
32
32
  * const command = new StartInferenceSchedulerCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StartInferenceSchedulerResponse
35
+ * // ModelArn: "STRING_VALUE",
36
+ * // ModelName: "STRING_VALUE",
37
+ * // InferenceSchedulerName: "STRING_VALUE",
38
+ * // InferenceSchedulerArn: "STRING_VALUE",
39
+ * // Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
40
+ * // };
41
+ *
34
42
  * ```
35
43
  *
36
44
  * @param StartInferenceSchedulerCommandInput - {@link StartInferenceSchedulerCommandInput}
@@ -62,6 +70,8 @@ export interface StartInferenceSchedulerCommandOutput extends StartInferenceSche
62
70
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
63
71
  * related AWS service that's being utilized. </p>
64
72
  *
73
+ * @throws {@link LookoutEquipmentServiceException}
74
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
65
75
  *
66
76
  */
67
77
  export declare class StartInferenceSchedulerCommand extends $Command<StartInferenceSchedulerCommandInput, StartInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -31,6 +31,14 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
31
31
  * };
32
32
  * const command = new StopInferenceSchedulerCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // StopInferenceSchedulerResponse
35
+ * // ModelArn: "STRING_VALUE",
36
+ * // ModelName: "STRING_VALUE",
37
+ * // InferenceSchedulerName: "STRING_VALUE",
38
+ * // InferenceSchedulerArn: "STRING_VALUE",
39
+ * // Status: "PENDING" || "RUNNING" || "STOPPING" || "STOPPED",
40
+ * // };
41
+ *
34
42
  * ```
35
43
  *
36
44
  * @param StopInferenceSchedulerCommandInput - {@link StopInferenceSchedulerCommandInput}
@@ -62,6 +70,8 @@ export interface StopInferenceSchedulerCommandOutput extends StopInferenceSchedu
62
70
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
63
71
  * related AWS service that's being utilized. </p>
64
72
  *
73
+ * @throws {@link LookoutEquipmentServiceException}
74
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
65
75
  *
66
76
  */
67
77
  export declare class StopInferenceSchedulerCommand extends $Command<StopInferenceSchedulerCommandInput, StopInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -41,6 +41,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
41
41
  * };
42
42
  * const command = new TagResourceCommand(input);
43
43
  * const response = await client.send(command);
44
+ * // {};
45
+ *
44
46
  * ```
45
47
  *
46
48
  * @param TagResourceCommandInput - {@link TagResourceCommandInput}
@@ -71,6 +73,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
71
73
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
72
74
  * related AWS service that's being utilized. </p>
73
75
  *
76
+ * @throws {@link LookoutEquipmentServiceException}
77
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
74
78
  *
75
79
  */
76
80
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
34
34
  * };
35
35
  * const command = new UntagResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
@@ -61,6 +63,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
61
63
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
62
64
  * related AWS service that's being utilized. </p>
63
65
  *
66
+ * @throws {@link LookoutEquipmentServiceException}
67
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
64
68
  *
65
69
  */
66
70
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -52,6 +52,8 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
52
52
  * };
53
53
  * const command = new UpdateInferenceSchedulerCommand(input);
54
54
  * const response = await client.send(command);
55
+ * // {};
56
+ *
55
57
  * ```
56
58
  *
57
59
  * @param UpdateInferenceSchedulerCommandInput - {@link UpdateInferenceSchedulerCommandInput}
@@ -83,6 +85,8 @@ export interface UpdateInferenceSchedulerCommandOutput extends __MetadataBearer
83
85
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
84
86
  * related AWS service that's being utilized. </p>
85
87
  *
88
+ * @throws {@link LookoutEquipmentServiceException}
89
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
86
90
  *
87
91
  */
88
92
  export declare class UpdateInferenceSchedulerCommand extends $Command<UpdateInferenceSchedulerCommandInput, UpdateInferenceSchedulerCommandOutput, LookoutEquipmentClientResolvedConfig> {
@@ -36,6 +36,8 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
36
36
  * };
37
37
  * const command = new UpdateLabelGroupCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // {};
40
+ *
39
41
  * ```
40
42
  *
41
43
  * @param UpdateLabelGroupCommandInput - {@link UpdateLabelGroupCommandInput}
@@ -67,6 +69,8 @@ export interface UpdateLabelGroupCommandOutput extends __MetadataBearer {
67
69
  * <p> The input fails to satisfy constraints specified by Amazon Lookout for Equipment or a
68
70
  * related AWS service that's being utilized. </p>
69
71
  *
72
+ * @throws {@link LookoutEquipmentServiceException}
73
+ * <p>Base exception class for all service exceptions from LookoutEquipment service.</p>
70
74
  *
71
75
  */
72
76
  export declare class UpdateLabelGroupCommand extends $Command<UpdateLabelGroupCommandInput, UpdateLabelGroupCommandOutput, LookoutEquipmentClientResolvedConfig> {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-lookoutequipment",
3
3
  "description": "AWS SDK for JavaScript Lookoutequipment Client for Node.js, Browser and React Native",
4
- "version": "3.325.0",
4
+ "version": "3.326.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.325.0",
24
+ "@aws-sdk/client-sts": "3.326.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.326.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.310.0",
28
28
  "@aws-sdk/hash-node": "3.310.0",
29
29
  "@aws-sdk/invalid-dependency": "3.310.0",