@aws-sdk/client-forecast 3.888.0 → 3.891.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.
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +2 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +2 -0
- package/dist-types/commands/CreateDatasetGroupCommand.d.ts +2 -0
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +2 -0
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +2 -0
- package/dist-types/commands/CreateForecastCommand.d.ts +2 -0
- package/dist-types/commands/CreateForecastExportJobCommand.d.ts +2 -0
- package/dist-types/commands/CreateMonitorCommand.d.ts +2 -0
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +2 -0
- package/dist-types/commands/CreatePredictorCommand.d.ts +2 -0
- package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +2 -0
- package/dist-types/commands/CreateWhatIfForecastCommand.d.ts +2 -0
- package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +2 -0
- package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +2 -0
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +2 -0
- package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +2 -0
- package/dist-types/commands/DeleteForecastCommand.d.ts +2 -0
- package/dist-types/commands/DeleteForecastExportJobCommand.d.ts +2 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +2 -0
- package/dist-types/commands/DeletePredictorBacktestExportJobCommand.d.ts +2 -0
- package/dist-types/commands/DeletePredictorCommand.d.ts +2 -0
- package/dist-types/commands/DeleteResourceTreeCommand.d.ts +2 -0
- package/dist-types/commands/DeleteWhatIfAnalysisCommand.d.ts +2 -0
- package/dist-types/commands/DeleteWhatIfForecastCommand.d.ts +2 -0
- package/dist-types/commands/DeleteWhatIfForecastExportCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +2 -0
- package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeExplainabilityCommand.d.ts +2 -0
- package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +2 -0
- package/dist-types/commands/DescribeForecastCommand.d.ts +2 -0
- package/dist-types/commands/DescribeForecastExportJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribeMonitorCommand.d.ts +2 -0
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +2 -0
- package/dist-types/commands/DescribePredictorCommand.d.ts +2 -0
- package/dist-types/commands/DescribeWhatIfAnalysisCommand.d.ts +2 -0
- package/dist-types/commands/DescribeWhatIfForecastCommand.d.ts +2 -0
- package/dist-types/commands/DescribeWhatIfForecastExportCommand.d.ts +2 -0
- package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +2 -0
- package/dist-types/commands/ListDatasetGroupsCommand.d.ts +2 -0
- package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +2 -0
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +2 -0
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +2 -0
- package/dist-types/commands/ListForecastExportJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListForecastsCommand.d.ts +2 -0
- package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +2 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +2 -0
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +2 -0
- package/dist-types/commands/ListPredictorsCommand.d.ts +2 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -0
- package/dist-types/commands/ListWhatIfAnalysesCommand.d.ts +2 -0
- package/dist-types/commands/ListWhatIfForecastExportsCommand.d.ts +2 -0
- package/dist-types/commands/ListWhatIfForecastsCommand.d.ts +2 -0
- package/dist-types/commands/ResumeResourceCommand.d.ts +2 -0
- package/dist-types/commands/StopResourceCommand.d.ts +2 -0
- package/dist-types/commands/TagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -81,6 +81,8 @@ declare const CreateAutoPredictorCommand_base: {
|
|
|
81
81
|
* ```javascript
|
|
82
82
|
* import { ForecastClient, CreateAutoPredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
83
83
|
* // const { ForecastClient, CreateAutoPredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
84
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
85
|
+
* const config = {}; // type is ForecastClientConfig
|
|
84
86
|
* const client = new ForecastClient(config);
|
|
85
87
|
* const input = { // CreateAutoPredictorRequest
|
|
86
88
|
* PredictorName: "STRING_VALUE", // required
|
|
@@ -74,6 +74,8 @@ declare const CreateDatasetCommand_base: {
|
|
|
74
74
|
* ```javascript
|
|
75
75
|
* import { ForecastClient, CreateDatasetCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
76
76
|
* // const { ForecastClient, CreateDatasetCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
77
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
78
|
+
* const config = {}; // type is ForecastClientConfig
|
|
77
79
|
* const client = new ForecastClient(config);
|
|
78
80
|
* const input = { // CreateDatasetRequest
|
|
79
81
|
* DatasetName: "STRING_VALUE", // required
|
|
@@ -42,6 +42,8 @@ declare const CreateDatasetGroupCommand_base: {
|
|
|
42
42
|
* ```javascript
|
|
43
43
|
* import { ForecastClient, CreateDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
44
44
|
* // const { ForecastClient, CreateDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
45
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
46
|
+
* const config = {}; // type is ForecastClientConfig
|
|
45
47
|
* const client = new ForecastClient(config);
|
|
46
48
|
* const input = { // CreateDatasetGroupRequest
|
|
47
49
|
* DatasetGroupName: "STRING_VALUE", // required
|
|
@@ -49,6 +49,8 @@ declare const CreateDatasetImportJobCommand_base: {
|
|
|
49
49
|
* ```javascript
|
|
50
50
|
* import { ForecastClient, CreateDatasetImportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, CreateDatasetImportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
53
|
+
* const config = {}; // type is ForecastClientConfig
|
|
52
54
|
* const client = new ForecastClient(config);
|
|
53
55
|
* const input = { // CreateDatasetImportJobRequest
|
|
54
56
|
* DatasetImportJobName: "STRING_VALUE", // required
|
|
@@ -151,6 +151,8 @@ declare const CreateExplainabilityCommand_base: {
|
|
|
151
151
|
* ```javascript
|
|
152
152
|
* import { ForecastClient, CreateExplainabilityCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
153
153
|
* // const { ForecastClient, CreateExplainabilityCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
154
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
155
|
+
* const config = {}; // type is ForecastClientConfig
|
|
154
156
|
* const client = new ForecastClient(config);
|
|
155
157
|
* const input = { // CreateExplainabilityRequest
|
|
156
158
|
* ExplainabilityName: "STRING_VALUE", // required
|
|
@@ -41,6 +41,8 @@ declare const CreateExplainabilityExportCommand_base: {
|
|
|
41
41
|
* ```javascript
|
|
42
42
|
* import { ForecastClient, CreateExplainabilityExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
43
43
|
* // const { ForecastClient, CreateExplainabilityExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
44
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
45
|
+
* const config = {}; // type is ForecastClientConfig
|
|
44
46
|
* const client = new ForecastClient(config);
|
|
45
47
|
* const input = { // CreateExplainabilityExportRequest
|
|
46
48
|
* ExplainabilityExportName: "STRING_VALUE", // required
|
|
@@ -53,6 +53,8 @@ declare const CreateForecastCommand_base: {
|
|
|
53
53
|
* ```javascript
|
|
54
54
|
* import { ForecastClient, CreateForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
55
55
|
* // const { ForecastClient, CreateForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
56
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
57
|
+
* const config = {}; // type is ForecastClientConfig
|
|
56
58
|
* const client = new ForecastClient(config);
|
|
57
59
|
* const input = { // CreateForecastRequest
|
|
58
60
|
* ForecastName: "STRING_VALUE", // required
|
|
@@ -46,6 +46,8 @@ declare const CreateForecastExportJobCommand_base: {
|
|
|
46
46
|
* ```javascript
|
|
47
47
|
* import { ForecastClient, CreateForecastExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
48
48
|
* // const { ForecastClient, CreateForecastExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
49
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
50
|
+
* const config = {}; // type is ForecastClientConfig
|
|
49
51
|
* const client = new ForecastClient(config);
|
|
50
52
|
* const input = { // CreateForecastExportJobRequest
|
|
51
53
|
* ForecastExportJobName: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const CreateMonitorCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, CreateMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, CreateMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // CreateMonitorRequest
|
|
40
42
|
* MonitorName: "STRING_VALUE", // required
|
|
@@ -47,6 +47,8 @@ declare const CreatePredictorBacktestExportJobCommand_base: {
|
|
|
47
47
|
* ```javascript
|
|
48
48
|
* import { ForecastClient, CreatePredictorBacktestExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
49
49
|
* // const { ForecastClient, CreatePredictorBacktestExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
50
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
51
|
+
* const config = {}; // type is ForecastClientConfig
|
|
50
52
|
* const client = new ForecastClient(config);
|
|
51
53
|
* const input = { // CreatePredictorBacktestExportJobRequest
|
|
52
54
|
* PredictorBacktestExportJobName: "STRING_VALUE", // required
|
|
@@ -92,6 +92,8 @@ declare const CreatePredictorCommand_base: {
|
|
|
92
92
|
* ```javascript
|
|
93
93
|
* import { ForecastClient, CreatePredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
94
94
|
* // const { ForecastClient, CreatePredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
95
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
96
|
+
* const config = {}; // type is ForecastClientConfig
|
|
95
97
|
* const client = new ForecastClient(config);
|
|
96
98
|
* const input = { // CreatePredictorRequest
|
|
97
99
|
* PredictorName: "STRING_VALUE", // required
|
|
@@ -45,6 +45,8 @@ declare const CreateWhatIfAnalysisCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { ForecastClient, CreateWhatIfAnalysisCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
47
47
|
* // const { ForecastClient, CreateWhatIfAnalysisCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
48
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
49
|
+
* const config = {}; // type is ForecastClientConfig
|
|
48
50
|
* const client = new ForecastClient(config);
|
|
49
51
|
* const input = { // CreateWhatIfAnalysisRequest
|
|
50
52
|
* WhatIfAnalysisName: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const CreateWhatIfForecastCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ForecastClient, CreateWhatIfForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
36
36
|
* // const { ForecastClient, CreateWhatIfForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
37
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
38
|
+
* const config = {}; // type is ForecastClientConfig
|
|
37
39
|
* const client = new ForecastClient(config);
|
|
38
40
|
* const input = { // CreateWhatIfForecastRequest
|
|
39
41
|
* WhatIfForecastName: "STRING_VALUE", // required
|
|
@@ -49,6 +49,8 @@ declare const CreateWhatIfForecastExportCommand_base: {
|
|
|
49
49
|
* ```javascript
|
|
50
50
|
* import { ForecastClient, CreateWhatIfForecastExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, CreateWhatIfForecastExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
53
|
+
* const config = {}; // type is ForecastClientConfig
|
|
52
54
|
* const client = new ForecastClient(config);
|
|
53
55
|
* const input = { // CreateWhatIfForecastExportRequest
|
|
54
56
|
* WhatIfForecastExportName: "STRING_VALUE", // required
|
|
@@ -40,6 +40,8 @@ declare const DeleteDatasetCommand_base: {
|
|
|
40
40
|
* ```javascript
|
|
41
41
|
* import { ForecastClient, DeleteDatasetCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
42
42
|
* // const { ForecastClient, DeleteDatasetCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
43
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
44
|
+
* const config = {}; // type is ForecastClientConfig
|
|
43
45
|
* const client = new ForecastClient(config);
|
|
44
46
|
* const input = { // DeleteDatasetRequest
|
|
45
47
|
* DatasetArn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DeleteDatasetGroupCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, DeleteDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, DeleteDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // DeleteDatasetGroupRequest
|
|
41
43
|
* DatasetGroupArn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const DeleteDatasetImportJobCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, DeleteDatasetImportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, DeleteDatasetImportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // DeleteDatasetImportJobRequest
|
|
41
43
|
* DatasetImportJobArn: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const DeleteExplainabilityCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, DeleteExplainabilityCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, DeleteExplainabilityCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // DeleteExplainabilityRequest
|
|
40
42
|
* ExplainabilityArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteExplainabilityExportCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DeleteExplainabilityExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DeleteExplainabilityExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DeleteExplainabilityExportRequest
|
|
38
40
|
* ExplainabilityExportArn: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const DeleteForecastCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, DeleteForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, DeleteForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // DeleteForecastRequest
|
|
42
44
|
* ForecastArn: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const DeleteForecastExportJobCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, DeleteForecastExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, DeleteForecastExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // DeleteForecastExportJobRequest
|
|
40
42
|
* ForecastExportJobArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeleteMonitorCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DeleteMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DeleteMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DeleteMonitorRequest
|
|
38
40
|
* MonitorArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DeletePredictorBacktestExportJobCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DeletePredictorBacktestExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DeletePredictorBacktestExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DeletePredictorBacktestExportJobRequest
|
|
38
40
|
* PredictorBacktestExportJobArn: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeletePredictorCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ForecastClient, DeletePredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
36
36
|
* // const { ForecastClient, DeletePredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
37
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
38
|
+
* const config = {}; // type is ForecastClientConfig
|
|
37
39
|
* const client = new ForecastClient(config);
|
|
38
40
|
* const input = { // DeletePredictorRequest
|
|
39
41
|
* PredictorArn: "STRING_VALUE", // required
|
|
@@ -63,6 +63,8 @@ declare const DeleteResourceTreeCommand_base: {
|
|
|
63
63
|
* ```javascript
|
|
64
64
|
* import { ForecastClient, DeleteResourceTreeCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
65
65
|
* // const { ForecastClient, DeleteResourceTreeCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
66
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
67
|
+
* const config = {}; // type is ForecastClientConfig
|
|
66
68
|
* const client = new ForecastClient(config);
|
|
67
69
|
* const input = { // DeleteResourceTreeRequest
|
|
68
70
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const DeleteWhatIfAnalysisCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, DeleteWhatIfAnalysisCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, DeleteWhatIfAnalysisCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // DeleteWhatIfAnalysisRequest
|
|
40
42
|
* WhatIfAnalysisArn: "STRING_VALUE", // required
|
|
@@ -35,6 +35,8 @@ declare const DeleteWhatIfForecastCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, DeleteWhatIfForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, DeleteWhatIfForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // DeleteWhatIfForecastRequest
|
|
40
42
|
* WhatIfForecastArn: "STRING_VALUE", // required
|
|
@@ -34,6 +34,8 @@ declare const DeleteWhatIfForecastExportCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ForecastClient, DeleteWhatIfForecastExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
36
36
|
* // const { ForecastClient, DeleteWhatIfForecastExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
37
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
38
|
+
* const config = {}; // type is ForecastClientConfig
|
|
37
39
|
* const client = new ForecastClient(config);
|
|
38
40
|
* const input = { // DeleteWhatIfForecastExportRequest
|
|
39
41
|
* WhatIfForecastExportArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeAutoPredictorCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DescribeAutoPredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DescribeAutoPredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DescribeAutoPredictorRequest
|
|
38
40
|
* PredictorArn: "STRING_VALUE", // required
|
|
@@ -52,6 +52,8 @@ declare const DescribeDatasetCommand_base: {
|
|
|
52
52
|
* ```javascript
|
|
53
53
|
* import { ForecastClient, DescribeDatasetCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
54
54
|
* // const { ForecastClient, DescribeDatasetCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
55
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
56
|
+
* const config = {}; // type is ForecastClientConfig
|
|
55
57
|
* const client = new ForecastClient(config);
|
|
56
58
|
* const input = { // DescribeDatasetRequest
|
|
57
59
|
* DatasetArn: "STRING_VALUE", // required
|
|
@@ -57,6 +57,8 @@ declare const DescribeDatasetGroupCommand_base: {
|
|
|
57
57
|
* ```javascript
|
|
58
58
|
* import { ForecastClient, DescribeDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
59
59
|
* // const { ForecastClient, DescribeDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
60
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
61
|
+
* const config = {}; // type is ForecastClientConfig
|
|
60
62
|
* const client = new ForecastClient(config);
|
|
61
63
|
* const input = { // DescribeDatasetGroupRequest
|
|
62
64
|
* DatasetGroupArn: "STRING_VALUE", // required
|
|
@@ -67,6 +67,8 @@ declare const DescribeDatasetImportJobCommand_base: {
|
|
|
67
67
|
* ```javascript
|
|
68
68
|
* import { ForecastClient, DescribeDatasetImportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
69
69
|
* // const { ForecastClient, DescribeDatasetImportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
70
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
71
|
+
* const config = {}; // type is ForecastClientConfig
|
|
70
72
|
* const client = new ForecastClient(config);
|
|
71
73
|
* const input = { // DescribeDatasetImportJobRequest
|
|
72
74
|
* DatasetImportJobArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeExplainabilityCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DescribeExplainabilityCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DescribeExplainabilityCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DescribeExplainabilityRequest
|
|
38
40
|
* ExplainabilityArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const DescribeExplainabilityExportCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, DescribeExplainabilityExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, DescribeExplainabilityExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // DescribeExplainabilityExportRequest
|
|
38
40
|
* ExplainabilityExportArn: "STRING_VALUE", // required
|
|
@@ -61,6 +61,8 @@ declare const DescribeForecastCommand_base: {
|
|
|
61
61
|
* ```javascript
|
|
62
62
|
* import { ForecastClient, DescribeForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
63
63
|
* // const { ForecastClient, DescribeForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
64
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
65
|
+
* const config = {}; // type is ForecastClientConfig
|
|
64
66
|
* const client = new ForecastClient(config);
|
|
65
67
|
* const input = { // DescribeForecastRequest
|
|
66
68
|
* ForecastArn: "STRING_VALUE", // required
|
|
@@ -57,6 +57,8 @@ declare const DescribeForecastExportJobCommand_base: {
|
|
|
57
57
|
* ```javascript
|
|
58
58
|
* import { ForecastClient, DescribeForecastExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
59
59
|
* // const { ForecastClient, DescribeForecastExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
60
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
61
|
+
* const config = {}; // type is ForecastClientConfig
|
|
60
62
|
* const client = new ForecastClient(config);
|
|
61
63
|
* const input = { // DescribeForecastExportJobRequest
|
|
62
64
|
* ForecastExportJobArn: "STRING_VALUE", // required
|
|
@@ -70,6 +70,8 @@ declare const DescribeMonitorCommand_base: {
|
|
|
70
70
|
* ```javascript
|
|
71
71
|
* import { ForecastClient, DescribeMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
72
72
|
* // const { ForecastClient, DescribeMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
73
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
74
|
+
* const config = {}; // type is ForecastClientConfig
|
|
73
75
|
* const client = new ForecastClient(config);
|
|
74
76
|
* const input = { // DescribeMonitorRequest
|
|
75
77
|
* MonitorArn: "STRING_VALUE", // required
|
|
@@ -57,6 +57,8 @@ declare const DescribePredictorBacktestExportJobCommand_base: {
|
|
|
57
57
|
* ```javascript
|
|
58
58
|
* import { ForecastClient, DescribePredictorBacktestExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
59
59
|
* // const { ForecastClient, DescribePredictorBacktestExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
60
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
61
|
+
* const config = {}; // type is ForecastClientConfig
|
|
60
62
|
* const client = new ForecastClient(config);
|
|
61
63
|
* const input = { // DescribePredictorBacktestExportJobRequest
|
|
62
64
|
* PredictorBacktestExportJobArn: "STRING_VALUE", // required
|
|
@@ -71,6 +71,8 @@ declare const DescribePredictorCommand_base: {
|
|
|
71
71
|
* ```javascript
|
|
72
72
|
* import { ForecastClient, DescribePredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
73
73
|
* // const { ForecastClient, DescribePredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
74
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
75
|
+
* const config = {}; // type is ForecastClientConfig
|
|
74
76
|
* const client = new ForecastClient(config);
|
|
75
77
|
* const input = { // DescribePredictorRequest
|
|
76
78
|
* PredictorArn: "STRING_VALUE", // required
|
|
@@ -55,6 +55,8 @@ declare const DescribeWhatIfAnalysisCommand_base: {
|
|
|
55
55
|
* ```javascript
|
|
56
56
|
* import { ForecastClient, DescribeWhatIfAnalysisCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
57
57
|
* // const { ForecastClient, DescribeWhatIfAnalysisCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
58
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
59
|
+
* const config = {}; // type is ForecastClientConfig
|
|
58
60
|
* const client = new ForecastClient(config);
|
|
59
61
|
* const input = { // DescribeWhatIfAnalysisRequest
|
|
60
62
|
* WhatIfAnalysisArn: "STRING_VALUE", // required
|
|
@@ -55,6 +55,8 @@ declare const DescribeWhatIfForecastCommand_base: {
|
|
|
55
55
|
* ```javascript
|
|
56
56
|
* import { ForecastClient, DescribeWhatIfForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
57
57
|
* // const { ForecastClient, DescribeWhatIfForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
58
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
59
|
+
* const config = {}; // type is ForecastClientConfig
|
|
58
60
|
* const client = new ForecastClient(config);
|
|
59
61
|
* const input = { // DescribeWhatIfForecastRequest
|
|
60
62
|
* WhatIfForecastArn: "STRING_VALUE", // required
|
|
@@ -55,6 +55,8 @@ declare const DescribeWhatIfForecastExportCommand_base: {
|
|
|
55
55
|
* ```javascript
|
|
56
56
|
* import { ForecastClient, DescribeWhatIfForecastExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
57
57
|
* // const { ForecastClient, DescribeWhatIfForecastExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
58
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
59
|
+
* const config = {}; // type is ForecastClientConfig
|
|
58
60
|
* const client = new ForecastClient(config);
|
|
59
61
|
* const input = { // DescribeWhatIfForecastExportRequest
|
|
60
62
|
* WhatIfForecastExportArn: "STRING_VALUE", // required
|
|
@@ -49,6 +49,8 @@ declare const GetAccuracyMetricsCommand_base: {
|
|
|
49
49
|
* ```javascript
|
|
50
50
|
* import { ForecastClient, GetAccuracyMetricsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, GetAccuracyMetricsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
53
|
+
* const config = {}; // type is ForecastClientConfig
|
|
52
54
|
* const client = new ForecastClient(config);
|
|
53
55
|
* const input = { // GetAccuracyMetricsRequest
|
|
54
56
|
* PredictorArn: "STRING_VALUE", // required
|
|
@@ -37,6 +37,8 @@ declare const ListDatasetGroupsCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, ListDatasetGroupsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, ListDatasetGroupsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // ListDatasetGroupsRequest
|
|
42
44
|
* NextToken: "STRING_VALUE",
|
|
@@ -37,6 +37,8 @@ declare const ListDatasetImportJobsCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, ListDatasetImportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, ListDatasetImportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // ListDatasetImportJobsRequest
|
|
42
44
|
* NextToken: "STRING_VALUE",
|
|
@@ -35,6 +35,8 @@ declare const ListDatasetsCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { ForecastClient, ListDatasetsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
37
37
|
* // const { ForecastClient, ListDatasetsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
38
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
39
|
+
* const config = {}; // type is ForecastClientConfig
|
|
38
40
|
* const client = new ForecastClient(config);
|
|
39
41
|
* const input = { // ListDatasetsRequest
|
|
40
42
|
* NextToken: "STRING_VALUE",
|
|
@@ -37,6 +37,8 @@ declare const ListExplainabilitiesCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, ListExplainabilitiesCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, ListExplainabilitiesCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // ListExplainabilitiesRequest
|
|
42
44
|
* NextToken: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const ListExplainabilityExportsCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, ListExplainabilityExportsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, ListExplainabilityExportsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // ListExplainabilityExportsRequest
|
|
41
43
|
* NextToken: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const ListForecastExportJobsCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, ListForecastExportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, ListForecastExportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // ListForecastExportJobsRequest
|
|
41
43
|
* NextToken: "STRING_VALUE",
|
|
@@ -37,6 +37,8 @@ declare const ListForecastsCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, ListForecastsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, ListForecastsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // ListForecastsRequest
|
|
42
44
|
* NextToken: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const ListMonitorEvaluationsCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, ListMonitorEvaluationsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, ListMonitorEvaluationsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // ListMonitorEvaluationsRequest
|
|
41
43
|
* NextToken: "STRING_VALUE",
|
|
@@ -34,6 +34,8 @@ declare const ListMonitorsCommand_base: {
|
|
|
34
34
|
* ```javascript
|
|
35
35
|
* import { ForecastClient, ListMonitorsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
36
36
|
* // const { ForecastClient, ListMonitorsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
37
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
38
|
+
* const config = {}; // type is ForecastClientConfig
|
|
37
39
|
* const client = new ForecastClient(config);
|
|
38
40
|
* const input = { // ListMonitorsRequest
|
|
39
41
|
* NextToken: "STRING_VALUE",
|
|
@@ -36,6 +36,8 @@ declare const ListPredictorBacktestExportJobsCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, ListPredictorBacktestExportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, ListPredictorBacktestExportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // ListPredictorBacktestExportJobsRequest
|
|
41
43
|
* NextToken: "STRING_VALUE",
|
|
@@ -37,6 +37,8 @@ declare const ListPredictorsCommand_base: {
|
|
|
37
37
|
* ```javascript
|
|
38
38
|
* import { ForecastClient, ListPredictorsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
39
39
|
* // const { ForecastClient, ListPredictorsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
40
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
41
|
+
* const config = {}; // type is ForecastClientConfig
|
|
40
42
|
* const client = new ForecastClient(config);
|
|
41
43
|
* const input = { // ListPredictorsRequest
|
|
42
44
|
* NextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, ListTagsForResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, ListTagsForResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // ListTagsForResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const ListWhatIfAnalysesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, ListWhatIfAnalysesCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, ListWhatIfAnalysesCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // ListWhatIfAnalysesRequest
|
|
38
40
|
* NextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListWhatIfForecastExportsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, ListWhatIfForecastExportsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, ListWhatIfForecastExportsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // ListWhatIfForecastExportsRequest
|
|
38
40
|
* NextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ListWhatIfForecastsCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, ListWhatIfForecastsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, ListWhatIfForecastsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // ListWhatIfForecastsRequest
|
|
38
40
|
* NextToken: "STRING_VALUE",
|
|
@@ -33,6 +33,8 @@ declare const ResumeResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, ResumeResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, ResumeResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // ResumeResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -61,6 +61,8 @@ declare const StopResourceCommand_base: {
|
|
|
61
61
|
* ```javascript
|
|
62
62
|
* import { ForecastClient, StopResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
63
63
|
* // const { ForecastClient, StopResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
64
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
65
|
+
* const config = {}; // type is ForecastClientConfig
|
|
64
66
|
* const client = new ForecastClient(config);
|
|
65
67
|
* const input = { // StopResourceRequest
|
|
66
68
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -36,6 +36,8 @@ declare const TagResourceCommand_base: {
|
|
|
36
36
|
* ```javascript
|
|
37
37
|
* import { ForecastClient, TagResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
38
38
|
* // const { ForecastClient, TagResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
39
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
40
|
+
* const config = {}; // type is ForecastClientConfig
|
|
39
41
|
* const client = new ForecastClient(config);
|
|
40
42
|
* const input = { // TagResourceRequest
|
|
41
43
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -33,6 +33,8 @@ declare const UntagResourceCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { ForecastClient, UntagResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
35
35
|
* // const { ForecastClient, UntagResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
36
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
37
|
+
* const config = {}; // type is ForecastClientConfig
|
|
36
38
|
* const client = new ForecastClient(config);
|
|
37
39
|
* const input = { // UntagResourceRequest
|
|
38
40
|
* ResourceArn: "STRING_VALUE", // required
|
|
@@ -38,6 +38,8 @@ declare const UpdateDatasetGroupCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { ForecastClient, UpdateDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
40
40
|
* // const { ForecastClient, UpdateDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
41
|
+
* // import type { ForecastClientConfig } from "@aws-sdk/client-forecast";
|
|
42
|
+
* const config = {}; // type is ForecastClientConfig
|
|
41
43
|
* const client = new ForecastClient(config);
|
|
42
44
|
* const input = { // UpdateDatasetGroupRequest
|
|
43
45
|
* DatasetGroupArn: "STRING_VALUE", // required
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-forecast",
|
|
3
3
|
"description": "AWS SDK for JavaScript Forecast Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-forecast",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/core": "3.890.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.2.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
|
-
"@smithy/node-config-provider": "^4.2.
|
|
44
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.2",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
55
|
-
"@smithy/util-endpoints": "^3.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|