@aws-sdk/client-forecast 3.92.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 +27 -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 +4 -4
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } from "../commands/ListExplainabilitiesCommand";
3
+ import { ForecastPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListExplainabilities(config: ForecastPaginationConfiguration, input: ListExplainabilitiesCommandInput, ...additionalArguments: any): Paginator<ListExplainabilitiesCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "../commands/ListExplainabilityExportsCommand";
3
+ import { ForecastPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListExplainabilityExports(config: ForecastPaginationConfiguration, input: ListExplainabilityExportsCommandInput, ...additionalArguments: any): Paginator<ListExplainabilityExportsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "../commands/ListMonitorEvaluationsCommand";
3
+ import { ForecastPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListMonitorEvaluations(config: ForecastPaginationConfiguration, input: ListMonitorEvaluationsCommandInput, ...additionalArguments: any): Paginator<ListMonitorEvaluationsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
3
+ import { ForecastPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListMonitors(config: ForecastPaginationConfiguration, input: ListMonitorsCommandInput, ...additionalArguments: any): Paginator<ListMonitorsCommandOutput>;
@@ -2,7 +2,11 @@ export * from "./Interfaces";
2
2
  export * from "./ListDatasetGroupsPaginator";
3
3
  export * from "./ListDatasetImportJobsPaginator";
4
4
  export * from "./ListDatasetsPaginator";
5
+ export * from "./ListExplainabilitiesPaginator";
6
+ export * from "./ListExplainabilityExportsPaginator";
5
7
  export * from "./ListForecastExportJobsPaginator";
6
8
  export * from "./ListForecastsPaginator";
9
+ export * from "./ListMonitorEvaluationsPaginator";
10
+ export * from "./ListMonitorsPaginator";
7
11
  export * from "./ListPredictorBacktestExportJobsPaginator";
8
12
  export * from "./ListPredictorsPaginator";
@@ -8,6 +8,7 @@ import { CreateExplainabilityCommandInput, CreateExplainabilityCommandOutput } f
8
8
  import { CreateExplainabilityExportCommandInput, CreateExplainabilityExportCommandOutput } from "../commands/CreateExplainabilityExportCommand";
9
9
  import { CreateForecastCommandInput, CreateForecastCommandOutput } from "../commands/CreateForecastCommand";
10
10
  import { CreateForecastExportJobCommandInput, CreateForecastExportJobCommandOutput } from "../commands/CreateForecastExportJobCommand";
11
+ import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "../commands/CreateMonitorCommand";
11
12
  import { CreatePredictorBacktestExportJobCommandInput, CreatePredictorBacktestExportJobCommandOutput } from "../commands/CreatePredictorBacktestExportJobCommand";
12
13
  import { CreatePredictorCommandInput, CreatePredictorCommandOutput } from "../commands/CreatePredictorCommand";
13
14
  import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "../commands/DeleteDatasetCommand";
@@ -17,6 +18,7 @@ import { DeleteExplainabilityCommandInput, DeleteExplainabilityCommandOutput } f
17
18
  import { DeleteExplainabilityExportCommandInput, DeleteExplainabilityExportCommandOutput } from "../commands/DeleteExplainabilityExportCommand";
18
19
  import { DeleteForecastCommandInput, DeleteForecastCommandOutput } from "../commands/DeleteForecastCommand";
19
20
  import { DeleteForecastExportJobCommandInput, DeleteForecastExportJobCommandOutput } from "../commands/DeleteForecastExportJobCommand";
21
+ import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "../commands/DeleteMonitorCommand";
20
22
  import { DeletePredictorBacktestExportJobCommandInput, DeletePredictorBacktestExportJobCommandOutput } from "../commands/DeletePredictorBacktestExportJobCommand";
21
23
  import { DeletePredictorCommandInput, DeletePredictorCommandOutput } from "../commands/DeletePredictorCommand";
22
24
  import { DeleteResourceTreeCommandInput, DeleteResourceTreeCommandOutput } from "../commands/DeleteResourceTreeCommand";
@@ -28,6 +30,7 @@ import { DescribeExplainabilityCommandInput, DescribeExplainabilityCommandOutput
28
30
  import { DescribeExplainabilityExportCommandInput, DescribeExplainabilityExportCommandOutput } from "../commands/DescribeExplainabilityExportCommand";
29
31
  import { DescribeForecastCommandInput, DescribeForecastCommandOutput } from "../commands/DescribeForecastCommand";
30
32
  import { DescribeForecastExportJobCommandInput, DescribeForecastExportJobCommandOutput } from "../commands/DescribeForecastExportJobCommand";
33
+ import { DescribeMonitorCommandInput, DescribeMonitorCommandOutput } from "../commands/DescribeMonitorCommand";
31
34
  import { DescribePredictorBacktestExportJobCommandInput, DescribePredictorBacktestExportJobCommandOutput } from "../commands/DescribePredictorBacktestExportJobCommand";
32
35
  import { DescribePredictorCommandInput, DescribePredictorCommandOutput } from "../commands/DescribePredictorCommand";
33
36
  import { GetAccuracyMetricsCommandInput, GetAccuracyMetricsCommandOutput } from "../commands/GetAccuracyMetricsCommand";
@@ -38,9 +41,12 @@ import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } f
38
41
  import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "../commands/ListExplainabilityExportsCommand";
39
42
  import { ListForecastExportJobsCommandInput, ListForecastExportJobsCommandOutput } from "../commands/ListForecastExportJobsCommand";
40
43
  import { ListForecastsCommandInput, ListForecastsCommandOutput } from "../commands/ListForecastsCommand";
44
+ import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "../commands/ListMonitorEvaluationsCommand";
45
+ import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "../commands/ListMonitorsCommand";
41
46
  import { ListPredictorBacktestExportJobsCommandInput, ListPredictorBacktestExportJobsCommandOutput } from "../commands/ListPredictorBacktestExportJobsCommand";
42
47
  import { ListPredictorsCommandInput, ListPredictorsCommandOutput } from "../commands/ListPredictorsCommand";
43
48
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
49
+ import { ResumeResourceCommandInput, ResumeResourceCommandOutput } from "../commands/ResumeResourceCommand";
44
50
  import { StopResourceCommandInput, StopResourceCommandOutput } from "../commands/StopResourceCommand";
45
51
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
46
52
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
@@ -53,6 +59,7 @@ export declare const serializeAws_json1_1CreateExplainabilityCommand: (input: Cr
53
59
  export declare const serializeAws_json1_1CreateExplainabilityExportCommand: (input: CreateExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
60
  export declare const serializeAws_json1_1CreateForecastCommand: (input: CreateForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
61
  export declare const serializeAws_json1_1CreateForecastExportJobCommand: (input: CreateForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_json1_1CreateMonitorCommand: (input: CreateMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
63
  export declare const serializeAws_json1_1CreatePredictorCommand: (input: CreatePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
64
  export declare const serializeAws_json1_1CreatePredictorBacktestExportJobCommand: (input: CreatePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
65
  export declare const serializeAws_json1_1DeleteDatasetCommand: (input: DeleteDatasetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -62,6 +69,7 @@ export declare const serializeAws_json1_1DeleteExplainabilityCommand: (input: De
62
69
  export declare const serializeAws_json1_1DeleteExplainabilityExportCommand: (input: DeleteExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
70
  export declare const serializeAws_json1_1DeleteForecastCommand: (input: DeleteForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
64
71
  export declare const serializeAws_json1_1DeleteForecastExportJobCommand: (input: DeleteForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
+ export declare const serializeAws_json1_1DeleteMonitorCommand: (input: DeleteMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
65
73
  export declare const serializeAws_json1_1DeletePredictorCommand: (input: DeletePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
74
  export declare const serializeAws_json1_1DeletePredictorBacktestExportJobCommand: (input: DeletePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
75
  export declare const serializeAws_json1_1DeleteResourceTreeCommand: (input: DeleteResourceTreeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -73,6 +81,7 @@ export declare const serializeAws_json1_1DescribeExplainabilityCommand: (input:
73
81
  export declare const serializeAws_json1_1DescribeExplainabilityExportCommand: (input: DescribeExplainabilityExportCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
82
  export declare const serializeAws_json1_1DescribeForecastCommand: (input: DescribeForecastCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
83
  export declare const serializeAws_json1_1DescribeForecastExportJobCommand: (input: DescribeForecastExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
+ export declare const serializeAws_json1_1DescribeMonitorCommand: (input: DescribeMonitorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
76
85
  export declare const serializeAws_json1_1DescribePredictorCommand: (input: DescribePredictorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
77
86
  export declare const serializeAws_json1_1DescribePredictorBacktestExportJobCommand: (input: DescribePredictorBacktestExportJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
78
87
  export declare const serializeAws_json1_1GetAccuracyMetricsCommand: (input: GetAccuracyMetricsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -83,9 +92,12 @@ export declare const serializeAws_json1_1ListExplainabilitiesCommand: (input: Li
83
92
  export declare const serializeAws_json1_1ListExplainabilityExportsCommand: (input: ListExplainabilityExportsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
84
93
  export declare const serializeAws_json1_1ListForecastExportJobsCommand: (input: ListForecastExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
85
94
  export declare const serializeAws_json1_1ListForecastsCommand: (input: ListForecastsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ export declare const serializeAws_json1_1ListMonitorEvaluationsCommand: (input: ListMonitorEvaluationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
96
+ export declare const serializeAws_json1_1ListMonitorsCommand: (input: ListMonitorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
86
97
  export declare const serializeAws_json1_1ListPredictorBacktestExportJobsCommand: (input: ListPredictorBacktestExportJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
98
  export declare const serializeAws_json1_1ListPredictorsCommand: (input: ListPredictorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
99
  export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
100
+ export declare const serializeAws_json1_1ResumeResourceCommand: (input: ResumeResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
101
  export declare const serializeAws_json1_1StopResourceCommand: (input: StopResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
90
102
  export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
103
  export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
@@ -98,6 +110,7 @@ export declare const deserializeAws_json1_1CreateExplainabilityCommand: (output:
98
110
  export declare const deserializeAws_json1_1CreateExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateExplainabilityExportCommandOutput>;
99
111
  export declare const deserializeAws_json1_1CreateForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateForecastCommandOutput>;
100
112
  export declare const deserializeAws_json1_1CreateForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateForecastExportJobCommandOutput>;
113
+ export declare const deserializeAws_json1_1CreateMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateMonitorCommandOutput>;
101
114
  export declare const deserializeAws_json1_1CreatePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePredictorCommandOutput>;
102
115
  export declare const deserializeAws_json1_1CreatePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreatePredictorBacktestExportJobCommandOutput>;
103
116
  export declare const deserializeAws_json1_1DeleteDatasetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDatasetCommandOutput>;
@@ -107,6 +120,7 @@ export declare const deserializeAws_json1_1DeleteExplainabilityCommand: (output:
107
120
  export declare const deserializeAws_json1_1DeleteExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteExplainabilityExportCommandOutput>;
108
121
  export declare const deserializeAws_json1_1DeleteForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteForecastCommandOutput>;
109
122
  export declare const deserializeAws_json1_1DeleteForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteForecastExportJobCommandOutput>;
123
+ export declare const deserializeAws_json1_1DeleteMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMonitorCommandOutput>;
110
124
  export declare const deserializeAws_json1_1DeletePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePredictorCommandOutput>;
111
125
  export declare const deserializeAws_json1_1DeletePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeletePredictorBacktestExportJobCommandOutput>;
112
126
  export declare const deserializeAws_json1_1DeleteResourceTreeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceTreeCommandOutput>;
@@ -118,6 +132,7 @@ export declare const deserializeAws_json1_1DescribeExplainabilityCommand: (outpu
118
132
  export declare const deserializeAws_json1_1DescribeExplainabilityExportCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeExplainabilityExportCommandOutput>;
119
133
  export declare const deserializeAws_json1_1DescribeForecastCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeForecastCommandOutput>;
120
134
  export declare const deserializeAws_json1_1DescribeForecastExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeForecastExportJobCommandOutput>;
135
+ export declare const deserializeAws_json1_1DescribeMonitorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeMonitorCommandOutput>;
121
136
  export declare const deserializeAws_json1_1DescribePredictorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePredictorCommandOutput>;
122
137
  export declare const deserializeAws_json1_1DescribePredictorBacktestExportJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribePredictorBacktestExportJobCommandOutput>;
123
138
  export declare const deserializeAws_json1_1GetAccuracyMetricsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAccuracyMetricsCommandOutput>;
@@ -128,9 +143,12 @@ export declare const deserializeAws_json1_1ListExplainabilitiesCommand: (output:
128
143
  export declare const deserializeAws_json1_1ListExplainabilityExportsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListExplainabilityExportsCommandOutput>;
129
144
  export declare const deserializeAws_json1_1ListForecastExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListForecastExportJobsCommandOutput>;
130
145
  export declare const deserializeAws_json1_1ListForecastsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListForecastsCommandOutput>;
146
+ export declare const deserializeAws_json1_1ListMonitorEvaluationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMonitorEvaluationsCommandOutput>;
147
+ export declare const deserializeAws_json1_1ListMonitorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMonitorsCommandOutput>;
131
148
  export declare const deserializeAws_json1_1ListPredictorBacktestExportJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPredictorBacktestExportJobsCommandOutput>;
132
149
  export declare const deserializeAws_json1_1ListPredictorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPredictorsCommandOutput>;
133
150
  export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
151
+ export declare const deserializeAws_json1_1ResumeResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ResumeResourceCommandOutput>;
134
152
  export declare const deserializeAws_json1_1StopResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopResourceCommandOutput>;
135
153
  export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
136
154
  export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -7,6 +7,7 @@ import { CreateExplainabilityCommandInput, CreateExplainabilityCommandOutput } f
7
7
  import { CreateExplainabilityExportCommandInput, CreateExplainabilityExportCommandOutput } from "./commands/CreateExplainabilityExportCommand";
8
8
  import { CreateForecastCommandInput, CreateForecastCommandOutput } from "./commands/CreateForecastCommand";
9
9
  import { CreateForecastExportJobCommandInput, CreateForecastExportJobCommandOutput } from "./commands/CreateForecastExportJobCommand";
10
+ import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand";
10
11
  import { CreatePredictorBacktestExportJobCommandInput, CreatePredictorBacktestExportJobCommandOutput } from "./commands/CreatePredictorBacktestExportJobCommand";
11
12
  import { CreatePredictorCommandInput, CreatePredictorCommandOutput } from "./commands/CreatePredictorCommand";
12
13
  import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
@@ -16,6 +17,7 @@ import { DeleteExplainabilityCommandInput, DeleteExplainabilityCommandOutput } f
16
17
  import { DeleteExplainabilityExportCommandInput, DeleteExplainabilityExportCommandOutput } from "./commands/DeleteExplainabilityExportCommand";
17
18
  import { DeleteForecastCommandInput, DeleteForecastCommandOutput } from "./commands/DeleteForecastCommand";
18
19
  import { DeleteForecastExportJobCommandInput, DeleteForecastExportJobCommandOutput } from "./commands/DeleteForecastExportJobCommand";
20
+ import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "./commands/DeleteMonitorCommand";
19
21
  import { DeletePredictorBacktestExportJobCommandInput, DeletePredictorBacktestExportJobCommandOutput } from "./commands/DeletePredictorBacktestExportJobCommand";
20
22
  import { DeletePredictorCommandInput, DeletePredictorCommandOutput } from "./commands/DeletePredictorCommand";
21
23
  import { DeleteResourceTreeCommandInput, DeleteResourceTreeCommandOutput } from "./commands/DeleteResourceTreeCommand";
@@ -27,6 +29,7 @@ import { DescribeExplainabilityCommandInput, DescribeExplainabilityCommandOutput
27
29
  import { DescribeExplainabilityExportCommandInput, DescribeExplainabilityExportCommandOutput } from "./commands/DescribeExplainabilityExportCommand";
28
30
  import { DescribeForecastCommandInput, DescribeForecastCommandOutput } from "./commands/DescribeForecastCommand";
29
31
  import { DescribeForecastExportJobCommandInput, DescribeForecastExportJobCommandOutput } from "./commands/DescribeForecastExportJobCommand";
32
+ import { DescribeMonitorCommandInput, DescribeMonitorCommandOutput } from "./commands/DescribeMonitorCommand";
30
33
  import { DescribePredictorBacktestExportJobCommandInput, DescribePredictorBacktestExportJobCommandOutput } from "./commands/DescribePredictorBacktestExportJobCommand";
31
34
  import { DescribePredictorCommandInput, DescribePredictorCommandOutput } from "./commands/DescribePredictorCommand";
32
35
  import { GetAccuracyMetricsCommandInput, GetAccuracyMetricsCommandOutput } from "./commands/GetAccuracyMetricsCommand";
@@ -37,9 +40,12 @@ import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } f
37
40
  import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "./commands/ListExplainabilityExportsCommand";
38
41
  import { ListForecastExportJobsCommandInput, ListForecastExportJobsCommandOutput } from "./commands/ListForecastExportJobsCommand";
39
42
  import { ListForecastsCommandInput, ListForecastsCommandOutput } from "./commands/ListForecastsCommand";
43
+ import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "./commands/ListMonitorEvaluationsCommand";
44
+ import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "./commands/ListMonitorsCommand";
40
45
  import { ListPredictorBacktestExportJobsCommandInput, ListPredictorBacktestExportJobsCommandOutput } from "./commands/ListPredictorBacktestExportJobsCommand";
41
46
  import { ListPredictorsCommandInput, ListPredictorsCommandOutput } from "./commands/ListPredictorsCommand";
42
47
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
48
+ import { ResumeResourceCommandInput, ResumeResourceCommandOutput } from "./commands/ResumeResourceCommand";
43
49
  import { StopResourceCommandInput, StopResourceCommandOutput } from "./commands/StopResourceCommand";
44
50
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
45
51
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
@@ -80,6 +86,10 @@ export declare class Forecast extends ForecastClient {
80
86
  createForecastExportJob(args: CreateForecastExportJobCommandInput, cb: (err: any, data?: CreateForecastExportJobCommandOutput) => void): void;
81
87
  createForecastExportJob(args: CreateForecastExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateForecastExportJobCommandOutput) => void): void;
82
88
 
89
+ createMonitor(args: CreateMonitorCommandInput, options?: __HttpHandlerOptions): Promise<CreateMonitorCommandOutput>;
90
+ createMonitor(args: CreateMonitorCommandInput, cb: (err: any, data?: CreateMonitorCommandOutput) => void): void;
91
+ createMonitor(args: CreateMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateMonitorCommandOutput) => void): void;
92
+
83
93
  createPredictor(args: CreatePredictorCommandInput, options?: __HttpHandlerOptions): Promise<CreatePredictorCommandOutput>;
84
94
  createPredictor(args: CreatePredictorCommandInput, cb: (err: any, data?: CreatePredictorCommandOutput) => void): void;
85
95
  createPredictor(args: CreatePredictorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePredictorCommandOutput) => void): void;
@@ -116,6 +126,10 @@ export declare class Forecast extends ForecastClient {
116
126
  deleteForecastExportJob(args: DeleteForecastExportJobCommandInput, cb: (err: any, data?: DeleteForecastExportJobCommandOutput) => void): void;
117
127
  deleteForecastExportJob(args: DeleteForecastExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteForecastExportJobCommandOutput) => void): void;
118
128
 
129
+ deleteMonitor(args: DeleteMonitorCommandInput, options?: __HttpHandlerOptions): Promise<DeleteMonitorCommandOutput>;
130
+ deleteMonitor(args: DeleteMonitorCommandInput, cb: (err: any, data?: DeleteMonitorCommandOutput) => void): void;
131
+ deleteMonitor(args: DeleteMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteMonitorCommandOutput) => void): void;
132
+
119
133
  deletePredictor(args: DeletePredictorCommandInput, options?: __HttpHandlerOptions): Promise<DeletePredictorCommandOutput>;
120
134
  deletePredictor(args: DeletePredictorCommandInput, cb: (err: any, data?: DeletePredictorCommandOutput) => void): void;
121
135
  deletePredictor(args: DeletePredictorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePredictorCommandOutput) => void): void;
@@ -160,6 +174,10 @@ export declare class Forecast extends ForecastClient {
160
174
  describeForecastExportJob(args: DescribeForecastExportJobCommandInput, cb: (err: any, data?: DescribeForecastExportJobCommandOutput) => void): void;
161
175
  describeForecastExportJob(args: DescribeForecastExportJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeForecastExportJobCommandOutput) => void): void;
162
176
 
177
+ describeMonitor(args: DescribeMonitorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMonitorCommandOutput>;
178
+ describeMonitor(args: DescribeMonitorCommandInput, cb: (err: any, data?: DescribeMonitorCommandOutput) => void): void;
179
+ describeMonitor(args: DescribeMonitorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMonitorCommandOutput) => void): void;
180
+
163
181
  describePredictor(args: DescribePredictorCommandInput, options?: __HttpHandlerOptions): Promise<DescribePredictorCommandOutput>;
164
182
  describePredictor(args: DescribePredictorCommandInput, cb: (err: any, data?: DescribePredictorCommandOutput) => void): void;
165
183
  describePredictor(args: DescribePredictorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribePredictorCommandOutput) => void): void;
@@ -200,6 +218,14 @@ export declare class Forecast extends ForecastClient {
200
218
  listForecasts(args: ListForecastsCommandInput, cb: (err: any, data?: ListForecastsCommandOutput) => void): void;
201
219
  listForecasts(args: ListForecastsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListForecastsCommandOutput) => void): void;
202
220
 
221
+ listMonitorEvaluations(args: ListMonitorEvaluationsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitorEvaluationsCommandOutput>;
222
+ listMonitorEvaluations(args: ListMonitorEvaluationsCommandInput, cb: (err: any, data?: ListMonitorEvaluationsCommandOutput) => void): void;
223
+ listMonitorEvaluations(args: ListMonitorEvaluationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitorEvaluationsCommandOutput) => void): void;
224
+
225
+ listMonitors(args: ListMonitorsCommandInput, options?: __HttpHandlerOptions): Promise<ListMonitorsCommandOutput>;
226
+ listMonitors(args: ListMonitorsCommandInput, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
227
+ listMonitors(args: ListMonitorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListMonitorsCommandOutput) => void): void;
228
+
203
229
  listPredictorBacktestExportJobs(args: ListPredictorBacktestExportJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListPredictorBacktestExportJobsCommandOutput>;
204
230
  listPredictorBacktestExportJobs(args: ListPredictorBacktestExportJobsCommandInput, cb: (err: any, data?: ListPredictorBacktestExportJobsCommandOutput) => void): void;
205
231
  listPredictorBacktestExportJobs(args: ListPredictorBacktestExportJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPredictorBacktestExportJobsCommandOutput) => void): void;
@@ -212,6 +238,10 @@ export declare class Forecast extends ForecastClient {
212
238
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
213
239
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
214
240
 
241
+ resumeResource(args: ResumeResourceCommandInput, options?: __HttpHandlerOptions): Promise<ResumeResourceCommandOutput>;
242
+ resumeResource(args: ResumeResourceCommandInput, cb: (err: any, data?: ResumeResourceCommandOutput) => void): void;
243
+ resumeResource(args: ResumeResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResumeResourceCommandOutput) => void): void;
244
+
215
245
  stopResource(args: StopResourceCommandInput, options?: __HttpHandlerOptions): Promise<StopResourceCommandOutput>;
216
246
  stopResource(args: StopResourceCommandInput, cb: (err: any, data?: StopResourceCommandOutput) => void): void;
217
247
  stopResource(args: StopResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopResourceCommandOutput) => void): void;
@@ -14,6 +14,7 @@ import { CreateExplainabilityCommandInput, CreateExplainabilityCommandOutput } f
14
14
  import { CreateExplainabilityExportCommandInput, CreateExplainabilityExportCommandOutput } from "./commands/CreateExplainabilityExportCommand";
15
15
  import { CreateForecastCommandInput, CreateForecastCommandOutput } from "./commands/CreateForecastCommand";
16
16
  import { CreateForecastExportJobCommandInput, CreateForecastExportJobCommandOutput } from "./commands/CreateForecastExportJobCommand";
17
+ import { CreateMonitorCommandInput, CreateMonitorCommandOutput } from "./commands/CreateMonitorCommand";
17
18
  import { CreatePredictorBacktestExportJobCommandInput, CreatePredictorBacktestExportJobCommandOutput } from "./commands/CreatePredictorBacktestExportJobCommand";
18
19
  import { CreatePredictorCommandInput, CreatePredictorCommandOutput } from "./commands/CreatePredictorCommand";
19
20
  import { DeleteDatasetCommandInput, DeleteDatasetCommandOutput } from "./commands/DeleteDatasetCommand";
@@ -23,6 +24,7 @@ import { DeleteExplainabilityCommandInput, DeleteExplainabilityCommandOutput } f
23
24
  import { DeleteExplainabilityExportCommandInput, DeleteExplainabilityExportCommandOutput } from "./commands/DeleteExplainabilityExportCommand";
24
25
  import { DeleteForecastCommandInput, DeleteForecastCommandOutput } from "./commands/DeleteForecastCommand";
25
26
  import { DeleteForecastExportJobCommandInput, DeleteForecastExportJobCommandOutput } from "./commands/DeleteForecastExportJobCommand";
27
+ import { DeleteMonitorCommandInput, DeleteMonitorCommandOutput } from "./commands/DeleteMonitorCommand";
26
28
  import { DeletePredictorBacktestExportJobCommandInput, DeletePredictorBacktestExportJobCommandOutput } from "./commands/DeletePredictorBacktestExportJobCommand";
27
29
  import { DeletePredictorCommandInput, DeletePredictorCommandOutput } from "./commands/DeletePredictorCommand";
28
30
  import { DeleteResourceTreeCommandInput, DeleteResourceTreeCommandOutput } from "./commands/DeleteResourceTreeCommand";
@@ -34,6 +36,7 @@ import { DescribeExplainabilityCommandInput, DescribeExplainabilityCommandOutput
34
36
  import { DescribeExplainabilityExportCommandInput, DescribeExplainabilityExportCommandOutput } from "./commands/DescribeExplainabilityExportCommand";
35
37
  import { DescribeForecastCommandInput, DescribeForecastCommandOutput } from "./commands/DescribeForecastCommand";
36
38
  import { DescribeForecastExportJobCommandInput, DescribeForecastExportJobCommandOutput } from "./commands/DescribeForecastExportJobCommand";
39
+ import { DescribeMonitorCommandInput, DescribeMonitorCommandOutput } from "./commands/DescribeMonitorCommand";
37
40
  import { DescribePredictorBacktestExportJobCommandInput, DescribePredictorBacktestExportJobCommandOutput } from "./commands/DescribePredictorBacktestExportJobCommand";
38
41
  import { DescribePredictorCommandInput, DescribePredictorCommandOutput } from "./commands/DescribePredictorCommand";
39
42
  import { GetAccuracyMetricsCommandInput, GetAccuracyMetricsCommandOutput } from "./commands/GetAccuracyMetricsCommand";
@@ -44,15 +47,18 @@ import { ListExplainabilitiesCommandInput, ListExplainabilitiesCommandOutput } f
44
47
  import { ListExplainabilityExportsCommandInput, ListExplainabilityExportsCommandOutput } from "./commands/ListExplainabilityExportsCommand";
45
48
  import { ListForecastExportJobsCommandInput, ListForecastExportJobsCommandOutput } from "./commands/ListForecastExportJobsCommand";
46
49
  import { ListForecastsCommandInput, ListForecastsCommandOutput } from "./commands/ListForecastsCommand";
50
+ import { ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput } from "./commands/ListMonitorEvaluationsCommand";
51
+ import { ListMonitorsCommandInput, ListMonitorsCommandOutput } from "./commands/ListMonitorsCommand";
47
52
  import { ListPredictorBacktestExportJobsCommandInput, ListPredictorBacktestExportJobsCommandOutput } from "./commands/ListPredictorBacktestExportJobsCommand";
48
53
  import { ListPredictorsCommandInput, ListPredictorsCommandOutput } from "./commands/ListPredictorsCommand";
49
54
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
55
+ import { ResumeResourceCommandInput, ResumeResourceCommandOutput } from "./commands/ResumeResourceCommand";
50
56
  import { StopResourceCommandInput, StopResourceCommandOutput } from "./commands/StopResourceCommand";
51
57
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
52
58
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
53
59
  import { UpdateDatasetGroupCommandInput, UpdateDatasetGroupCommandOutput } from "./commands/UpdateDatasetGroupCommand";
54
- export declare type ServiceInputTypes = CreateAutoPredictorCommandInput | CreateDatasetCommandInput | CreateDatasetGroupCommandInput | CreateDatasetImportJobCommandInput | CreateExplainabilityCommandInput | CreateExplainabilityExportCommandInput | CreateForecastCommandInput | CreateForecastExportJobCommandInput | CreatePredictorBacktestExportJobCommandInput | CreatePredictorCommandInput | DeleteDatasetCommandInput | DeleteDatasetGroupCommandInput | DeleteDatasetImportJobCommandInput | DeleteExplainabilityCommandInput | DeleteExplainabilityExportCommandInput | DeleteForecastCommandInput | DeleteForecastExportJobCommandInput | DeletePredictorBacktestExportJobCommandInput | DeletePredictorCommandInput | DeleteResourceTreeCommandInput | DescribeAutoPredictorCommandInput | DescribeDatasetCommandInput | DescribeDatasetGroupCommandInput | DescribeDatasetImportJobCommandInput | DescribeExplainabilityCommandInput | DescribeExplainabilityExportCommandInput | DescribeForecastCommandInput | DescribeForecastExportJobCommandInput | DescribePredictorBacktestExportJobCommandInput | DescribePredictorCommandInput | GetAccuracyMetricsCommandInput | ListDatasetGroupsCommandInput | ListDatasetImportJobsCommandInput | ListDatasetsCommandInput | ListExplainabilitiesCommandInput | ListExplainabilityExportsCommandInput | ListForecastExportJobsCommandInput | ListForecastsCommandInput | ListPredictorBacktestExportJobsCommandInput | ListPredictorsCommandInput | ListTagsForResourceCommandInput | StopResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasetGroupCommandInput;
55
- export declare type ServiceOutputTypes = CreateAutoPredictorCommandOutput | CreateDatasetCommandOutput | CreateDatasetGroupCommandOutput | CreateDatasetImportJobCommandOutput | CreateExplainabilityCommandOutput | CreateExplainabilityExportCommandOutput | CreateForecastCommandOutput | CreateForecastExportJobCommandOutput | CreatePredictorBacktestExportJobCommandOutput | CreatePredictorCommandOutput | DeleteDatasetCommandOutput | DeleteDatasetGroupCommandOutput | DeleteDatasetImportJobCommandOutput | DeleteExplainabilityCommandOutput | DeleteExplainabilityExportCommandOutput | DeleteForecastCommandOutput | DeleteForecastExportJobCommandOutput | DeletePredictorBacktestExportJobCommandOutput | DeletePredictorCommandOutput | DeleteResourceTreeCommandOutput | DescribeAutoPredictorCommandOutput | DescribeDatasetCommandOutput | DescribeDatasetGroupCommandOutput | DescribeDatasetImportJobCommandOutput | DescribeExplainabilityCommandOutput | DescribeExplainabilityExportCommandOutput | DescribeForecastCommandOutput | DescribeForecastExportJobCommandOutput | DescribePredictorBacktestExportJobCommandOutput | DescribePredictorCommandOutput | GetAccuracyMetricsCommandOutput | ListDatasetGroupsCommandOutput | ListDatasetImportJobsCommandOutput | ListDatasetsCommandOutput | ListExplainabilitiesCommandOutput | ListExplainabilityExportsCommandOutput | ListForecastExportJobsCommandOutput | ListForecastsCommandOutput | ListPredictorBacktestExportJobsCommandOutput | ListPredictorsCommandOutput | ListTagsForResourceCommandOutput | StopResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasetGroupCommandOutput;
60
+ export declare type ServiceInputTypes = CreateAutoPredictorCommandInput | CreateDatasetCommandInput | CreateDatasetGroupCommandInput | CreateDatasetImportJobCommandInput | CreateExplainabilityCommandInput | CreateExplainabilityExportCommandInput | CreateForecastCommandInput | CreateForecastExportJobCommandInput | CreateMonitorCommandInput | CreatePredictorBacktestExportJobCommandInput | CreatePredictorCommandInput | DeleteDatasetCommandInput | DeleteDatasetGroupCommandInput | DeleteDatasetImportJobCommandInput | DeleteExplainabilityCommandInput | DeleteExplainabilityExportCommandInput | DeleteForecastCommandInput | DeleteForecastExportJobCommandInput | DeleteMonitorCommandInput | DeletePredictorBacktestExportJobCommandInput | DeletePredictorCommandInput | DeleteResourceTreeCommandInput | DescribeAutoPredictorCommandInput | DescribeDatasetCommandInput | DescribeDatasetGroupCommandInput | DescribeDatasetImportJobCommandInput | DescribeExplainabilityCommandInput | DescribeExplainabilityExportCommandInput | DescribeForecastCommandInput | DescribeForecastExportJobCommandInput | DescribeMonitorCommandInput | DescribePredictorBacktestExportJobCommandInput | DescribePredictorCommandInput | GetAccuracyMetricsCommandInput | ListDatasetGroupsCommandInput | ListDatasetImportJobsCommandInput | ListDatasetsCommandInput | ListExplainabilitiesCommandInput | ListExplainabilityExportsCommandInput | ListForecastExportJobsCommandInput | ListForecastsCommandInput | ListMonitorEvaluationsCommandInput | ListMonitorsCommandInput | ListPredictorBacktestExportJobsCommandInput | ListPredictorsCommandInput | ListTagsForResourceCommandInput | ResumeResourceCommandInput | StopResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDatasetGroupCommandInput;
61
+ export declare type ServiceOutputTypes = CreateAutoPredictorCommandOutput | CreateDatasetCommandOutput | CreateDatasetGroupCommandOutput | CreateDatasetImportJobCommandOutput | CreateExplainabilityCommandOutput | CreateExplainabilityExportCommandOutput | CreateForecastCommandOutput | CreateForecastExportJobCommandOutput | CreateMonitorCommandOutput | CreatePredictorBacktestExportJobCommandOutput | CreatePredictorCommandOutput | DeleteDatasetCommandOutput | DeleteDatasetGroupCommandOutput | DeleteDatasetImportJobCommandOutput | DeleteExplainabilityCommandOutput | DeleteExplainabilityExportCommandOutput | DeleteForecastCommandOutput | DeleteForecastExportJobCommandOutput | DeleteMonitorCommandOutput | DeletePredictorBacktestExportJobCommandOutput | DeletePredictorCommandOutput | DeleteResourceTreeCommandOutput | DescribeAutoPredictorCommandOutput | DescribeDatasetCommandOutput | DescribeDatasetGroupCommandOutput | DescribeDatasetImportJobCommandOutput | DescribeExplainabilityCommandOutput | DescribeExplainabilityExportCommandOutput | DescribeForecastCommandOutput | DescribeForecastExportJobCommandOutput | DescribeMonitorCommandOutput | DescribePredictorBacktestExportJobCommandOutput | DescribePredictorCommandOutput | GetAccuracyMetricsCommandOutput | ListDatasetGroupsCommandOutput | ListDatasetImportJobsCommandOutput | ListDatasetsCommandOutput | ListExplainabilitiesCommandOutput | ListExplainabilityExportsCommandOutput | ListForecastExportJobsCommandOutput | ListForecastsCommandOutput | ListMonitorEvaluationsCommandOutput | ListMonitorsCommandOutput | ListPredictorBacktestExportJobsCommandOutput | ListPredictorsCommandOutput | ListTagsForResourceCommandOutput | ResumeResourceCommandOutput | StopResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDatasetGroupCommandOutput;
56
62
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
57
63
 
58
64
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
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
+ export declare class CreateMonitorCommand extends $Command<CreateMonitorCommandInput, CreateMonitorCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: CreateMonitorCommandInput;
12
+ constructor(input: CreateMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMonitorCommandInput, CreateMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class DeleteMonitorCommand extends $Command<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: DeleteMonitorCommandInput;
12
+ constructor(input: DeleteMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMonitorCommandInput, DeleteMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class DescribeMonitorCommand extends $Command<DescribeMonitorCommandInput, DescribeMonitorCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: DescribeMonitorCommandInput;
12
+ constructor(input: DescribeMonitorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMonitorCommandInput, DescribeMonitorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class ListMonitorEvaluationsCommand extends $Command<ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: ListMonitorEvaluationsCommandInput;
12
+ constructor(input: ListMonitorEvaluationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitorEvaluationsCommandInput, ListMonitorEvaluationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class ListMonitorsCommand extends $Command<ListMonitorsCommandInput, ListMonitorsCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: ListMonitorsCommandInput;
12
+ constructor(input: ListMonitorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMonitorsCommandInput, ListMonitorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class ResumeResourceCommand extends $Command<ResumeResourceCommandInput, ResumeResourceCommandOutput, ForecastClientResolvedConfig> {
11
+ readonly input: ResumeResourceCommandInput;
12
+ constructor(input: ResumeResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ForecastClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ResumeResourceCommandInput, ResumeResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -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";