@aws-sdk/client-iot-events 3.295.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.
Files changed (31) hide show
  1. package/dist-types/IoTEvents.d.ts +27 -0
  2. package/dist-types/IoTEventsClient.d.ts +24 -4
  3. package/dist-types/commands/CreateAlarmModelCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDetectorModelCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateInputCommand.d.ts +16 -0
  6. package/dist-types/commands/DeleteAlarmModelCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteDetectorModelCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteInputCommand.d.ts +16 -0
  9. package/dist-types/commands/DescribeAlarmModelCommand.d.ts +16 -0
  10. package/dist-types/commands/DescribeDetectorModelAnalysisCommand.d.ts +16 -0
  11. package/dist-types/commands/DescribeDetectorModelCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeInputCommand.d.ts +16 -0
  13. package/dist-types/commands/DescribeLoggingOptionsCommand.d.ts +16 -0
  14. package/dist-types/commands/GetDetectorModelAnalysisResultsCommand.d.ts +16 -0
  15. package/dist-types/commands/ListAlarmModelVersionsCommand.d.ts +16 -0
  16. package/dist-types/commands/ListAlarmModelsCommand.d.ts +16 -0
  17. package/dist-types/commands/ListDetectorModelVersionsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDetectorModelsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListInputRoutingsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListInputsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  22. package/dist-types/commands/PutLoggingOptionsCommand.d.ts +16 -0
  23. package/dist-types/commands/StartDetectorModelAnalysisCommand.d.ts +16 -0
  24. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  25. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  26. package/dist-types/commands/UpdateAlarmModelCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateDetectorModelCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateInputCommand.d.ts +16 -0
  29. package/dist-types/models/IoTEventsServiceException.d.ts +2 -0
  30. package/dist-types/models/models_0.d.ts +272 -21
  31. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { DescribeDetectorModelAnalysisRequest, DescribeDetectorModelAnalysisResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeDetectorModelAnalysisCommand}.
8
10
  */
9
11
  export interface DescribeDetectorModelAnalysisCommandInput extends DescribeDetectorModelAnalysisRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeDetectorModelAnalysisCommand}.
13
17
  */
14
18
  export interface DescribeDetectorModelAnalysisCommandOutput extends DescribeDetectorModelAnalysisResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves runtime information about a detector model analysis.</p>
18
23
  * <note>
19
24
  * <p>After AWS IoT Events starts analyzing your detector model, you have up to 24 hours to retrieve the analysis results.</p>
@@ -28,6 +33,8 @@ export interface DescribeDetectorModelAnalysisCommandOutput extends DescribeDete
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param DescribeDetectorModelAnalysisCommandInput - {@link DescribeDetectorModelAnalysisCommandInput}
37
+ * @returns {@link DescribeDetectorModelAnalysisCommandOutput}
31
38
  * @see {@link DescribeDetectorModelAnalysisCommandInput} for command's `input` shape.
32
39
  * @see {@link DescribeDetectorModelAnalysisCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeDetectorModelAnalysisCommandOutput extends DescribeDete
52
59
  export declare class DescribeDetectorModelAnalysisCommand extends $Command<DescribeDetectorModelAnalysisCommandInput, DescribeDetectorModelAnalysisCommandOutput, IoTEventsClientResolvedConfig> {
53
60
  readonly input: DescribeDetectorModelAnalysisCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeDetectorModelAnalysisCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDetectorModelAnalysisCommandInput, DescribeDetectorModelAnalysisCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { DescribeDetectorModelRequest, DescribeDetectorModelResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeDetectorModelCommand}.
8
10
  */
9
11
  export interface DescribeDetectorModelCommandInput extends DescribeDetectorModelRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeDetectorModelCommand}.
13
17
  */
14
18
  export interface DescribeDetectorModelCommandOutput extends DescribeDetectorModelResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes a detector model. If the <code>version</code> parameter is not specified,
18
23
  * information about the latest version is returned.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DescribeDetectorModelCommandOutput extends DescribeDetectorMode
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DescribeDetectorModelCommandInput - {@link DescribeDetectorModelCommandInput}
35
+ * @returns {@link DescribeDetectorModelCommandOutput}
29
36
  * @see {@link DescribeDetectorModelCommandInput} for command's `input` shape.
30
37
  * @see {@link DescribeDetectorModelCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -50,11 +57,20 @@ export interface DescribeDetectorModelCommandOutput extends DescribeDetectorMode
50
57
  export declare class DescribeDetectorModelCommand extends $Command<DescribeDetectorModelCommandInput, DescribeDetectorModelCommandOutput, IoTEventsClientResolvedConfig> {
51
58
  readonly input: DescribeDetectorModelCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: DescribeDetectorModelCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDetectorModelCommandInput, DescribeDetectorModelCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { DescribeInputRequest, DescribeInputResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeInputCommand}.
8
10
  */
9
11
  export interface DescribeInputCommandInput extends DescribeInputRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeInputCommand}.
13
17
  */
14
18
  export interface DescribeInputCommandOutput extends DescribeInputResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes 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 DescribeInputCommandOutput extends DescribeInputResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeInputCommandInput - {@link DescribeInputCommandInput}
34
+ * @returns {@link DescribeInputCommandOutput}
28
35
  * @see {@link DescribeInputCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeInputCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface DescribeInputCommandOutput extends DescribeInputResponse, __Met
49
56
  export declare class DescribeInputCommand extends $Command<DescribeInputCommandInput, DescribeInputCommandOutput, IoTEventsClientResolvedConfig> {
50
57
  readonly input: DescribeInputCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: DescribeInputCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeInputCommandInput, DescribeInputCommandOutput>;
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 { DescribeLoggingOptionsRequest, DescribeLoggingOptionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeLoggingOptionsCommand}.
8
10
  */
9
11
  export interface DescribeLoggingOptionsCommandInput extends DescribeLoggingOptionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeLoggingOptionsCommand}.
13
17
  */
14
18
  export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOptionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves the current settings of the AWS IoT Events logging options.</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 DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeLoggingOptionsCommandInput - {@link DescribeLoggingOptionsCommandInput}
34
+ * @returns {@link DescribeLoggingOptionsCommandOutput}
28
35
  * @see {@link DescribeLoggingOptionsCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeLoggingOptionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DescribeLoggingOptionsCommandOutput extends DescribeLoggingOpti
52
59
  export declare class DescribeLoggingOptionsCommand extends $Command<DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput, IoTEventsClientResolvedConfig> {
53
60
  readonly input: DescribeLoggingOptionsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DescribeLoggingOptionsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLoggingOptionsCommandInput, DescribeLoggingOptionsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { GetDetectorModelAnalysisResultsRequest, GetDetectorModelAnalysisResultsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDetectorModelAnalysisResultsCommand}.
8
10
  */
9
11
  export interface GetDetectorModelAnalysisResultsCommandInput extends GetDetectorModelAnalysisResultsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDetectorModelAnalysisResultsCommand}.
13
17
  */
14
18
  export interface GetDetectorModelAnalysisResultsCommandOutput extends GetDetectorModelAnalysisResultsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Retrieves one or more analysis results of the detector model.</p>
18
23
  * <note>
19
24
  * <p>After AWS IoT Events starts analyzing your detector model, you have up to 24 hours to retrieve the analysis results.</p>
@@ -28,6 +33,8 @@ export interface GetDetectorModelAnalysisResultsCommandOutput extends GetDetecto
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param GetDetectorModelAnalysisResultsCommandInput - {@link GetDetectorModelAnalysisResultsCommandInput}
37
+ * @returns {@link GetDetectorModelAnalysisResultsCommandOutput}
31
38
  * @see {@link GetDetectorModelAnalysisResultsCommandInput} for command's `input` shape.
32
39
  * @see {@link GetDetectorModelAnalysisResultsCommandOutput} for command's `response` shape.
33
40
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -52,11 +59,20 @@ export interface GetDetectorModelAnalysisResultsCommandOutput extends GetDetecto
52
59
  export declare class GetDetectorModelAnalysisResultsCommand extends $Command<GetDetectorModelAnalysisResultsCommandInput, GetDetectorModelAnalysisResultsCommandOutput, IoTEventsClientResolvedConfig> {
53
60
  readonly input: GetDetectorModelAnalysisResultsCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: GetDetectorModelAnalysisResultsCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDetectorModelAnalysisResultsCommandInput, GetDetectorModelAnalysisResultsCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListAlarmModelVersionsRequest, ListAlarmModelVersionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAlarmModelVersionsCommand}.
8
10
  */
9
11
  export interface ListAlarmModelVersionsCommandInput extends ListAlarmModelVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAlarmModelVersionsCommand}.
13
17
  */
14
18
  export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the versions of an alarm model. The operation returns only the metadata
18
23
  * associated with each alarm model version.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersi
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListAlarmModelVersionsCommandInput - {@link ListAlarmModelVersionsCommandInput}
35
+ * @returns {@link ListAlarmModelVersionsCommandOutput}
29
36
  * @see {@link ListAlarmModelVersionsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListAlarmModelVersionsCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListAlarmModelVersionsCommandOutput extends ListAlarmModelVersi
50
57
  export declare class ListAlarmModelVersionsCommand extends $Command<ListAlarmModelVersionsCommandInput, ListAlarmModelVersionsCommandOutput, IoTEventsClientResolvedConfig> {
51
58
  readonly input: ListAlarmModelVersionsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListAlarmModelVersionsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAlarmModelVersionsCommandInput, ListAlarmModelVersionsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListAlarmModelsRequest, ListAlarmModelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListAlarmModelsCommand}.
8
10
  */
9
11
  export interface ListAlarmModelsCommandInput extends ListAlarmModelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListAlarmModelsCommand}.
13
17
  */
14
18
  export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the alarm models that you created. The operation returns only the metadata
18
23
  * associated with each alarm model.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, _
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListAlarmModelsCommandInput - {@link ListAlarmModelsCommandInput}
35
+ * @returns {@link ListAlarmModelsCommandOutput}
29
36
  * @see {@link ListAlarmModelsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListAlarmModelsCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -47,11 +54,20 @@ export interface ListAlarmModelsCommandOutput extends ListAlarmModelsResponse, _
47
54
  export declare class ListAlarmModelsCommand extends $Command<ListAlarmModelsCommandInput, ListAlarmModelsCommandOutput, IoTEventsClientResolvedConfig> {
48
55
  readonly input: ListAlarmModelsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: ListAlarmModelsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListAlarmModelsCommandInput, ListAlarmModelsCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListDetectorModelVersionsRequest, ListDetectorModelVersionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDetectorModelVersionsCommand}.
8
10
  */
9
11
  export interface ListDetectorModelVersionsCommandInput extends ListDetectorModelVersionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDetectorModelVersionsCommand}.
13
17
  */
14
18
  export interface ListDetectorModelVersionsCommandOutput extends ListDetectorModelVersionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all the versions of a detector model. Only the metadata associated with each
18
23
  * detector model version is returned.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListDetectorModelVersionsCommandOutput extends ListDetectorMode
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListDetectorModelVersionsCommandInput - {@link ListDetectorModelVersionsCommandInput}
35
+ * @returns {@link ListDetectorModelVersionsCommandOutput}
29
36
  * @see {@link ListDetectorModelVersionsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListDetectorModelVersionsCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -50,11 +57,20 @@ export interface ListDetectorModelVersionsCommandOutput extends ListDetectorMode
50
57
  export declare class ListDetectorModelVersionsCommand extends $Command<ListDetectorModelVersionsCommandInput, ListDetectorModelVersionsCommandOutput, IoTEventsClientResolvedConfig> {
51
58
  readonly input: ListDetectorModelVersionsCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: ListDetectorModelVersionsCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDetectorModelVersionsCommandInput, ListDetectorModelVersionsCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListDetectorModelsRequest, ListDetectorModelsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDetectorModelsCommand}.
8
10
  */
9
11
  export interface ListDetectorModelsCommandInput extends ListDetectorModelsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDetectorModelsCommand}.
13
17
  */
14
18
  export interface ListDetectorModelsCommandOutput extends ListDetectorModelsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the detector models you have created. Only the metadata associated with each
18
23
  * detector model is returned.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListDetectorModelsCommandOutput extends ListDetectorModelsRespo
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListDetectorModelsCommandInput - {@link ListDetectorModelsCommandInput}
35
+ * @returns {@link ListDetectorModelsCommandOutput}
29
36
  * @see {@link ListDetectorModelsCommandInput} for command's `input` shape.
30
37
  * @see {@link ListDetectorModelsCommandOutput} for command's `response` shape.
31
38
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -47,11 +54,20 @@ export interface ListDetectorModelsCommandOutput extends ListDetectorModelsRespo
47
54
  export declare class ListDetectorModelsCommand extends $Command<ListDetectorModelsCommandInput, ListDetectorModelsCommandOutput, IoTEventsClientResolvedConfig> {
48
55
  readonly input: ListDetectorModelsCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: ListDetectorModelsCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDetectorModelsCommandInput, ListDetectorModelsCommandOutput>;
65
+ /**
66
+ * @internal
67
+ */
55
68
  private serialize;
69
+ /**
70
+ * @internal
71
+ */
56
72
  private deserialize;
57
73
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListInputRoutingsRequest, ListInputRoutingsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInputRoutingsCommand}.
8
10
  */
9
11
  export interface ListInputRoutingsCommandInput extends ListInputRoutingsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInputRoutingsCommand}.
13
17
  */
14
18
  export interface ListInputRoutingsCommandOutput extends ListInputRoutingsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>
18
23
  * Lists one or more input routings.
19
24
  * </p>
@@ -27,6 +32,8 @@ export interface ListInputRoutingsCommandOutput extends ListInputRoutingsRespons
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListInputRoutingsCommandInput - {@link ListInputRoutingsCommandInput}
36
+ * @returns {@link ListInputRoutingsCommandOutput}
30
37
  * @see {@link ListInputRoutingsCommandInput} for command's `input` shape.
31
38
  * @see {@link ListInputRoutingsCommandOutput} for command's `response` shape.
32
39
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -51,11 +58,20 @@ export interface ListInputRoutingsCommandOutput extends ListInputRoutingsRespons
51
58
  export declare class ListInputRoutingsCommand extends $Command<ListInputRoutingsCommandInput, ListInputRoutingsCommandOutput, IoTEventsClientResolvedConfig> {
52
59
  readonly input: ListInputRoutingsCommandInput;
53
60
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
61
+ /**
62
+ * @public
63
+ */
54
64
  constructor(input: ListInputRoutingsCommandInput);
55
65
  /**
56
66
  * @internal
57
67
  */
58
68
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInputRoutingsCommandInput, ListInputRoutingsCommandOutput>;
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 { ListInputsRequest, ListInputsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListInputsCommand}.
8
10
  */
9
11
  export interface ListInputsCommandInput extends ListInputsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListInputsCommand}.
13
17
  */
14
18
  export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the inputs you have created.</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 ListInputsCommandOutput extends ListInputsResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListInputsCommandInput - {@link ListInputsCommandInput}
34
+ * @returns {@link ListInputsCommandOutput}
28
35
  * @see {@link ListInputsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListInputsCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListInputsCommandOutput extends ListInputsResponse, __MetadataB
46
53
  export declare class ListInputsCommand extends $Command<ListInputsCommandInput, ListInputsCommandOutput, IoTEventsClientResolvedConfig> {
47
54
  readonly input: ListInputsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListInputsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListInputsCommandInput, ListInputsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { IoTEventsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../IoTEventsClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the tags (metadata) you have assigned to 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 ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
49
56
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, IoTEventsClientResolvedConfig> {
50
57
  readonly input: ListTagsForResourceCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListTagsForResourceCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { PutLoggingOptionsRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutLoggingOptionsCommand}.
8
10
  */
9
11
  export interface PutLoggingOptionsCommandInput extends PutLoggingOptionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutLoggingOptionsCommand}.
13
17
  */
14
18
  export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Sets or updates the AWS IoT Events logging options.</p>
18
23
  * <p>If you update the value of any <code>loggingOptions</code> field, it takes up to one
19
24
  * minute for the change to take effect. If you change the policy attached to the role you
@@ -29,6 +34,8 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param PutLoggingOptionsCommandInput - {@link PutLoggingOptionsCommandInput}
38
+ * @returns {@link PutLoggingOptionsCommandOutput}
32
39
  * @see {@link PutLoggingOptionsCommandInput} for command's `input` shape.
33
40
  * @see {@link PutLoggingOptionsCommandOutput} for command's `response` shape.
34
41
  * @see {@link IoTEventsClientResolvedConfig | config} for IoTEventsClient's `config` shape.
@@ -56,11 +63,20 @@ export interface PutLoggingOptionsCommandOutput extends __MetadataBearer {
56
63
  export declare class PutLoggingOptionsCommand extends $Command<PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput, IoTEventsClientResolvedConfig> {
57
64
  readonly input: PutLoggingOptionsCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: PutLoggingOptionsCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: IoTEventsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutLoggingOptionsCommandInput, PutLoggingOptionsCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }