@aws-sdk/client-forecast 3.325.0 → 3.327.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 (64) hide show
  1. package/dist-types/commands/CreateAutoPredictorCommand.d.ts +6 -0
  2. package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
  3. package/dist-types/commands/CreateDatasetGroupCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +6 -0
  5. package/dist-types/commands/CreateExplainabilityCommand.d.ts +6 -0
  6. package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateForecastCommand.d.ts +6 -0
  8. package/dist-types/commands/CreateForecastExportJobCommand.d.ts +6 -0
  9. package/dist-types/commands/CreateMonitorCommand.d.ts +6 -0
  10. package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +6 -0
  11. package/dist-types/commands/CreatePredictorCommand.d.ts +6 -0
  12. package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +6 -0
  13. package/dist-types/commands/CreateWhatIfForecastCommand.d.ts +6 -0
  14. package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +6 -0
  15. package/dist-types/commands/DeleteDatasetCommand.d.ts +4 -0
  16. package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +4 -0
  17. package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +4 -0
  18. package/dist-types/commands/DeleteExplainabilityCommand.d.ts +4 -0
  19. package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +4 -0
  20. package/dist-types/commands/DeleteForecastCommand.d.ts +4 -0
  21. package/dist-types/commands/DeleteForecastExportJobCommand.d.ts +4 -0
  22. package/dist-types/commands/DeleteMonitorCommand.d.ts +4 -0
  23. package/dist-types/commands/DeletePredictorBacktestExportJobCommand.d.ts +4 -0
  24. package/dist-types/commands/DeletePredictorCommand.d.ts +4 -0
  25. package/dist-types/commands/DeleteResourceTreeCommand.d.ts +4 -0
  26. package/dist-types/commands/DeleteWhatIfAnalysisCommand.d.ts +4 -0
  27. package/dist-types/commands/DeleteWhatIfForecastCommand.d.ts +4 -0
  28. package/dist-types/commands/DeleteWhatIfForecastExportCommand.d.ts +4 -0
  29. package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +67 -0
  30. package/dist-types/commands/DescribeDatasetCommand.d.ts +25 -0
  31. package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +14 -0
  32. package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +43 -0
  33. package/dist-types/commands/DescribeExplainabilityCommand.d.ts +35 -0
  34. package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +20 -0
  35. package/dist-types/commands/DescribeForecastCommand.d.ts +37 -0
  36. package/dist-types/commands/DescribeForecastExportJobCommand.d.ts +20 -0
  37. package/dist-types/commands/DescribeMonitorCommand.d.ts +25 -0
  38. package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +20 -0
  39. package/dist-types/commands/DescribePredictorCommand.d.ts +110 -0
  40. package/dist-types/commands/DescribeWhatIfAnalysisCommand.d.ts +33 -0
  41. package/dist-types/commands/DescribeWhatIfForecastCommand.d.ts +49 -0
  42. package/dist-types/commands/DescribeWhatIfForecastExportCommand.d.ts +23 -0
  43. package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +40 -0
  44. package/dist-types/commands/ListDatasetGroupsCommand.d.ts +14 -0
  45. package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +24 -0
  46. package/dist-types/commands/ListDatasetsCommand.d.ts +16 -0
  47. package/dist-types/commands/ListExplainabilitiesCommand.d.ts +21 -0
  48. package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +23 -0
  49. package/dist-types/commands/ListForecastExportJobsCommand.d.ts +23 -0
  50. package/dist-types/commands/ListForecastsCommand.d.ts +19 -0
  51. package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +33 -0
  52. package/dist-types/commands/ListMonitorsCommand.d.ts +16 -0
  53. package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +23 -0
  54. package/dist-types/commands/ListPredictorsCommand.d.ts +22 -0
  55. package/dist-types/commands/ListTagsForResourceCommand.d.ts +11 -0
  56. package/dist-types/commands/ListWhatIfAnalysesCommand.d.ts +17 -0
  57. package/dist-types/commands/ListWhatIfForecastExportsCommand.d.ts +26 -0
  58. package/dist-types/commands/ListWhatIfForecastsCommand.d.ts +17 -0
  59. package/dist-types/commands/ResumeResourceCommand.d.ts +4 -0
  60. package/dist-types/commands/StopResourceCommand.d.ts +4 -0
  61. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  62. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  63. package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +4 -0
  64. package/package.json +7 -7
@@ -130,6 +130,10 @@ export interface CreateAutoPredictorCommandOutput extends CreateAutoPredictorRes
130
130
  * };
131
131
  * const command = new CreateAutoPredictorCommand(input);
132
132
  * const response = await client.send(command);
133
+ * // { // CreateAutoPredictorResponse
134
+ * // PredictorArn: "STRING_VALUE",
135
+ * // };
136
+ *
133
137
  * ```
134
138
  *
135
139
  * @param CreateAutoPredictorCommandInput - {@link CreateAutoPredictorCommandInput}
@@ -155,6 +159,8 @@ export interface CreateAutoPredictorCommandOutput extends CreateAutoPredictorRes
155
159
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
156
160
  * again.</p>
157
161
  *
162
+ * @throws {@link ForecastServiceException}
163
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
158
164
  *
159
165
  */
160
166
  export declare class CreateAutoPredictorCommand extends $Command<CreateAutoPredictorCommandInput, CreateAutoPredictorCommandOutput, ForecastClientResolvedConfig> {
@@ -93,6 +93,10 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
93
93
  * };
94
94
  * const command = new CreateDatasetCommand(input);
95
95
  * const response = await client.send(command);
96
+ * // { // CreateDatasetResponse
97
+ * // DatasetArn: "STRING_VALUE",
98
+ * // };
99
+ *
96
100
  * ```
97
101
  *
98
102
  * @param CreateDatasetCommandInput - {@link CreateDatasetCommandInput}
@@ -111,6 +115,8 @@ export interface CreateDatasetCommandOutput extends CreateDatasetResponse, __Met
111
115
  * @throws {@link ResourceAlreadyExistsException} (client fault)
112
116
  * <p>There is already a resource with this name. Try again with a different name.</p>
113
117
  *
118
+ * @throws {@link ForecastServiceException}
119
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
114
120
  *
115
121
  */
116
122
  export declare class CreateDatasetCommand extends $Command<CreateDatasetCommandInput, CreateDatasetCommandOutput, ForecastClientResolvedConfig> {
@@ -50,6 +50,10 @@ export interface CreateDatasetGroupCommandOutput extends CreateDatasetGroupRespo
50
50
  * };
51
51
  * const command = new CreateDatasetGroupCommand(input);
52
52
  * const response = await client.send(command);
53
+ * // { // CreateDatasetGroupResponse
54
+ * // DatasetGroupArn: "STRING_VALUE",
55
+ * // };
56
+ *
53
57
  * ```
54
58
  *
55
59
  * @param CreateDatasetGroupCommandInput - {@link CreateDatasetGroupCommandInput}
@@ -75,6 +79,8 @@ export interface CreateDatasetGroupCommandOutput extends CreateDatasetGroupRespo
75
79
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
76
80
  * again.</p>
77
81
  *
82
+ * @throws {@link ForecastServiceException}
83
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
78
84
  *
79
85
  */
80
86
  export declare class CreateDatasetGroupCommand extends $Command<CreateDatasetGroupCommandInput, CreateDatasetGroupCommandOutput, ForecastClientResolvedConfig> {
@@ -67,6 +67,10 @@ export interface CreateDatasetImportJobCommandOutput extends CreateDatasetImport
67
67
  * };
68
68
  * const command = new CreateDatasetImportJobCommand(input);
69
69
  * const response = await client.send(command);
70
+ * // { // CreateDatasetImportJobResponse
71
+ * // DatasetImportJobArn: "STRING_VALUE",
72
+ * // };
73
+ *
70
74
  * ```
71
75
  *
72
76
  * @param CreateDatasetImportJobCommandInput - {@link CreateDatasetImportJobCommandInput}
@@ -92,6 +96,8 @@ export interface CreateDatasetImportJobCommandOutput extends CreateDatasetImport
92
96
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
93
97
  * again.</p>
94
98
  *
99
+ * @throws {@link ForecastServiceException}
100
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
95
101
  *
96
102
  */
97
103
  export declare class CreateDatasetImportJobCommand extends $Command<CreateDatasetImportJobCommandInput, CreateDatasetImportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -178,6 +178,10 @@ export interface CreateExplainabilityCommandOutput extends CreateExplainabilityR
178
178
  * };
179
179
  * const command = new CreateExplainabilityCommand(input);
180
180
  * const response = await client.send(command);
181
+ * // { // CreateExplainabilityResponse
182
+ * // ExplainabilityArn: "STRING_VALUE",
183
+ * // };
184
+ *
181
185
  * ```
182
186
  *
183
187
  * @param CreateExplainabilityCommandInput - {@link CreateExplainabilityCommandInput}
@@ -203,6 +207,8 @@ export interface CreateExplainabilityCommandOutput extends CreateExplainabilityR
203
207
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
204
208
  * again.</p>
205
209
  *
210
+ * @throws {@link ForecastServiceException}
211
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
206
212
  *
207
213
  */
208
214
  export declare class CreateExplainabilityCommand extends $Command<CreateExplainabilityCommandInput, CreateExplainabilityCommandOutput, ForecastClientResolvedConfig> {
@@ -54,6 +54,10 @@ export interface CreateExplainabilityExportCommandOutput extends CreateExplainab
54
54
  * };
55
55
  * const command = new CreateExplainabilityExportCommand(input);
56
56
  * const response = await client.send(command);
57
+ * // { // CreateExplainabilityExportResponse
58
+ * // ExplainabilityExportArn: "STRING_VALUE",
59
+ * // };
60
+ *
57
61
  * ```
58
62
  *
59
63
  * @param CreateExplainabilityExportCommandInput - {@link CreateExplainabilityExportCommandInput}
@@ -79,6 +83,8 @@ export interface CreateExplainabilityExportCommandOutput extends CreateExplainab
79
83
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
80
84
  * again.</p>
81
85
  *
86
+ * @throws {@link ForecastServiceException}
87
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
82
88
  *
83
89
  */
84
90
  export declare class CreateExplainabilityExportCommand extends $Command<CreateExplainabilityExportCommandInput, CreateExplainabilityExportCommandOutput, ForecastClientResolvedConfig> {
@@ -81,6 +81,10 @@ export interface CreateForecastCommandOutput extends CreateForecastResponse, __M
81
81
  * };
82
82
  * const command = new CreateForecastCommand(input);
83
83
  * const response = await client.send(command);
84
+ * // { // CreateForecastResponse
85
+ * // ForecastArn: "STRING_VALUE",
86
+ * // };
87
+ *
84
88
  * ```
85
89
  *
86
90
  * @param CreateForecastCommandInput - {@link CreateForecastCommandInput}
@@ -106,6 +110,8 @@ export interface CreateForecastCommandOutput extends CreateForecastResponse, __M
106
110
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
107
111
  * again.</p>
108
112
  *
113
+ * @throws {@link ForecastServiceException}
114
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
109
115
  *
110
116
  */
111
117
  export declare class CreateForecastCommand extends $Command<CreateForecastCommandInput, CreateForecastCommandOutput, ForecastClientResolvedConfig> {
@@ -59,6 +59,10 @@ export interface CreateForecastExportJobCommandOutput extends CreateForecastExpo
59
59
  * };
60
60
  * const command = new CreateForecastExportJobCommand(input);
61
61
  * const response = await client.send(command);
62
+ * // { // CreateForecastExportJobResponse
63
+ * // ForecastExportJobArn: "STRING_VALUE",
64
+ * // };
65
+ *
62
66
  * ```
63
67
  *
64
68
  * @param CreateForecastExportJobCommandInput - {@link CreateForecastExportJobCommandInput}
@@ -84,6 +88,8 @@ export interface CreateForecastExportJobCommandOutput extends CreateForecastExpo
84
88
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
85
89
  * again.</p>
86
90
  *
91
+ * @throws {@link ForecastServiceException}
92
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
87
93
  *
88
94
  */
89
95
  export declare class CreateForecastExportJobCommand extends $Command<CreateForecastExportJobCommandInput, CreateForecastExportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -40,6 +40,10 @@ export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __Met
40
40
  * };
41
41
  * const command = new CreateMonitorCommand(input);
42
42
  * const response = await client.send(command);
43
+ * // { // CreateMonitorResponse
44
+ * // MonitorArn: "STRING_VALUE",
45
+ * // };
46
+ *
43
47
  * ```
44
48
  *
45
49
  * @param CreateMonitorCommandInput - {@link CreateMonitorCommandInput}
@@ -65,6 +69,8 @@ export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __Met
65
69
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
66
70
  * again.</p>
67
71
  *
72
+ * @throws {@link ForecastServiceException}
73
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
68
74
  *
69
75
  */
70
76
  export declare class CreateMonitorCommand extends $Command<CreateMonitorCommandInput, CreateMonitorCommandOutput, ForecastClientResolvedConfig> {
@@ -60,6 +60,10 @@ export interface CreatePredictorBacktestExportJobCommandOutput extends CreatePre
60
60
  * };
61
61
  * const command = new CreatePredictorBacktestExportJobCommand(input);
62
62
  * const response = await client.send(command);
63
+ * // { // CreatePredictorBacktestExportJobResponse
64
+ * // PredictorBacktestExportJobArn: "STRING_VALUE",
65
+ * // };
66
+ *
63
67
  * ```
64
68
  *
65
69
  * @param CreatePredictorBacktestExportJobCommandInput - {@link CreatePredictorBacktestExportJobCommandInput}
@@ -85,6 +89,8 @@ export interface CreatePredictorBacktestExportJobCommandOutput extends CreatePre
85
89
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
86
90
  * again.</p>
87
91
  *
92
+ * @throws {@link ForecastServiceException}
93
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
88
94
  *
89
95
  */
90
96
  export declare class CreatePredictorBacktestExportJobCommand extends $Command<CreatePredictorBacktestExportJobCommandInput, CreatePredictorBacktestExportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -172,6 +172,10 @@ export interface CreatePredictorCommandOutput extends CreatePredictorResponse, _
172
172
  * };
173
173
  * const command = new CreatePredictorCommand(input);
174
174
  * const response = await client.send(command);
175
+ * // { // CreatePredictorResponse
176
+ * // PredictorArn: "STRING_VALUE",
177
+ * // };
178
+ *
175
179
  * ```
176
180
  *
177
181
  * @param CreatePredictorCommandInput - {@link CreatePredictorCommandInput}
@@ -197,6 +201,8 @@ export interface CreatePredictorCommandOutput extends CreatePredictorResponse, _
197
201
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
198
202
  * again.</p>
199
203
  *
204
+ * @throws {@link ForecastServiceException}
205
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
200
206
  *
201
207
  */
202
208
  export declare class CreatePredictorCommand extends $Command<CreatePredictorCommandInput, CreatePredictorCommandOutput, ForecastClientResolvedConfig> {
@@ -70,6 +70,10 @@ export interface CreateWhatIfAnalysisCommandOutput extends CreateWhatIfAnalysisR
70
70
  * };
71
71
  * const command = new CreateWhatIfAnalysisCommand(input);
72
72
  * const response = await client.send(command);
73
+ * // { // CreateWhatIfAnalysisResponse
74
+ * // WhatIfAnalysisArn: "STRING_VALUE",
75
+ * // };
76
+ *
73
77
  * ```
74
78
  *
75
79
  * @param CreateWhatIfAnalysisCommandInput - {@link CreateWhatIfAnalysisCommandInput}
@@ -95,6 +99,8 @@ export interface CreateWhatIfAnalysisCommandOutput extends CreateWhatIfAnalysisR
95
99
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
96
100
  * again.</p>
97
101
  *
102
+ * @throws {@link ForecastServiceException}
103
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
98
104
  *
99
105
  */
100
106
  export declare class CreateWhatIfAnalysisCommand extends $Command<CreateWhatIfAnalysisCommandInput, CreateWhatIfAnalysisCommandOutput, ForecastClientResolvedConfig> {
@@ -72,6 +72,10 @@ export interface CreateWhatIfForecastCommandOutput extends CreateWhatIfForecastR
72
72
  * };
73
73
  * const command = new CreateWhatIfForecastCommand(input);
74
74
  * const response = await client.send(command);
75
+ * // { // CreateWhatIfForecastResponse
76
+ * // WhatIfForecastArn: "STRING_VALUE",
77
+ * // };
78
+ *
75
79
  * ```
76
80
  *
77
81
  * @param CreateWhatIfForecastCommandInput - {@link CreateWhatIfForecastCommandInput}
@@ -97,6 +101,8 @@ export interface CreateWhatIfForecastCommandOutput extends CreateWhatIfForecastR
97
101
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
98
102
  * again.</p>
99
103
  *
104
+ * @throws {@link ForecastServiceException}
105
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
100
106
  *
101
107
  */
102
108
  export declare class CreateWhatIfForecastCommand extends $Command<CreateWhatIfForecastCommandInput, CreateWhatIfForecastCommandOutput, ForecastClientResolvedConfig> {
@@ -64,6 +64,10 @@ export interface CreateWhatIfForecastExportCommandOutput extends CreateWhatIfFor
64
64
  * };
65
65
  * const command = new CreateWhatIfForecastExportCommand(input);
66
66
  * const response = await client.send(command);
67
+ * // { // CreateWhatIfForecastExportResponse
68
+ * // WhatIfForecastExportArn: "STRING_VALUE",
69
+ * // };
70
+ *
67
71
  * ```
68
72
  *
69
73
  * @param CreateWhatIfForecastExportCommandInput - {@link CreateWhatIfForecastExportCommandInput}
@@ -89,6 +93,8 @@ export interface CreateWhatIfForecastExportCommandOutput extends CreateWhatIfFor
89
93
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
90
94
  * again.</p>
91
95
  *
96
+ * @throws {@link ForecastServiceException}
97
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
92
98
  *
93
99
  */
94
100
  export declare class CreateWhatIfForecastExportCommand extends $Command<CreateWhatIfForecastExportCommandInput, CreateWhatIfForecastExportCommandOutput, ForecastClientResolvedConfig> {
@@ -38,6 +38,8 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
38
38
  * };
39
39
  * const command = new DeleteDatasetCommand(input);
40
40
  * const response = await client.send(command);
41
+ * // {};
42
+ *
41
43
  * ```
42
44
  *
43
45
  * @param DeleteDatasetCommandInput - {@link DeleteDatasetCommandInput}
@@ -57,6 +59,8 @@ export interface DeleteDatasetCommandOutput extends __MetadataBearer {
57
59
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
58
60
  * again.</p>
59
61
  *
62
+ * @throws {@link ForecastServiceException}
63
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
60
64
  *
61
65
  */
62
66
  export declare class DeleteDatasetCommand extends $Command<DeleteDatasetCommandInput, DeleteDatasetCommandOutput, ForecastClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new DeleteDatasetGroupCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteDatasetGroupCommandInput - {@link DeleteDatasetGroupCommandInput}
@@ -53,6 +55,8 @@ export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {
53
55
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
54
56
  * again.</p>
55
57
  *
58
+ * @throws {@link ForecastServiceException}
59
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
56
60
  *
57
61
  */
58
62
  export declare class DeleteDatasetGroupCommand extends $Command<DeleteDatasetGroupCommandInput, DeleteDatasetGroupCommandOutput, ForecastClientResolvedConfig> {
@@ -34,6 +34,8 @@ export interface DeleteDatasetImportJobCommandOutput extends __MetadataBearer {
34
34
  * };
35
35
  * const command = new DeleteDatasetImportJobCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // {};
38
+ *
37
39
  * ```
38
40
  *
39
41
  * @param DeleteDatasetImportJobCommandInput - {@link DeleteDatasetImportJobCommandInput}
@@ -53,6 +55,8 @@ export interface DeleteDatasetImportJobCommandOutput extends __MetadataBearer {
53
55
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
54
56
  * again.</p>
55
57
  *
58
+ * @throws {@link ForecastServiceException}
59
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
56
60
  *
57
61
  */
58
62
  export declare class DeleteDatasetImportJobCommand extends $Command<DeleteDatasetImportJobCommandInput, DeleteDatasetImportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteExplainabilityCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteExplainabilityCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteExplainabilityCommandInput - {@link DeleteExplainabilityCommandInput}
@@ -52,6 +54,8 @@ export interface DeleteExplainabilityCommandOutput extends __MetadataBearer {
52
54
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
53
55
  * again.</p>
54
56
  *
57
+ * @throws {@link ForecastServiceException}
58
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DeleteExplainabilityCommand extends $Command<DeleteExplainabilityCommandInput, DeleteExplainabilityCommandOutput, ForecastClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteExplainabilityExportCommandOutput extends __MetadataBeare
31
31
  * };
32
32
  * const command = new DeleteExplainabilityExportCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteExplainabilityExportCommandInput - {@link DeleteExplainabilityExportCommandInput}
@@ -50,6 +52,8 @@ export interface DeleteExplainabilityExportCommandOutput extends __MetadataBeare
50
52
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
51
53
  * again.</p>
52
54
  *
55
+ * @throws {@link ForecastServiceException}
56
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
53
57
  *
54
58
  */
55
59
  export declare class DeleteExplainabilityExportCommand extends $Command<DeleteExplainabilityExportCommandInput, DeleteExplainabilityExportCommandOutput, ForecastClientResolvedConfig> {
@@ -35,6 +35,8 @@ export interface DeleteForecastCommandOutput extends __MetadataBearer {
35
35
  * };
36
36
  * const command = new DeleteForecastCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // {};
39
+ *
38
40
  * ```
39
41
  *
40
42
  * @param DeleteForecastCommandInput - {@link DeleteForecastCommandInput}
@@ -54,6 +56,8 @@ export interface DeleteForecastCommandOutput extends __MetadataBearer {
54
56
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
55
57
  * again.</p>
56
58
  *
59
+ * @throws {@link ForecastServiceException}
60
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
57
61
  *
58
62
  */
59
63
  export declare class DeleteForecastCommand extends $Command<DeleteForecastCommandInput, DeleteForecastCommandOutput, ForecastClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteForecastExportJobCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteForecastExportJobCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteForecastExportJobCommandInput - {@link DeleteForecastExportJobCommandInput}
@@ -52,6 +54,8 @@ export interface DeleteForecastExportJobCommandOutput extends __MetadataBearer {
52
54
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
53
55
  * again.</p>
54
56
  *
57
+ * @throws {@link ForecastServiceException}
58
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DeleteForecastExportJobCommand extends $Command<DeleteForecastExportJobCommandInput, DeleteForecastExportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeleteMonitorCommandOutput extends __MetadataBearer {
31
31
  * };
32
32
  * const command = new DeleteMonitorCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeleteMonitorCommandInput - {@link DeleteMonitorCommandInput}
@@ -50,6 +52,8 @@ export interface DeleteMonitorCommandOutput extends __MetadataBearer {
50
52
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
51
53
  * again.</p>
52
54
  *
55
+ * @throws {@link ForecastServiceException}
56
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
53
57
  *
54
58
  */
55
59
  export declare class DeleteMonitorCommand extends $Command<DeleteMonitorCommandInput, DeleteMonitorCommandOutput, ForecastClientResolvedConfig> {
@@ -31,6 +31,8 @@ export interface DeletePredictorBacktestExportJobCommandOutput extends __Metadat
31
31
  * };
32
32
  * const command = new DeletePredictorBacktestExportJobCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // {};
35
+ *
34
36
  * ```
35
37
  *
36
38
  * @param DeletePredictorBacktestExportJobCommandInput - {@link DeletePredictorBacktestExportJobCommandInput}
@@ -50,6 +52,8 @@ export interface DeletePredictorBacktestExportJobCommandOutput extends __Metadat
50
52
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
51
53
  * again.</p>
52
54
  *
55
+ * @throws {@link ForecastServiceException}
56
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
53
57
  *
54
58
  */
55
59
  export declare class DeletePredictorBacktestExportJobCommand extends $Command<DeletePredictorBacktestExportJobCommandInput, DeletePredictorBacktestExportJobCommandOutput, ForecastClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeletePredictorCommandOutput extends __MetadataBearer {
32
32
  * };
33
33
  * const command = new DeletePredictorCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeletePredictorCommandInput - {@link DeletePredictorCommandInput}
@@ -51,6 +53,8 @@ export interface DeletePredictorCommandOutput extends __MetadataBearer {
51
53
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
52
54
  * again.</p>
53
55
  *
56
+ * @throws {@link ForecastServiceException}
57
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
54
58
  *
55
59
  */
56
60
  export declare class DeletePredictorCommand extends $Command<DeletePredictorCommandInput, DeletePredictorCommandOutput, ForecastClientResolvedConfig> {
@@ -61,6 +61,8 @@ export interface DeleteResourceTreeCommandOutput extends __MetadataBearer {
61
61
  * };
62
62
  * const command = new DeleteResourceTreeCommand(input);
63
63
  * const response = await client.send(command);
64
+ * // {};
65
+ *
64
66
  * ```
65
67
  *
66
68
  * @param DeleteResourceTreeCommandInput - {@link DeleteResourceTreeCommandInput}
@@ -80,6 +82,8 @@ export interface DeleteResourceTreeCommandOutput extends __MetadataBearer {
80
82
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
81
83
  * again.</p>
82
84
  *
85
+ * @throws {@link ForecastServiceException}
86
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
83
87
  *
84
88
  */
85
89
  export declare class DeleteResourceTreeCommand extends $Command<DeleteResourceTreeCommandInput, DeleteResourceTreeCommandOutput, ForecastClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteWhatIfAnalysisCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteWhatIfAnalysisCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteWhatIfAnalysisCommandInput - {@link DeleteWhatIfAnalysisCommandInput}
@@ -52,6 +54,8 @@ export interface DeleteWhatIfAnalysisCommandOutput extends __MetadataBearer {
52
54
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
53
55
  * again.</p>
54
56
  *
57
+ * @throws {@link ForecastServiceException}
58
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DeleteWhatIfAnalysisCommand extends $Command<DeleteWhatIfAnalysisCommandInput, DeleteWhatIfAnalysisCommandOutput, ForecastClientResolvedConfig> {
@@ -33,6 +33,8 @@ export interface DeleteWhatIfForecastCommandOutput extends __MetadataBearer {
33
33
  * };
34
34
  * const command = new DeleteWhatIfForecastCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // {};
37
+ *
36
38
  * ```
37
39
  *
38
40
  * @param DeleteWhatIfForecastCommandInput - {@link DeleteWhatIfForecastCommandInput}
@@ -52,6 +54,8 @@ export interface DeleteWhatIfForecastCommandOutput extends __MetadataBearer {
52
54
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
53
55
  * again.</p>
54
56
  *
57
+ * @throws {@link ForecastServiceException}
58
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
55
59
  *
56
60
  */
57
61
  export declare class DeleteWhatIfForecastCommand extends $Command<DeleteWhatIfForecastCommandInput, DeleteWhatIfForecastCommandOutput, ForecastClientResolvedConfig> {
@@ -32,6 +32,8 @@ export interface DeleteWhatIfForecastExportCommandOutput extends __MetadataBeare
32
32
  * };
33
33
  * const command = new DeleteWhatIfForecastExportCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // {};
36
+ *
35
37
  * ```
36
38
  *
37
39
  * @param DeleteWhatIfForecastExportCommandInput - {@link DeleteWhatIfForecastExportCommandInput}
@@ -51,6 +53,8 @@ export interface DeleteWhatIfForecastExportCommandOutput extends __MetadataBeare
51
53
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
52
54
  * again.</p>
53
55
  *
56
+ * @throws {@link ForecastServiceException}
57
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
54
58
  *
55
59
  */
56
60
  export declare class DeleteWhatIfForecastExportCommand extends $Command<DeleteWhatIfForecastExportCommandInput, DeleteWhatIfForecastExportCommandOutput, ForecastClientResolvedConfig> {
@@ -31,6 +31,71 @@ export interface DescribeAutoPredictorCommandOutput extends DescribeAutoPredicto
31
31
  * };
32
32
  * const command = new DescribeAutoPredictorCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // DescribeAutoPredictorResponse
35
+ * // PredictorArn: "STRING_VALUE",
36
+ * // PredictorName: "STRING_VALUE",
37
+ * // ForecastHorizon: Number("int"),
38
+ * // ForecastTypes: [ // ForecastTypes
39
+ * // "STRING_VALUE",
40
+ * // ],
41
+ * // ForecastFrequency: "STRING_VALUE",
42
+ * // ForecastDimensions: [ // ForecastDimensions
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // DatasetImportJobArns: [ // ArnList
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // DataConfig: { // DataConfig
49
+ * // DatasetGroupArn: "STRING_VALUE", // required
50
+ * // AttributeConfigs: [ // AttributeConfigs
51
+ * // { // AttributeConfig
52
+ * // AttributeName: "STRING_VALUE", // required
53
+ * // Transformations: { // Transformations // required
54
+ * // "<keys>": "STRING_VALUE",
55
+ * // },
56
+ * // },
57
+ * // ],
58
+ * // AdditionalDatasets: [ // AdditionalDatasets
59
+ * // { // AdditionalDataset
60
+ * // Name: "STRING_VALUE", // required
61
+ * // Configuration: { // Configuration
62
+ * // "<keys>": [ // Values
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // },
66
+ * // },
67
+ * // ],
68
+ * // },
69
+ * // EncryptionConfig: { // EncryptionConfig
70
+ * // RoleArn: "STRING_VALUE", // required
71
+ * // KMSKeyArn: "STRING_VALUE", // required
72
+ * // },
73
+ * // ReferencePredictorSummary: { // ReferencePredictorSummary
74
+ * // Arn: "STRING_VALUE",
75
+ * // State: "Active" || "Deleted",
76
+ * // },
77
+ * // EstimatedTimeRemainingInMinutes: Number("long"),
78
+ * // Status: "STRING_VALUE",
79
+ * // Message: "STRING_VALUE",
80
+ * // CreationTime: new Date("TIMESTAMP"),
81
+ * // LastModificationTime: new Date("TIMESTAMP"),
82
+ * // OptimizationMetric: "WAPE" || "RMSE" || "AverageWeightedQuantileLoss" || "MASE" || "MAPE",
83
+ * // ExplainabilityInfo: { // ExplainabilityInfo
84
+ * // ExplainabilityArn: "STRING_VALUE",
85
+ * // Status: "STRING_VALUE",
86
+ * // },
87
+ * // MonitorInfo: { // MonitorInfo
88
+ * // MonitorArn: "STRING_VALUE",
89
+ * // Status: "STRING_VALUE",
90
+ * // },
91
+ * // TimeAlignmentBoundary: { // TimeAlignmentBoundary
92
+ * // Month: "JANUARY" || "FEBRUARY" || "MARCH" || "APRIL" || "MAY" || "JUNE" || "JULY" || "AUGUST" || "SEPTEMBER" || "OCTOBER" || "NOVEMBER" || "DECEMBER",
93
+ * // DayOfMonth: Number("int"),
94
+ * // DayOfWeek: "MONDAY" || "TUESDAY" || "WEDNESDAY" || "THURSDAY" || "FRIDAY" || "SATURDAY" || "SUNDAY",
95
+ * // Hour: Number("int"),
96
+ * // },
97
+ * // };
98
+ *
34
99
  * ```
35
100
  *
36
101
  * @param DescribeAutoPredictorCommandInput - {@link DescribeAutoPredictorCommandInput}
@@ -47,6 +112,8 @@ export interface DescribeAutoPredictorCommandOutput extends DescribeAutoPredicto
47
112
  * <p>We can't find a resource with that Amazon Resource Name (ARN). Check the ARN and try
48
113
  * again.</p>
49
114
  *
115
+ * @throws {@link ForecastServiceException}
116
+ * <p>Base exception class for all service exceptions from Forecast service.</p>
50
117
  *
51
118
  */
52
119
  export declare class DescribeAutoPredictorCommand extends $Command<DescribeAutoPredictorCommandInput, DescribeAutoPredictorCommandOutput, ForecastClientResolvedConfig> {