@aws-sdk/client-iot-events 3.296.0 → 3.297.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.
- package/dist-types/IoTEvents.d.ts +27 -0
- package/dist-types/IoTEventsClient.d.ts +24 -4
- package/dist-types/commands/CreateAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateInputCommand.d.ts +16 -0
- package/dist-types/commands/DeleteAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteInputCommand.d.ts +16 -0
- package/dist-types/commands/DescribeAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/DescribeInputCommand.d.ts +16 -0
- package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +16 -0
- package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListAlarmModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListDetectorModelsCommand.d.ts +16 -0
- package/dist-types/commands/ListInputRoutingsCommand.d.ts +16 -0
- package/dist-types/commands/ListInputsCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/PutLoggingOptionsCommand.d.ts +16 -0
- package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateAlarmModelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDetectorModelCommand.d.ts +16 -0
- package/dist-types/commands/UpdateInputCommand.d.ts +16 -0
- package/dist-types/models/IoTEventsServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +272 -21
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { StartDetectorModelAnalysisRequest, StartDetectorModelAnalysisResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartDetectorModelAnalysisCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartDetectorModelAnalysisCommandInput extends StartDetectorModelAnalysisRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartDetectorModelAnalysisCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorModelAnalysisResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Performs an analysis of your detector model. For more information,
|
|
18
23
|
* see <a href="https://docs.aws.amazon.com/iotevents/latest/developerguide/iotevents-analyze-api.html">Troubleshooting a detector model</a>
|
|
19
24
|
* in the <i>AWS IoT Events Developer Guide</i>.</p>
|
|
@@ -27,6 +32,8 @@ export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param StartDetectorModelAnalysisCommandInput - {@link StartDetectorModelAnalysisCommandInput}
|
|
36
|
+
* @returns {@link StartDetectorModelAnalysisCommandOutput}
|
|
30
37
|
* @see {@link StartDetectorModelAnalysisCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link StartDetectorModelAnalysisCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface StartDetectorModelAnalysisCommandOutput extends StartDetectorMo
|
|
|
51
58
|
export declare class StartDetectorModelAnalysisCommand extends $Command<StartDetectorModelAnalysisCommandInput, StartDetectorModelAnalysisCommandOutput, IoTEventsClientResolvedConfig> {
|
|
52
59
|
readonly input: StartDetectorModelAnalysisCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: StartDetectorModelAnalysisCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartDetectorModelAnalysisCommandInput, StartDetectorModelAnalysisCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used to
|
|
18
23
|
* manage a resource.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
53
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, IoTEventsClientResolvedConfig> {
|
|
54
61
|
readonly input: TagResourceCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: TagResourceCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the given tags (metadata) from the resource.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
49
56
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, IoTEventsClientResolvedConfig> {
|
|
50
57
|
readonly input: UntagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UntagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { UpdateAlarmModelRequest, UpdateAlarmModelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateAlarmModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateAlarmModelCommandInput extends UpdateAlarmModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateAlarmModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an alarm model. Any alarms that were created based on the previous version are
|
|
18
23
|
* deleted and then created again as new data arrives.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateAlarmModelCommandInput - {@link UpdateAlarmModelCommandInput}
|
|
35
|
+
* @returns {@link UpdateAlarmModelCommandOutput}
|
|
29
36
|
* @see {@link UpdateAlarmModelCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateAlarmModelCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateAlarmModelCommandOutput extends UpdateAlarmModelResponse,
|
|
|
53
60
|
export declare class UpdateAlarmModelCommand extends $Command<UpdateAlarmModelCommandInput, UpdateAlarmModelCommandOutput, IoTEventsClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateAlarmModelCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateAlarmModelCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateAlarmModelCommandInput, UpdateAlarmModelCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { UpdateDetectorModelRequest, UpdateDetectorModelResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateDetectorModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateDetectorModelCommandInput extends UpdateDetectorModelRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateDetectorModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a detector model. Detectors (instances) spawned by the previous version are
|
|
18
23
|
* deleted and then re-created as new inputs arrive.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateDetectorModelCommandInput - {@link UpdateDetectorModelCommandInput}
|
|
35
|
+
* @returns {@link UpdateDetectorModelCommandOutput}
|
|
29
36
|
* @see {@link UpdateDetectorModelCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateDetectorModelCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface UpdateDetectorModelCommandOutput extends UpdateDetectorModelRes
|
|
|
53
60
|
export declare class UpdateDetectorModelCommand extends $Command<UpdateDetectorModelCommandInput, UpdateDetectorModelCommandOutput, IoTEventsClientResolvedConfig> {
|
|
54
61
|
readonly input: UpdateDetectorModelCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: UpdateDetectorModelCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDetectorModelCommandInput, UpdateDetectorModelCommandOutput>;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
61
74
|
private serialize;
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
62
78
|
private deserialize;
|
|
63
79
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
|
|
5
5
|
import { UpdateInputRequest, UpdateInputResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateInputCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateInputCommandInput extends UpdateInputRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateInputCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateInputCommandOutput extends UpdateInputResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an input.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateInputCommandInput - {@link UpdateInputCommandInput}
|
|
34
|
+
* @returns {@link UpdateInputCommandOutput}
|
|
28
35
|
* @see {@link UpdateInputCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateInputCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
|
|
@@ -52,11 +59,20 @@ export interface UpdateInputCommandOutput extends UpdateInputResponse, __Metadat
|
|
|
52
59
|
export declare class UpdateInputCommand extends $Command<UpdateInputCommandInput, UpdateInputCommandOutput, IoTEventsClientResolvedConfig> {
|
|
53
60
|
readonly input: UpdateInputCommandInput;
|
|
54
61
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
62
|
+
/**
|
|
63
|
+
* @public
|
|
64
|
+
*/
|
|
55
65
|
constructor(input: UpdateInputCommandInput);
|
|
56
66
|
/**
|
|
57
67
|
* @internal
|
|
58
68
|
*/
|
|
59
69
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateInputCommandInput, UpdateInputCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
60
73
|
private serialize;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
61
77
|
private deserialize;
|
|
62
78
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from IoTEvents service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class IoTEventsServiceException extends __ServiceException {
|