@aws-sdk/client-iot-events 3.299.0 → 3.300.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 (27) hide show
  1. package/dist-types/commands/CreateAlarmModelCommand.d.ts +167 -0
  2. package/dist-types/commands/CreateDetectorModelCommand.d.ts +468 -0
  3. package/dist-types/commands/CreateInputCommand.d.ts +17 -0
  4. package/dist-types/commands/DeleteAlarmModelCommand.d.ts +3 -0
  5. package/dist-types/commands/DeleteDetectorModelCommand.d.ts +3 -0
  6. package/dist-types/commands/DeleteInputCommand.d.ts +3 -0
  7. package/dist-types/commands/DescribeAlarmModelCommand.d.ts +4 -0
  8. package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +3 -0
  9. package/dist-types/commands/DescribeDetectorModelCommand.d.ts +4 -0
  10. package/dist-types/commands/DescribeInputCommand.d.ts +3 -0
  11. package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +1 -0
  12. package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +5 -0
  13. package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +5 -0
  14. package/dist-types/commands/ListAlarmModelsCommand.d.ts +4 -0
  15. package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +5 -0
  16. package/dist-types/commands/ListDetectorModelsCommand.d.ts +4 -0
  17. package/dist-types/commands/ListInputRoutingsCommand.d.ts +15 -0
  18. package/dist-types/commands/ListInputsCommand.d.ts +4 -0
  19. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  20. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +13 -0
  21. package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +457 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  24. package/dist-types/commands/UpdateAlarmModelCommand.d.ts +160 -0
  25. package/dist-types/commands/UpdateDetectorModelCommand.d.ts +461 -0
  26. package/dist-types/commands/UpdateInputCommand.d.ts +11 -0
  27. package/package.json +8 -8
@@ -27,6 +27,9 @@ export interface DeleteDetectorModelCommandOutput extends DeleteDetectorModelRes
27
27
  * import { IoTEventsClient, DeleteDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DeleteDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * detectorModelName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteDetectorModelCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -26,6 +26,9 @@ export interface DeleteInputCommandOutput extends DeleteInputResponse, __Metadat
26
26
  * import { IoTEventsClient, DeleteInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DeleteInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {
30
+ * inputName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DeleteInputCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ export interface DescribeAlarmModelCommandOutput extends DescribeAlarmModelRespo
27
27
  * import { IoTEventsClient, DescribeAlarmModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DescribeAlarmModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * alarmModelName: "STRING_VALUE", // required
32
+ * alarmModelVersion: "STRING_VALUE",
33
+ * };
30
34
  * const command = new DescribeAlarmModelCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -29,6 +29,9 @@ export interface DescribeDetectorModelAnalysisCommandOutput extends DescribeDete
29
29
  * import { IoTEventsClient, DescribeDetectorModelAnalysisCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
30
30
  * // const { IoTEventsClient, DescribeDetectorModelAnalysisCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
31
31
  * const client = new IoTEventsClient(config);
32
+ * const input = {
33
+ * analysisId: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new DescribeDetectorModelAnalysisCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -27,6 +27,10 @@ export interface DescribeDetectorModelCommandOutput extends DescribeDetectorMode
27
27
  * import { IoTEventsClient, DescribeDetectorModelCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, DescribeDetectorModelCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * detectorModelName: "STRING_VALUE", // required
32
+ * detectorModelVersion: "STRING_VALUE",
33
+ * };
30
34
  * const command = new DescribeDetectorModelCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,9 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
26
26
  * import { IoTEventsClient, DescribeInputCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DescribeInputCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {
30
+ * inputName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeInputCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,7 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti
26
26
  * import { IoTEventsClient, DescribeLoggingOptionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, DescribeLoggingOptionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {};
29
30
  * const command = new DescribeLoggingOptionsCommand(input);
30
31
  * const response = await client.send(command);
31
32
  * ```
@@ -29,6 +29,11 @@ export interface GetDetectorModelAnalysisResultsCommandOutput extends GetDetecto
29
29
  * import { IoTEventsClient, GetDetectorModelAnalysisResultsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
30
30
  * // const { IoTEventsClient, GetDetectorModelAnalysisResultsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
31
31
  * const client = new IoTEventsClient(config);
32
+ * const input = {
33
+ * analysisId: "STRING_VALUE", // required
34
+ * nextToken: "STRING_VALUE",
35
+ * maxResults: Number("int"),
36
+ * };
32
37
  * const command = new GetDetectorModelAnalysisResultsCommand(input);
33
38
  * const response = await client.send(command);
34
39
  * ```
@@ -27,6 +27,11 @@ export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersi
27
27
  * import { IoTEventsClient, ListAlarmModelVersionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListAlarmModelVersionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * alarmModelName: "STRING_VALUE", // required
32
+ * nextToken: "STRING_VALUE",
33
+ * maxResults: Number("int"),
34
+ * };
30
35
  * const command = new ListAlarmModelVersionsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,10 @@ export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, _
27
27
  * import { IoTEventsClient, ListAlarmModelsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListAlarmModelsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * };
30
34
  * const command = new ListAlarmModelsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -27,6 +27,11 @@ export interface ListDetectorModelVersionsCommandOutput extends ListDetectorMode
27
27
  * import { IoTEventsClient, ListDetectorModelVersionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListDetectorModelVersionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * detectorModelName: "STRING_VALUE", // required
32
+ * nextToken: "STRING_VALUE",
33
+ * maxResults: Number("int"),
34
+ * };
30
35
  * const command = new ListDetectorModelVersionsCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -27,6 +27,10 @@ export interface ListDetectorModelsCommandOutput extends ListDetectorModelsRespo
27
27
  * import { IoTEventsClient, ListDetectorModelsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
28
28
  * // const { IoTEventsClient, ListDetectorModelsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
29
29
  * const client = new IoTEventsClient(config);
30
+ * const input = {
31
+ * nextToken: "STRING_VALUE",
32
+ * maxResults: Number("int"),
33
+ * };
30
34
  * const command = new ListDetectorModelsCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -28,6 +28,21 @@ export interface ListInputRoutingsCommandOutput extends ListInputRoutingsRespons
28
28
  * import { IoTEventsClient, ListInputRoutingsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
29
29
  * // const { IoTEventsClient, ListInputRoutingsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
30
30
  * const client = new IoTEventsClient(config);
31
+ * const input = {
32
+ * inputIdentifier: {
33
+ * iotEventsInputIdentifier: {
34
+ * inputName: "STRING_VALUE", // required
35
+ * },
36
+ * iotSiteWiseInputIdentifier: {
37
+ * iotSiteWiseAssetModelPropertyIdentifier: {
38
+ * assetModelId: "STRING_VALUE", // required
39
+ * propertyId: "STRING_VALUE", // required
40
+ * },
41
+ * },
42
+ * },
43
+ * maxResults: Number("int"),
44
+ * nextToken: "STRING_VALUE",
45
+ * };
31
46
  * const command = new ListInputRoutingsCommand(input);
32
47
  * const response = await client.send(command);
33
48
  * ```
@@ -26,6 +26,10 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
26
26
  * import { IoTEventsClient, ListInputsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, ListInputsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {
30
+ * nextToken: "STRING_VALUE",
31
+ * maxResults: Number("int"),
32
+ * };
29
33
  * const command = new ListInputsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { IoTEventsClient, ListTagsForResourceCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
27
27
  * // const { IoTEventsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
28
28
  * const client = new IoTEventsClient(config);
29
+ * const input = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new ListTagsForResourceCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -30,6 +30,19 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
30
30
  * import { IoTEventsClient, PutLoggingOptionsCommand } from "@aws-sdk/client-iot-events"; // ES Modules import
31
31
  * // const { IoTEventsClient, PutLoggingOptionsCommand } = require("@aws-sdk/client-iot-events"); // CommonJS import
32
32
  * const client = new IoTEventsClient(config);
33
+ * const input = {
34
+ * loggingOptions: {
35
+ * roleArn: "STRING_VALUE", // required
36
+ * level: "STRING_VALUE", // required
37
+ * enabled: true || false, // required
38
+ * detectorDebugOptions: [
39
+ * {
40
+ * detectorModelName: "STRING_VALUE", // required
41
+ * keyValue: "STRING_VALUE",
42
+ * },
43
+ * ],
44
+ * },
45
+ * };
33
46
  * const command = new PutLoggingOptionsCommand(input);
34
47
  * const response = await client.send(command);
35
48
  * ```