@aws-sdk/client-forecast 3.299.0 → 3.301.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 +54 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +24 -0
- package/dist-types/commands/CreateDatasetGroupCommand.d.ts +13 -0
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +23 -0
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +32 -0
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +18 -0
- package/dist-types/commands/CreateForecastCommand.d.ts +33 -0
- package/dist-types/commands/CreateForecastExportJobCommand.d.ts +18 -0
- package/dist-types/commands/CreateMonitorCommand.d.ts +10 -0
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +18 -0
- package/dist-types/commands/CreatePredictorCommand.d.ts +85 -0
- package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +30 -0
- package/dist-types/commands/CreateWhatIfForecastCommand.d.ts +43 -0
- package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +20 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +3 -0
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +3 -0
- package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +3 -0
- package/dist-types/commands/DeleteForecastCommand.d.ts +3 -0
- package/dist-types/commands/DeleteForecastExportJobCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +3 -0
- package/dist-types/commands/DeletePredictorBacktestExportJobCommand.d.ts +3 -0
- package/dist-types/commands/DeletePredictorCommand.d.ts +3 -0
- package/dist-types/commands/DeleteResourceTreeCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWhatIfAnalysisCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWhatIfForecastCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWhatIfForecastExportCommand.d.ts +3 -0
- package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +3 -0
- package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeExplainabilityCommand.d.ts +3 -0
- package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +3 -0
- package/dist-types/commands/DescribeForecastCommand.d.ts +3 -0
- package/dist-types/commands/DescribeForecastExportJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribeMonitorCommand.d.ts +3 -0
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +3 -0
- package/dist-types/commands/DescribePredictorCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWhatIfAnalysisCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWhatIfForecastCommand.d.ts +3 -0
- package/dist-types/commands/DescribeWhatIfForecastExportCommand.d.ts +3 -0
- package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +3 -0
- package/dist-types/commands/ListDatasetGroupsCommand.d.ts +4 -0
- package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +4 -0
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +11 -0
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +11 -0
- package/dist-types/commands/ListForecastExportJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListForecastsCommand.d.ts +11 -0
- package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +12 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +11 -0
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +11 -0
- package/dist-types/commands/ListPredictorsCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListWhatIfAnalysesCommand.d.ts +11 -0
- package/dist-types/commands/ListWhatIfForecastExportsCommand.d.ts +11 -0
- package/dist-types/commands/ListWhatIfForecastsCommand.d.ts +11 -0
- package/dist-types/commands/ResumeResourceCommand.d.ts +3 -0
- package/dist-types/commands/StopResourceCommand.d.ts +3 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +6 -0
- package/package.json +8 -8
|
@@ -28,6 +28,9 @@ export interface DeleteWhatIfAnalysisCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { ForecastClient, DeleteWhatIfAnalysisCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
29
29
|
* // const { ForecastClient, DeleteWhatIfAnalysisCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
30
30
|
* const client = new ForecastClient(config);
|
|
31
|
+
* const input = { // DeleteWhatIfAnalysisRequest
|
|
32
|
+
* WhatIfAnalysisArn: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteWhatIfAnalysisCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeleteWhatIfForecastCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { ForecastClient, DeleteWhatIfForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
29
29
|
* // const { ForecastClient, DeleteWhatIfForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
30
30
|
* const client = new ForecastClient(config);
|
|
31
|
+
* const input = { // DeleteWhatIfForecastRequest
|
|
32
|
+
* WhatIfForecastArn: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeleteWhatIfForecastCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface DeleteWhatIfForecastExportCommandOutput extends __MetadataBeare
|
|
|
27
27
|
* import { ForecastClient, DeleteWhatIfForecastExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
28
28
|
* // const { ForecastClient, DeleteWhatIfForecastExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
29
29
|
* const client = new ForecastClient(config);
|
|
30
|
+
* const input = { // DeleteWhatIfForecastExportRequest
|
|
31
|
+
* WhatIfForecastExportArn: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new DeleteWhatIfForecastExportCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeAutoPredictorCommandOutput extends DescribeAutoPredicto
|
|
|
26
26
|
* import { ForecastClient, DescribeAutoPredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, DescribeAutoPredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // DescribeAutoPredictorRequest
|
|
30
|
+
* PredictorArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeAutoPredictorCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -45,6 +45,9 @@ export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, _
|
|
|
45
45
|
* import { ForecastClient, DescribeDatasetCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
46
46
|
* // const { ForecastClient, DescribeDatasetCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
47
47
|
* const client = new ForecastClient(config);
|
|
48
|
+
* const input = { // DescribeDatasetRequest
|
|
49
|
+
* DatasetArn: "STRING_VALUE", // required
|
|
50
|
+
* };
|
|
48
51
|
* const command = new DescribeDatasetCommand(input);
|
|
49
52
|
* const response = await client.send(command);
|
|
50
53
|
* ```
|
|
@@ -50,6 +50,9 @@ export interface DescribeDatasetGroupCommandOutput extends DescribeDatasetGroupR
|
|
|
50
50
|
* import { ForecastClient, DescribeDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, DescribeDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
52
|
* const client = new ForecastClient(config);
|
|
53
|
+
* const input = { // DescribeDatasetGroupRequest
|
|
54
|
+
* DatasetGroupArn: "STRING_VALUE", // required
|
|
55
|
+
* };
|
|
53
56
|
* const command = new DescribeDatasetGroupCommand(input);
|
|
54
57
|
* const response = await client.send(command);
|
|
55
58
|
* ```
|
|
@@ -60,6 +60,9 @@ export interface DescribeDatasetImportJobCommandOutput extends DescribeDatasetIm
|
|
|
60
60
|
* import { ForecastClient, DescribeDatasetImportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
61
61
|
* // const { ForecastClient, DescribeDatasetImportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
62
62
|
* const client = new ForecastClient(config);
|
|
63
|
+
* const input = { // DescribeDatasetImportJobRequest
|
|
64
|
+
* DatasetImportJobArn: "STRING_VALUE", // required
|
|
65
|
+
* };
|
|
63
66
|
* const command = new DescribeDatasetImportJobCommand(input);
|
|
64
67
|
* const response = await client.send(command);
|
|
65
68
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeExplainabilityCommandOutput extends DescribeExplainabil
|
|
|
26
26
|
* import { ForecastClient, DescribeExplainabilityCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, DescribeExplainabilityCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // DescribeExplainabilityRequest
|
|
30
|
+
* ExplainabilityArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeExplainabilityCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeExplainabilityExportCommandOutput extends DescribeExpla
|
|
|
26
26
|
* import { ForecastClient, DescribeExplainabilityExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, DescribeExplainabilityExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // DescribeExplainabilityExportRequest
|
|
30
|
+
* ExplainabilityExportArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeExplainabilityExportCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -54,6 +54,9 @@ export interface DescribeForecastCommandOutput extends DescribeForecastResponse,
|
|
|
54
54
|
* import { ForecastClient, DescribeForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
55
55
|
* // const { ForecastClient, DescribeForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
56
56
|
* const client = new ForecastClient(config);
|
|
57
|
+
* const input = { // DescribeForecastRequest
|
|
58
|
+
* ForecastArn: "STRING_VALUE", // required
|
|
59
|
+
* };
|
|
57
60
|
* const command = new DescribeForecastCommand(input);
|
|
58
61
|
* const response = await client.send(command);
|
|
59
62
|
* ```
|
|
@@ -50,6 +50,9 @@ export interface DescribeForecastExportJobCommandOutput extends DescribeForecast
|
|
|
50
50
|
* import { ForecastClient, DescribeForecastExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, DescribeForecastExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
52
|
* const client = new ForecastClient(config);
|
|
53
|
+
* const input = { // DescribeForecastExportJobRequest
|
|
54
|
+
* ForecastExportJobArn: "STRING_VALUE", // required
|
|
55
|
+
* };
|
|
53
56
|
* const command = new DescribeForecastExportJobCommand(input);
|
|
54
57
|
* const response = await client.send(command);
|
|
55
58
|
* ```
|
|
@@ -63,6 +63,9 @@ export interface DescribeMonitorCommandOutput extends DescribeMonitorResponse, _
|
|
|
63
63
|
* import { ForecastClient, DescribeMonitorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
64
64
|
* // const { ForecastClient, DescribeMonitorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
65
65
|
* const client = new ForecastClient(config);
|
|
66
|
+
* const input = { // DescribeMonitorRequest
|
|
67
|
+
* MonitorArn: "STRING_VALUE", // required
|
|
68
|
+
* };
|
|
66
69
|
* const command = new DescribeMonitorCommand(input);
|
|
67
70
|
* const response = await client.send(command);
|
|
68
71
|
* ```
|
|
@@ -50,6 +50,9 @@ export interface DescribePredictorBacktestExportJobCommandOutput extends Describ
|
|
|
50
50
|
* import { ForecastClient, DescribePredictorBacktestExportJobCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
51
51
|
* // const { ForecastClient, DescribePredictorBacktestExportJobCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
52
52
|
* const client = new ForecastClient(config);
|
|
53
|
+
* const input = { // DescribePredictorBacktestExportJobRequest
|
|
54
|
+
* PredictorBacktestExportJobArn: "STRING_VALUE", // required
|
|
55
|
+
* };
|
|
53
56
|
* const command = new DescribePredictorBacktestExportJobCommand(input);
|
|
54
57
|
* const response = await client.send(command);
|
|
55
58
|
* ```
|
|
@@ -64,6 +64,9 @@ export interface DescribePredictorCommandOutput extends DescribePredictorRespons
|
|
|
64
64
|
* import { ForecastClient, DescribePredictorCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
65
65
|
* // const { ForecastClient, DescribePredictorCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
66
66
|
* const client = new ForecastClient(config);
|
|
67
|
+
* const input = { // DescribePredictorRequest
|
|
68
|
+
* PredictorArn: "STRING_VALUE", // required
|
|
69
|
+
* };
|
|
67
70
|
* const command = new DescribePredictorCommand(input);
|
|
68
71
|
* const response = await client.send(command);
|
|
69
72
|
* ```
|
|
@@ -48,6 +48,9 @@ export interface DescribeWhatIfAnalysisCommandOutput extends DescribeWhatIfAnaly
|
|
|
48
48
|
* import { ForecastClient, DescribeWhatIfAnalysisCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
49
49
|
* // const { ForecastClient, DescribeWhatIfAnalysisCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
50
50
|
* const client = new ForecastClient(config);
|
|
51
|
+
* const input = { // DescribeWhatIfAnalysisRequest
|
|
52
|
+
* WhatIfAnalysisArn: "STRING_VALUE", // required
|
|
53
|
+
* };
|
|
51
54
|
* const command = new DescribeWhatIfAnalysisCommand(input);
|
|
52
55
|
* const response = await client.send(command);
|
|
53
56
|
* ```
|
|
@@ -48,6 +48,9 @@ export interface DescribeWhatIfForecastCommandOutput extends DescribeWhatIfForec
|
|
|
48
48
|
* import { ForecastClient, DescribeWhatIfForecastCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
49
49
|
* // const { ForecastClient, DescribeWhatIfForecastCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
50
50
|
* const client = new ForecastClient(config);
|
|
51
|
+
* const input = { // DescribeWhatIfForecastRequest
|
|
52
|
+
* WhatIfForecastArn: "STRING_VALUE", // required
|
|
53
|
+
* };
|
|
51
54
|
* const command = new DescribeWhatIfForecastCommand(input);
|
|
52
55
|
* const response = await client.send(command);
|
|
53
56
|
* ```
|
|
@@ -48,6 +48,9 @@ export interface DescribeWhatIfForecastExportCommandOutput extends DescribeWhatI
|
|
|
48
48
|
* import { ForecastClient, DescribeWhatIfForecastExportCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
49
49
|
* // const { ForecastClient, DescribeWhatIfForecastExportCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
50
50
|
* const client = new ForecastClient(config);
|
|
51
|
+
* const input = { // DescribeWhatIfForecastExportRequest
|
|
52
|
+
* WhatIfForecastExportArn: "STRING_VALUE", // required
|
|
53
|
+
* };
|
|
51
54
|
* const command = new DescribeWhatIfForecastExportCommand(input);
|
|
52
55
|
* const response = await client.send(command);
|
|
53
56
|
* ```
|
|
@@ -42,6 +42,9 @@ export interface GetAccuracyMetricsCommandOutput extends GetAccuracyMetricsRespo
|
|
|
42
42
|
* import { ForecastClient, GetAccuracyMetricsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
43
43
|
* // const { ForecastClient, GetAccuracyMetricsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
44
44
|
* const client = new ForecastClient(config);
|
|
45
|
+
* const input = { // GetAccuracyMetricsRequest
|
|
46
|
+
* PredictorArn: "STRING_VALUE", // required
|
|
47
|
+
* };
|
|
45
48
|
* const command = new GetAccuracyMetricsCommand(input);
|
|
46
49
|
* const response = await client.send(command);
|
|
47
50
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface ListDatasetGroupsCommandOutput extends ListDatasetGroupsRespons
|
|
|
30
30
|
* import { ForecastClient, ListDatasetGroupsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
31
31
|
* // const { ForecastClient, ListDatasetGroupsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
32
32
|
* const client = new ForecastClient(config);
|
|
33
|
+
* const input = { // ListDatasetGroupsRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* };
|
|
33
37
|
* const command = new ListDatasetGroupsCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -30,6 +30,17 @@ export interface ListDatasetImportJobsCommandOutput extends ListDatasetImportJob
|
|
|
30
30
|
* import { ForecastClient, ListDatasetImportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
31
31
|
* // const { ForecastClient, ListDatasetImportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
32
32
|
* const client = new ForecastClient(config);
|
|
33
|
+
* const input = { // ListDatasetImportJobsRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* Filters: [ // Filters
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
33
44
|
* const command = new ListDatasetImportJobsCommand(input);
|
|
34
45
|
* const response = await client.send(command);
|
|
35
46
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __Metad
|
|
|
28
28
|
* import { ForecastClient, ListDatasetsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
29
29
|
* // const { ForecastClient, ListDatasetsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
30
30
|
* const client = new ForecastClient(config);
|
|
31
|
+
* const input = { // ListDatasetsRequest
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ListDatasetsCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -30,6 +30,17 @@ export interface ListExplainabilitiesCommandOutput extends ListExplainabilitiesR
|
|
|
30
30
|
* import { ForecastClient, ListExplainabilitiesCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
31
31
|
* // const { ForecastClient, ListExplainabilitiesCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
32
32
|
* const client = new ForecastClient(config);
|
|
33
|
+
* const input = { // ListExplainabilitiesRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* Filters: [ // Filters
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
33
44
|
* const command = new ListExplainabilitiesCommand(input);
|
|
34
45
|
* const response = await client.send(command);
|
|
35
46
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface ListExplainabilityExportsCommandOutput extends ListExplainabili
|
|
|
29
29
|
* import { ForecastClient, ListExplainabilityExportsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
30
30
|
* // const { ForecastClient, ListExplainabilityExportsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
31
31
|
* const client = new ForecastClient(config);
|
|
32
|
+
* const input = { // ListExplainabilityExportsRequest
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* Filters: [ // Filters
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Key: "STRING_VALUE", // required
|
|
38
|
+
* Value: "STRING_VALUE", // required
|
|
39
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
32
43
|
* const command = new ListExplainabilityExportsCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface ListForecastExportJobsCommandOutput extends ListForecastExportJ
|
|
|
29
29
|
* import { ForecastClient, ListForecastExportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
30
30
|
* // const { ForecastClient, ListForecastExportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
31
31
|
* const client = new ForecastClient(config);
|
|
32
|
+
* const input = { // ListForecastExportJobsRequest
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* Filters: [ // Filters
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Key: "STRING_VALUE", // required
|
|
38
|
+
* Value: "STRING_VALUE", // required
|
|
39
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
32
43
|
* const command = new ListForecastExportJobsCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -30,6 +30,17 @@ export interface ListForecastsCommandOutput extends ListForecastsResponse, __Met
|
|
|
30
30
|
* import { ForecastClient, ListForecastsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
31
31
|
* // const { ForecastClient, ListForecastsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
32
32
|
* const client = new ForecastClient(config);
|
|
33
|
+
* const input = { // ListForecastsRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* Filters: [ // Filters
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
33
44
|
* const command = new ListForecastsCommand(input);
|
|
34
45
|
* const response = await client.send(command);
|
|
35
46
|
* ```
|
|
@@ -29,6 +29,18 @@ export interface ListMonitorEvaluationsCommandOutput extends ListMonitorEvaluati
|
|
|
29
29
|
* import { ForecastClient, ListMonitorEvaluationsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
30
30
|
* // const { ForecastClient, ListMonitorEvaluationsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
31
31
|
* const client = new ForecastClient(config);
|
|
32
|
+
* const input = { // ListMonitorEvaluationsRequest
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* MonitorArn: "STRING_VALUE", // required
|
|
36
|
+
* Filters: [ // Filters
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
32
44
|
* const command = new ListMonitorEvaluationsCommand(input);
|
|
33
45
|
* const response = await client.send(command);
|
|
34
46
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface ListMonitorsCommandOutput extends ListMonitorsResponse, __Metad
|
|
|
27
27
|
* import { ForecastClient, ListMonitorsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
28
28
|
* // const { ForecastClient, ListMonitorsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
29
29
|
* const client = new ForecastClient(config);
|
|
30
|
+
* const input = { // ListMonitorsRequest
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* Filters: [ // Filters
|
|
34
|
+
* { // Filter
|
|
35
|
+
* Key: "STRING_VALUE", // required
|
|
36
|
+
* Value: "STRING_VALUE", // required
|
|
37
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
30
41
|
* const command = new ListMonitorsCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface ListPredictorBacktestExportJobsCommandOutput extends ListPredic
|
|
|
29
29
|
* import { ForecastClient, ListPredictorBacktestExportJobsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
30
30
|
* // const { ForecastClient, ListPredictorBacktestExportJobsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
31
31
|
* const client = new ForecastClient(config);
|
|
32
|
+
* const input = { // ListPredictorBacktestExportJobsRequest
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* Filters: [ // Filters
|
|
36
|
+
* { // Filter
|
|
37
|
+
* Key: "STRING_VALUE", // required
|
|
38
|
+
* Value: "STRING_VALUE", // required
|
|
39
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
32
43
|
* const command = new ListPredictorBacktestExportJobsCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -30,6 +30,17 @@ export interface ListPredictorsCommandOutput extends ListPredictorsResponse, __M
|
|
|
30
30
|
* import { ForecastClient, ListPredictorsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
31
31
|
* // const { ForecastClient, ListPredictorsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
32
32
|
* const client = new ForecastClient(config);
|
|
33
|
+
* const input = { // ListPredictorsRequest
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* MaxResults: Number("int"),
|
|
36
|
+
* Filters: [ // Filters
|
|
37
|
+
* { // Filter
|
|
38
|
+
* Key: "STRING_VALUE", // required
|
|
39
|
+
* Value: "STRING_VALUE", // required
|
|
40
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* };
|
|
33
44
|
* const command = new ListPredictorsCommand(input);
|
|
34
45
|
* const response = await client.send(command);
|
|
35
46
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { ForecastClient, ListTagsForResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, ListTagsForResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListWhatIfAnalysesCommandOutput extends ListWhatIfAnalysesRespo
|
|
|
26
26
|
* import { ForecastClient, ListWhatIfAnalysesCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, ListWhatIfAnalysesCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // ListWhatIfAnalysesRequest
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* Filters: [ // Filters
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE", // required
|
|
36
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListWhatIfAnalysesCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListWhatIfForecastExportsCommandOutput extends ListWhatIfForeca
|
|
|
26
26
|
* import { ForecastClient, ListWhatIfForecastExportsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, ListWhatIfForecastExportsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // ListWhatIfForecastExportsRequest
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* Filters: [ // Filters
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE", // required
|
|
36
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListWhatIfForecastExportsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,17 @@ export interface ListWhatIfForecastsCommandOutput extends ListWhatIfForecastsRes
|
|
|
26
26
|
* import { ForecastClient, ListWhatIfForecastsCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, ListWhatIfForecastsCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // ListWhatIfForecastsRequest
|
|
30
|
+
* NextToken: "STRING_VALUE",
|
|
31
|
+
* MaxResults: Number("int"),
|
|
32
|
+
* Filters: [ // Filters
|
|
33
|
+
* { // Filter
|
|
34
|
+
* Key: "STRING_VALUE", // required
|
|
35
|
+
* Value: "STRING_VALUE", // required
|
|
36
|
+
* Condition: "IS" || "IS_NOT", // required
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
29
40
|
* const command = new ListWhatIfForecastsCommand(input);
|
|
30
41
|
* const response = await client.send(command);
|
|
31
42
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ResumeResourceCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { ForecastClient, ResumeResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, ResumeResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // ResumeResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ResumeResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -54,6 +54,9 @@ export interface StopResourceCommandOutput extends __MetadataBearer {
|
|
|
54
54
|
* import { ForecastClient, StopResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
55
55
|
* // const { ForecastClient, StopResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
56
56
|
* const client = new ForecastClient(config);
|
|
57
|
+
* const input = { // StopResourceRequest
|
|
58
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
59
|
+
* };
|
|
57
60
|
* const command = new StopResourceCommand(input);
|
|
58
61
|
* const response = await client.send(command);
|
|
59
62
|
* ```
|
|
@@ -29,6 +29,15 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* import { ForecastClient, TagResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
30
30
|
* // const { ForecastClient, TagResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
31
31
|
* const client = new ForecastClient(config);
|
|
32
|
+
* const input = { // TagResourceRequest
|
|
33
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
34
|
+
* Tags: [ // Tags // required
|
|
35
|
+
* { // Tag
|
|
36
|
+
* Key: "STRING_VALUE", // required
|
|
37
|
+
* Value: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* };
|
|
32
41
|
* const command = new TagResourceCommand(input);
|
|
33
42
|
* const response = await client.send(command);
|
|
34
43
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { ForecastClient, UntagResourceCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
27
27
|
* // const { ForecastClient, UntagResourceCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
28
28
|
* const client = new ForecastClient(config);
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -31,6 +31,12 @@ export interface UpdateDatasetGroupCommandOutput extends UpdateDatasetGroupRespo
|
|
|
31
31
|
* import { ForecastClient, UpdateDatasetGroupCommand } from "@aws-sdk/client-forecast"; // ES Modules import
|
|
32
32
|
* // const { ForecastClient, UpdateDatasetGroupCommand } = require("@aws-sdk/client-forecast"); // CommonJS import
|
|
33
33
|
* const client = new ForecastClient(config);
|
|
34
|
+
* const input = { // UpdateDatasetGroupRequest
|
|
35
|
+
* DatasetGroupArn: "STRING_VALUE", // required
|
|
36
|
+
* DatasetArns: [ // ArnList // required
|
|
37
|
+
* "STRING_VALUE",
|
|
38
|
+
* ],
|
|
39
|
+
* };
|
|
34
40
|
* const command = new UpdateDatasetGroupCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
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.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0"
|
|
57
57
|
},
|