@aws-sdk/client-forecast 3.95.0 → 3.97.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 (79) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/Forecast.js +90 -0
  3. package/dist-cjs/commands/CreateMonitorCommand.js +36 -0
  4. package/dist-cjs/commands/DeleteMonitorCommand.js +36 -0
  5. package/dist-cjs/commands/DescribeMonitorCommand.js +36 -0
  6. package/dist-cjs/commands/ListMonitorEvaluationsCommand.js +36 -0
  7. package/dist-cjs/commands/ListMonitorsCommand.js +36 -0
  8. package/dist-cjs/commands/ResumeResourceCommand.js +36 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/models/models_0.js +125 -3
  11. package/dist-cjs/pagination/ListExplainabilitiesPaginator.js +36 -0
  12. package/dist-cjs/pagination/ListExplainabilityExportsPaginator.js +36 -0
  13. package/dist-cjs/pagination/ListMonitorEvaluationsPaginator.js +36 -0
  14. package/dist-cjs/pagination/ListMonitorsPaginator.js +36 -0
  15. package/dist-cjs/pagination/index.js +4 -0
  16. package/dist-cjs/protocols/Aws_json1_1.js +539 -2
  17. package/dist-es/Forecast.js +90 -0
  18. package/dist-es/commands/CreateMonitorCommand.js +39 -0
  19. package/dist-es/commands/DeleteMonitorCommand.js +39 -0
  20. package/dist-es/commands/DescribeMonitorCommand.js +39 -0
  21. package/dist-es/commands/ListMonitorEvaluationsCommand.js +39 -0
  22. package/dist-es/commands/ListMonitorsCommand.js +39 -0
  23. package/dist-es/commands/ResumeResourceCommand.js +39 -0
  24. package/dist-es/commands/index.js +6 -0
  25. package/dist-es/models/models_0.js +80 -0
  26. package/dist-es/pagination/ListExplainabilitiesPaginator.js +75 -0
  27. package/dist-es/pagination/ListExplainabilityExportsPaginator.js +75 -0
  28. package/dist-es/pagination/ListMonitorEvaluationsPaginator.js +75 -0
  29. package/dist-es/pagination/ListMonitorsPaginator.js +75 -0
  30. package/dist-es/pagination/index.js +4 -0
  31. package/dist-es/protocols/Aws_json1_1.js +624 -1
  32. package/dist-types/Forecast.d.ts +133 -45
  33. package/dist-types/ForecastClient.d.ts +8 -2
  34. package/dist-types/commands/CreateAutoPredictorCommand.d.ts +7 -5
  35. package/dist-types/commands/CreateDatasetCommand.d.ts +4 -4
  36. package/dist-types/commands/CreateDatasetGroupCommand.d.ts +4 -4
  37. package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +5 -4
  38. package/dist-types/commands/CreateExplainabilityCommand.d.ts +2 -2
  39. package/dist-types/commands/CreateMonitorCommand.d.ts +37 -0
  40. package/dist-types/commands/DeleteDatasetCommand.d.ts +5 -6
  41. package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +2 -2
  42. package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +3 -2
  43. package/dist-types/commands/DeleteMonitorCommand.d.ts +35 -0
  44. package/dist-types/commands/DescribeDatasetCommand.d.ts +1 -2
  45. package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +1 -1
  46. package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +1 -1
  47. package/dist-types/commands/DescribeMonitorCommand.d.ts +72 -0
  48. package/dist-types/commands/ListDatasetGroupsCommand.d.ts +5 -4
  49. package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +5 -4
  50. package/dist-types/commands/ListDatasetsCommand.d.ts +3 -3
  51. package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +37 -0
  52. package/dist-types/commands/ListMonitorsCommand.d.ts +36 -0
  53. package/dist-types/commands/ResumeResourceCommand.d.ts +35 -0
  54. package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +1 -1
  55. package/dist-types/commands/index.d.ts +6 -0
  56. package/dist-types/models/models_0.d.ts +660 -62
  57. package/dist-types/pagination/ListExplainabilitiesPaginator.d.ts +4 -0
  58. package/dist-types/pagination/ListExplainabilityExportsPaginator.d.ts +4 -0
  59. package/dist-types/pagination/ListMonitorEvaluationsPaginator.d.ts +4 -0
  60. package/dist-types/pagination/ListMonitorsPaginator.d.ts +4 -0
  61. package/dist-types/pagination/index.d.ts +4 -0
  62. package/dist-types/protocols/Aws_json1_1.d.ts +18 -0
  63. package/dist-types/ts3.4/Forecast.d.ts +30 -0
  64. package/dist-types/ts3.4/ForecastClient.d.ts +8 -2
  65. package/dist-types/ts3.4/commands/CreateMonitorCommand.d.ts +17 -0
  66. package/dist-types/ts3.4/commands/DeleteMonitorCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/DescribeMonitorCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/ListMonitorEvaluationsCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/ListMonitorsCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/ResumeResourceCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  72. package/dist-types/ts3.4/models/models_0.d.ts +252 -0
  73. package/dist-types/ts3.4/pagination/ListExplainabilitiesPaginator.d.ts +4 -0
  74. package/dist-types/ts3.4/pagination/ListExplainabilityExportsPaginator.d.ts +4 -0
  75. package/dist-types/ts3.4/pagination/ListMonitorEvaluationsPaginator.d.ts +4 -0
  76. package/dist-types/ts3.4/pagination/ListMonitorsPaginator.d.ts +4 -0
  77. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  78. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +18 -0
  79. package/package.json +1 -1
@@ -0,0 +1,37 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0";
5
+ export interface CreateMonitorCommandInput extends CreateMonitorRequest {
6
+ }
7
+ export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Creates a predictor monitor resource for an existing auto predictor. Predictor monitoring allows you to see how your predictor's performance changes over time.
11
+ * For more information, see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring.html">Predictor Monitoring</a>.
12
+ * </p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { ForecastClient, CreateMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
17
+ * // const { ForecastClient, CreateMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
18
+ * const client = new ForecastClient(config);
19
+ * const command = new CreateMonitorCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link CreateMonitorCommandInput} for command's `input` shape.
24
+ * @see {@link CreateMonitorCommandOutput} for command's `response` shape.
25
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class CreateMonitorCommand extends $Command<CreateMonitorCommandInput, CreateMonitorCommandOutput, ForecastClientResolvedConfig> {
29
+ readonly input: CreateMonitorCommandInput;
30
+ constructor(input: CreateMonitorCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMonitorCommandInput, CreateMonitorCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -7,14 +7,13 @@ export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
7
7
  export interface DeleteDatasetCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes an Amazon Forecast dataset that was created using the <a>CreateDataset</a>
11
- * operation. You can only delete datasets that have a status of <code>ACTIVE</code> or
12
- * <code>CREATE_FAILED</code>. To get the status use the <a>DescribeDataset</a>
13
- * operation.</p>
10
+ * <p>Deletes an Amazon Forecast dataset that was created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDataset.html">CreateDataset</a> operation. You can
11
+ * only delete datasets that have a status of <code>ACTIVE</code> or <code>CREATE_FAILED</code>.
12
+ * To get the status use the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDataset.html">DescribeDataset</a> operation.</p>
14
13
  * <note>
15
14
  * <p>Forecast does not automatically update any dataset groups that contain the deleted dataset.
16
- * In order to update the dataset group, use the
17
- * operation, omitting the deleted dataset's ARN.</p>
15
+ * In order to update the dataset group, use the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_UpdateDatasetGroup.html">UpdateDatasetGroup</a> operation,
16
+ * omitting the deleted dataset's ARN.</p>
18
17
  * </note>
19
18
  * @example
20
19
  * Use a bare-bones client and the command you need to make an API call.
@@ -7,9 +7,9 @@ export interface DeleteDatasetGroupCommandInput extends DeleteDatasetGroupReques
7
7
  export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes a dataset group created using the <a>CreateDatasetGroup</a> operation.
10
+ * <p>Deletes a dataset group created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetGroup.html">CreateDatasetGroup</a> operation.
11
11
  * You can only delete dataset groups that have a status of <code>ACTIVE</code>,
12
- * <code>CREATE_FAILED</code>, or <code>UPDATE_FAILED</code>. To get the status, use the <a>DescribeDatasetGroup</a> operation.</p>
12
+ * <code>CREATE_FAILED</code>, or <code>UPDATE_FAILED</code>. To get the status, use the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetGroup.html">DescribeDatasetGroup</a> operation.</p>
13
13
  * <p>This operation deletes only the dataset group, not the datasets in the group.</p>
14
14
  * @example
15
15
  * Use a bare-bones client and the command you need to make an API call.
@@ -7,9 +7,10 @@ export interface DeleteDatasetImportJobCommandInput extends DeleteDatasetImportJ
7
7
  export interface DeleteDatasetImportJobCommandOutput extends __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Deletes a dataset import job created using the <a>CreateDatasetImportJob</a>
10
+ * <p>Deletes a dataset import job created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetImportJob.html">CreateDatasetImportJob</a>
11
11
  * operation. You can delete only dataset import jobs that have a status of <code>ACTIVE</code>
12
- * or <code>CREATE_FAILED</code>. To get the status, use the <a>DescribeDatasetImportJob</a> operation.</p>
12
+ * or <code>CREATE_FAILED</code>. To get the status, use the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetImportJob.html">DescribeDatasetImportJob</a>
13
+ * operation.</p>
13
14
  * @example
14
15
  * Use a bare-bones client and the command you need to make an API call.
15
16
  * ```javascript
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { DeleteMonitorRequest } from "../models/models_0";
5
+ export interface DeleteMonitorCommandInput extends DeleteMonitorRequest {
6
+ }
7
+ export interface DeleteMonitorCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Deletes a monitor resource. You can only delete a monitor resource with a status of <code>ACTIVE</code>, <code>ACTIVE_STOPPED</code>, <code>CREATE_FAILED</code>, or <code>CREATE_STOPPED</code>.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ForecastClient, DeleteMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
15
+ * // const { ForecastClient, DeleteMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
16
+ * const client = new ForecastClient(config);
17
+ * const command = new DeleteMonitorCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link DeleteMonitorCommandInput} for command's `input` shape.
22
+ * @see {@link DeleteMonitorCommandOutput} for command's `response` shape.
23
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class DeleteMonitorCommand extends $Command<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, ForecastClientResolvedConfig> {
27
+ readonly input: DeleteMonitorCommandInput;
28
+ constructor(input: DeleteMonitorCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMonitorCommandInput, DeleteMonitorCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -7,8 +7,7 @@ export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
7
7
  export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Describes an Amazon Forecast dataset created using the <a>CreateDataset</a>
11
- * operation.</p>
10
+ * <p>Describes an Amazon Forecast dataset created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDataset.html">CreateDataset</a> operation.</p>
12
11
  * <p>In addition to listing the parameters specified in the <code>CreateDataset</code> request,
13
12
  * this operation includes the following dataset properties:</p>
14
13
  * <ul>
@@ -7,7 +7,7 @@ export interface DescribeDatasetGroupCommandInput extends DescribeDatasetGroupRe
7
7
  export interface DescribeDatasetGroupCommandOutput extends DescribeDatasetGroupResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Describes a dataset group created using the <a>CreateDatasetGroup</a>
10
+ * <p>Describes a dataset group created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetGroup.html">CreateDatasetGroup</a>
11
11
  * operation.</p>
12
12
  * <p>In addition to listing the parameters provided in the <code>CreateDatasetGroup</code>
13
13
  * request, this operation includes the following properties:</p>
@@ -7,7 +7,7 @@ export interface DescribeDatasetImportJobCommandInput extends DescribeDatasetImp
7
7
  export interface DescribeDatasetImportJobCommandOutput extends DescribeDatasetImportJobResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Describes a dataset import job created using the <a>CreateDatasetImportJob</a>
10
+ * <p>Describes a dataset import job created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetImportJob.html">CreateDatasetImportJob</a>
11
11
  * operation.</p>
12
12
  * <p>In addition to listing the parameters provided in the <code>CreateDatasetImportJob</code>
13
13
  * request, this operation includes the following properties:</p>
@@ -0,0 +1,72 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { DescribeMonitorRequest, DescribeMonitorResponse } from "../models/models_0";
5
+ export interface DescribeMonitorCommandInput extends DescribeMonitorRequest {
6
+ }
7
+ export interface DescribeMonitorCommandOutput extends DescribeMonitorResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Describes a monitor resource. In addition to listing the properties provided in the <a>CreateMonitor</a> request, this operation lists the following properties:</p>
11
+ * <ul>
12
+ * <li>
13
+ * <p>
14
+ * <code>Baseline</code>
15
+ * </p>
16
+ * </li>
17
+ * <li>
18
+ * <p>
19
+ * <code>CreationTime</code>
20
+ * </p>
21
+ * </li>
22
+ * <li>
23
+ * <p>
24
+ * <code>LastEvaluationTime</code>
25
+ * </p>
26
+ * </li>
27
+ * <li>
28
+ * <p>
29
+ * <code>LastEvaluationState</code>
30
+ * </p>
31
+ * </li>
32
+ * <li>
33
+ * <p>
34
+ * <code>LastModificationTime</code>
35
+ * </p>
36
+ * </li>
37
+ * <li>
38
+ * <p>
39
+ * <code>Message</code>
40
+ * </p>
41
+ * </li>
42
+ * <li>
43
+ * <p>
44
+ * <code>Status</code>
45
+ * </p>
46
+ * </li>
47
+ * </ul>
48
+ * @example
49
+ * Use a bare-bones client and the command you need to make an API call.
50
+ * ```javascript
51
+ * import { ForecastClient, DescribeMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
52
+ * // const { ForecastClient, DescribeMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
53
+ * const client = new ForecastClient(config);
54
+ * const command = new DescribeMonitorCommand(input);
55
+ * const response = await client.send(command);
56
+ * ```
57
+ *
58
+ * @see {@link DescribeMonitorCommandInput} for command's `input` shape.
59
+ * @see {@link DescribeMonitorCommandOutput} for command's `response` shape.
60
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
61
+ *
62
+ */
63
+ export declare class DescribeMonitorCommand extends $Command<DescribeMonitorCommandInput, DescribeMonitorCommandOutput, ForecastClientResolvedConfig> {
64
+ readonly input: DescribeMonitorCommandInput;
65
+ constructor(input: DescribeMonitorCommandInput);
66
+ /**
67
+ * @internal
68
+ */
69
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMonitorCommandInput, DescribeMonitorCommandOutput>;
70
+ private serialize;
71
+ private deserialize;
72
+ }
@@ -7,10 +7,11 @@ export interface ListDatasetGroupsCommandInput extends ListDatasetGroupsRequest
7
7
  export interface ListDatasetGroupsCommandOutput extends ListDatasetGroupsResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of dataset groups created using the <a>CreateDatasetGroup</a>
11
- * operation. For each dataset group, this operation returns a summary of its properties,
12
- * including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by
13
- * using the dataset group ARN with the <a>DescribeDatasetGroup</a> operation.</p>
10
+ * <p>Returns a list of dataset groups created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetGroup.html">CreateDatasetGroup</a> operation.
11
+ * For each dataset group, this operation returns a summary of its properties, including its
12
+ * Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the
13
+ * dataset group ARN with the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetGroup.html">DescribeDatasetGroup</a>
14
+ * operation.</p>
14
15
  * @example
15
16
  * Use a bare-bones client and the command you need to make an API call.
16
17
  * ```javascript
@@ -7,10 +7,11 @@ export interface ListDatasetImportJobsCommandInput extends ListDatasetImportJobs
7
7
  export interface ListDatasetImportJobsCommandOutput extends ListDatasetImportJobsResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of dataset import jobs created using the <a>CreateDatasetImportJob</a> operation. For each import job, this operation returns a
11
- * summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the
12
- * complete set of properties by using the ARN with the <a>DescribeDatasetImportJob</a> operation. You can filter the list by providing an array of <a>Filter</a>
13
- * objects.</p>
10
+ * <p>Returns a list of dataset import jobs created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDatasetImportJob.html">CreateDatasetImportJob</a>
11
+ * operation. For each import job, this operation returns a summary of its properties, including
12
+ * its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the
13
+ * ARN with the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetImportJob.html">DescribeDatasetImportJob</a>
14
+ * operation. You can filter the list by providing an array of <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_Filter.html">Filter</a> objects.</p>
14
15
  * @example
15
16
  * Use a bare-bones client and the command you need to make an API call.
16
17
  * ```javascript
@@ -7,9 +7,9 @@ export interface ListDatasetsCommandInput extends ListDatasetsRequest {
7
7
  export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Returns a list of datasets created using the <a>CreateDataset</a> operation.
11
- * For each dataset, a summary of its properties, including its Amazon Resource Name (ARN), is
12
- * returned. To retrieve the complete set of properties, use the ARN with the <a>DescribeDataset</a> operation.</p>
10
+ * <p>Returns a list of datasets created using the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_CreateDataset.html">CreateDataset</a> operation. For each
11
+ * dataset, a summary of its properties, including its Amazon Resource Name (ARN), is returned.
12
+ * To retrieve the complete set of properties, use the ARN with the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDataset.html">DescribeDataset</a> operation.</p>
13
13
  * @example
14
14
  * Use a bare-bones client and the command you need to make an API call.
15
15
  * ```javascript
@@ -0,0 +1,37 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { ListMonitorEvaluationsRequest, ListMonitorEvaluationsResponse } from "../models/models_0";
5
+ export interface ListMonitorEvaluationsCommandInput extends ListMonitorEvaluationsRequest {
6
+ }
7
+ export interface ListMonitorEvaluationsCommandOutput extends ListMonitorEvaluationsResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Returns a list of the monitoring evaluation results and predictor events collected by
11
+ * the monitor resource during different windows of time.</p>
12
+ * <p>For information about monitoring see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>. For more information about retrieving monitoring results see <a href="https://docs.aws.amazon.com/forecast/latest/dg/predictor-monitoring-results.html">Viewing Monitoring Results</a>.</p>
13
+ * @example
14
+ * Use a bare-bones client and the command you need to make an API call.
15
+ * ```javascript
16
+ * import { ForecastClient, ListMonitorEvaluationsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
17
+ * // const { ForecastClient, ListMonitorEvaluationsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
18
+ * const client = new ForecastClient(config);
19
+ * const command = new ListMonitorEvaluationsCommand(input);
20
+ * const response = await client.send(command);
21
+ * ```
22
+ *
23
+ * @see {@link ListMonitorEvaluationsCommandInput} for command's `input` shape.
24
+ * @see {@link ListMonitorEvaluationsCommandOutput} for command's `response` shape.
25
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
26
+ *
27
+ */
28
+ export declare class ListMonitorEvaluationsCommand extends $Command<ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput, ForecastClientResolvedConfig> {
29
+ readonly input: ListMonitorEvaluationsCommandInput;
30
+ constructor(input: ListMonitorEvaluationsCommandInput);
31
+ /**
32
+ * @internal
33
+ */
34
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { ListMonitorsRequest, ListMonitorsResponse } from "../models/models_0";
5
+ export interface ListMonitorsCommandInput extends ListMonitorsRequest {
6
+ }
7
+ export interface ListMonitorsCommandOutput extends ListMonitorsResponse, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Returns a list of monitors created with the <a>CreateMonitor</a> operation and <a>CreateAutoPredictor</a> operation. For each monitor resource, this operation returns of a summary of its properties, including its Amazon Resource Name (ARN). You
11
+ * can retrieve a complete set of properties of a monitor resource by specify the monitor's ARN in the <a>DescribeMonitor</a> operation.</p>
12
+ * @example
13
+ * Use a bare-bones client and the command you need to make an API call.
14
+ * ```javascript
15
+ * import { ForecastClient, ListMonitorsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
16
+ * // const { ForecastClient, ListMonitorsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
17
+ * const client = new ForecastClient(config);
18
+ * const command = new ListMonitorsCommand(input);
19
+ * const response = await client.send(command);
20
+ * ```
21
+ *
22
+ * @see {@link ListMonitorsCommandInput} for command's `input` shape.
23
+ * @see {@link ListMonitorsCommandOutput} for command's `response` shape.
24
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
25
+ *
26
+ */
27
+ export declare class ListMonitorsCommand extends $Command<ListMonitorsCommandInput, ListMonitorsCommandOutput, ForecastClientResolvedConfig> {
28
+ readonly input: ListMonitorsCommandInput;
29
+ constructor(input: ListMonitorsCommandInput);
30
+ /**
31
+ * @internal
32
+ */
33
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitorsCommandInput, ListMonitorsCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
4
+ import { ResumeResourceRequest } from "../models/models_0";
5
+ export interface ResumeResourceCommandInput extends ResumeResourceRequest {
6
+ }
7
+ export interface ResumeResourceCommandOutput extends __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>Resumes a stopped monitor resource.</p>
11
+ * @example
12
+ * Use a bare-bones client and the command you need to make an API call.
13
+ * ```javascript
14
+ * import { ForecastClient, ResumeResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
15
+ * // const { ForecastClient, ResumeResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
16
+ * const client = new ForecastClient(config);
17
+ * const command = new ResumeResourceCommand(input);
18
+ * const response = await client.send(command);
19
+ * ```
20
+ *
21
+ * @see {@link ResumeResourceCommandInput} for command's `input` shape.
22
+ * @see {@link ResumeResourceCommandOutput} for command's `response` shape.
23
+ * @see {@link ForecastClientResolvedConfig | config} for ForecastClient's `config` shape.
24
+ *
25
+ */
26
+ export declare class ResumeResourceCommand extends $Command<ResumeResourceCommandInput, ResumeResourceCommandOutput, ForecastClientResolvedConfig> {
27
+ readonly input: ResumeResourceCommandInput;
28
+ constructor(input: ResumeResourceCommandInput);
29
+ /**
30
+ * @internal
31
+ */
32
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResumeResourceCommandInput, ResumeResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -10,7 +10,7 @@ export interface UpdateDatasetGroupCommandOutput extends UpdateDatasetGroupRespo
10
10
  * <p>Replaces the datasets in a dataset group with the specified datasets.</p>
11
11
  * <note>
12
12
  * <p>The <code>Status</code> of the dataset group must be <code>ACTIVE</code> before you can
13
- * use the dataset group to create a predictor. Use the <a>DescribeDatasetGroup</a>
13
+ * use the dataset group to create a predictor. Use the <a href="https://docs.aws.amazon.com/forecast/latest/dg/API_DescribeDatasetGroup.html">DescribeDatasetGroup</a>
14
14
  * operation to get the status.</p>
15
15
  * </note>
16
16
  * @example
@@ -6,6 +6,7 @@ export * from "./CreateExplainabilityCommand";
6
6
  export * from "./CreateExplainabilityExportCommand";
7
7
  export * from "./CreateForecastCommand";
8
8
  export * from "./CreateForecastExportJobCommand";
9
+ export * from "./CreateMonitorCommand";
9
10
  export * from "./CreatePredictorBacktestExportJobCommand";
10
11
  export * from "./CreatePredictorCommand";
11
12
  export * from "./DeleteDatasetCommand";
@@ -15,6 +16,7 @@ export * from "./DeleteExplainabilityCommand";
15
16
  export * from "./DeleteExplainabilityExportCommand";
16
17
  export * from "./DeleteForecastCommand";
17
18
  export * from "./DeleteForecastExportJobCommand";
19
+ export * from "./DeleteMonitorCommand";
18
20
  export * from "./DeletePredictorBacktestExportJobCommand";
19
21
  export * from "./DeletePredictorCommand";
20
22
  export * from "./DeleteResourceTreeCommand";
@@ -26,6 +28,7 @@ export * from "./DescribeExplainabilityCommand";
26
28
  export * from "./DescribeExplainabilityExportCommand";
27
29
  export * from "./DescribeForecastCommand";
28
30
  export * from "./DescribeForecastExportJobCommand";
31
+ export * from "./DescribeMonitorCommand";
29
32
  export * from "./DescribePredictorBacktestExportJobCommand";
30
33
  export * from "./DescribePredictorCommand";
31
34
  export * from "./GetAccuracyMetricsCommand";
@@ -36,9 +39,12 @@ export * from "./ListExplainabilitiesCommand";
36
39
  export * from "./ListExplainabilityExportsCommand";
37
40
  export * from "./ListForecastExportJobsCommand";
38
41
  export * from "./ListForecastsCommand";
42
+ export * from "./ListMonitorEvaluationsCommand";
43
+ export * from "./ListMonitorsCommand";
39
44
  export * from "./ListPredictorBacktestExportJobsCommand";
40
45
  export * from "./ListPredictorsCommand";
41
46
  export * from "./ListTagsForResourceCommand";
47
+ export * from "./ResumeResourceCommand";
42
48
  export * from "./StopResourceCommand";
43
49
  export * from "./TagResourceCommand";
44
50
  export * from "./UntagResourceCommand";