@aws-sdk/client-forecast 3.278.0 → 3.281.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/README.md +507 -0
- package/dist-types/commands/CreateAutoPredictorCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/CreateExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/CreateForecastCommand.d.ts +6 -0
- package/dist-types/commands/CreateForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateMonitorCommand.d.ts +6 -0
- package/dist-types/commands/CreatePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/CreatePredictorCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/CreateWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/DeleteDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/DeleteExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/DeleteForecastCommand.d.ts +6 -0
- package/dist-types/commands/DeleteForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeleteMonitorCommand.d.ts +6 -0
- package/dist-types/commands/DeletePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DeletePredictorCommand.d.ts +6 -0
- package/dist-types/commands/DeleteResourceTreeCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/DeleteWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAutoPredictorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetGroupCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetImportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeExplainabilityCommand.d.ts +6 -0
- package/dist-types/commands/DescribeExplainabilityExportCommand.d.ts +6 -0
- package/dist-types/commands/DescribeForecastCommand.d.ts +6 -0
- package/dist-types/commands/DescribeForecastExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeMonitorCommand.d.ts +6 -0
- package/dist-types/commands/DescribePredictorBacktestExportJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribePredictorCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfAnalysisCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfForecastCommand.d.ts +6 -0
- package/dist-types/commands/DescribeWhatIfForecastExportCommand.d.ts +6 -0
- package/dist-types/commands/GetAccuracyMetricsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetGroupsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetImportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetsCommand.d.ts +6 -0
- package/dist-types/commands/ListExplainabilitiesCommand.d.ts +6 -0
- package/dist-types/commands/ListExplainabilityExportsCommand.d.ts +6 -0
- package/dist-types/commands/ListForecastExportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListForecastsCommand.d.ts +6 -0
- package/dist-types/commands/ListMonitorEvaluationsCommand.d.ts +6 -0
- package/dist-types/commands/ListMonitorsCommand.d.ts +6 -0
- package/dist-types/commands/ListPredictorBacktestExportJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListPredictorsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfAnalysesCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfForecastExportsCommand.d.ts +6 -0
- package/dist-types/commands/ListWhatIfForecastsCommand.d.ts +6 -0
- package/dist-types/commands/ResumeResourceCommand.d.ts +6 -0
- package/dist-types/commands/StopResourceCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateDatasetGroupCommand.d.ts +6 -0
- package/package.json +6 -6
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreateForecastExportJobRequest, CreateForecastExportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateForecastExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateForecastExportJobCommandInput extends CreateForecastExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateForecastExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateForecastExportJobCommandOutput extends CreateForecastExportJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreateMonitorRequest, CreateMonitorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateMonitorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateMonitorCommandInput extends CreateMonitorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateMonitorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateMonitorCommandOutput extends CreateMonitorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreatePredictorBacktestExportJobRequest, CreatePredictorBacktestExportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreatePredictorBacktestExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreatePredictorBacktestExportJobCommandInput extends CreatePredictorBacktestExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreatePredictorBacktestExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreatePredictorBacktestExportJobCommandOutput extends CreatePredictorBacktestExportJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreatePredictorRequest, CreatePredictorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreatePredictorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreatePredictorCommandInput extends CreatePredictorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreatePredictorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreatePredictorCommandOutput extends CreatePredictorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreateWhatIfAnalysisRequest, CreateWhatIfAnalysisResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateWhatIfAnalysisCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateWhatIfAnalysisCommandInput extends CreateWhatIfAnalysisRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateWhatIfAnalysisCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateWhatIfAnalysisCommandOutput extends CreateWhatIfAnalysisResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreateWhatIfForecastRequest, CreateWhatIfForecastResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateWhatIfForecastCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateWhatIfForecastCommandInput extends CreateWhatIfForecastRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateWhatIfForecastCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateWhatIfForecastCommandOutput extends CreateWhatIfForecastResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { CreateWhatIfForecastExportRequest, CreateWhatIfForecastExportResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateWhatIfForecastExportCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateWhatIfForecastExportCommandInput extends CreateWhatIfForecastExportRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateWhatIfForecastExportCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateWhatIfForecastExportCommandOutput extends CreateWhatIfForecastExportResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteDatasetRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDatasetCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDatasetCommandInput extends DeleteDatasetRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDatasetCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDatasetCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteDatasetGroupRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDatasetGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDatasetGroupCommandInput extends DeleteDatasetGroupRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDatasetGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDatasetGroupCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteDatasetImportJobRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteDatasetImportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteDatasetImportJobCommandInput extends DeleteDatasetImportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteDatasetImportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteDatasetImportJobCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteExplainabilityRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteExplainabilityCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteExplainabilityCommandInput extends DeleteExplainabilityRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteExplainabilityCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteExplainabilityCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteExplainabilityExportRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteExplainabilityExportCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteExplainabilityExportCommandInput extends DeleteExplainabilityExportRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteExplainabilityExportCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteExplainabilityExportCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteForecastRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteForecastCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteForecastCommandInput extends DeleteForecastRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteForecastCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteForecastCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteForecastExportJobRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteForecastExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteForecastExportJobCommandInput extends DeleteForecastExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteForecastExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteForecastExportJobCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteMonitorRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteMonitorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteMonitorCommandInput extends DeleteMonitorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteMonitorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteMonitorCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeletePredictorBacktestExportJobRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeletePredictorBacktestExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeletePredictorBacktestExportJobCommandInput extends DeletePredictorBacktestExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeletePredictorBacktestExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeletePredictorBacktestExportJobCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeletePredictorRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeletePredictorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeletePredictorCommandInput extends DeletePredictorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeletePredictorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeletePredictorCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteResourceTreeRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteResourceTreeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteResourceTreeCommandInput extends DeleteResourceTreeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteResourceTreeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteResourceTreeCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteWhatIfAnalysisRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteWhatIfAnalysisCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteWhatIfAnalysisCommandInput extends DeleteWhatIfAnalysisRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteWhatIfAnalysisCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteWhatIfAnalysisCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteWhatIfForecastRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteWhatIfForecastCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteWhatIfForecastCommandInput extends DeleteWhatIfForecastRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteWhatIfForecastCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteWhatIfForecastCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DeleteWhatIfForecastExportRequest } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteWhatIfForecastExportCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteWhatIfForecastExportCommandInput extends DeleteWhatIfForecastExportRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteWhatIfForecastExportCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteWhatIfForecastExportCommandOutput extends __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeAutoPredictorRequest, DescribeAutoPredictorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeAutoPredictorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeAutoPredictorCommandInput extends DescribeAutoPredictorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeAutoPredictorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeAutoPredictorCommandOutput extends DescribeAutoPredictorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDatasetCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDatasetCommandInput extends DescribeDatasetRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDatasetCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDatasetCommandOutput extends DescribeDatasetResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDatasetGroupCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDatasetGroupCommandInput extends DescribeDatasetGroupRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDatasetGroupCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDatasetGroupCommandOutput extends DescribeDatasetGroupResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDatasetImportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDatasetImportJobCommandInput extends DescribeDatasetImportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDatasetImportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDatasetImportJobCommandOutput extends DescribeDatasetImportJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeExplainabilityRequest, DescribeExplainabilityResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeExplainabilityCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeExplainabilityCommandInput extends DescribeExplainabilityRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeExplainabilityCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeExplainabilityCommandOutput extends DescribeExplainabilityResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeExplainabilityExportRequest, DescribeExplainabilityExportResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeExplainabilityExportCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeExplainabilityExportCommandInput extends DescribeExplainabilityExportRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeExplainabilityExportCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeExplainabilityExportCommandOutput extends DescribeExplainabilityExportResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeForecastRequest, DescribeForecastResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeForecastCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeForecastCommandInput extends DescribeForecastRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeForecastCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeForecastCommandOutput extends DescribeForecastResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeForecastExportJobRequest, DescribeForecastExportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeForecastExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeForecastExportJobCommandInput extends DescribeForecastExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeForecastExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeForecastExportJobCommandOutput extends DescribeForecastExportJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeMonitorRequest, DescribeMonitorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeMonitorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeMonitorCommandInput extends DescribeMonitorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeMonitorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeMonitorCommandOutput extends DescribeMonitorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribePredictorBacktestExportJobRequest, DescribePredictorBacktestExportJobResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribePredictorBacktestExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribePredictorBacktestExportJobCommandInput extends DescribePredictorBacktestExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribePredictorBacktestExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribePredictorBacktestExportJobCommandOutput extends DescribePredictorBacktestExportJobResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribePredictorRequest, DescribePredictorResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribePredictorCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribePredictorCommandInput extends DescribePredictorRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribePredictorCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribePredictorCommandOutput extends DescribePredictorResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeWhatIfAnalysisRequest, DescribeWhatIfAnalysisResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeWhatIfAnalysisCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeWhatIfAnalysisCommandInput extends DescribeWhatIfAnalysisRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeWhatIfAnalysisCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeWhatIfAnalysisCommandOutput extends DescribeWhatIfAnalysisResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeWhatIfForecastRequest, DescribeWhatIfForecastResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeWhatIfForecastCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeWhatIfForecastCommandInput extends DescribeWhatIfForecastRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeWhatIfForecastCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeWhatIfForecastCommandOutput extends DescribeWhatIfForecastResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { DescribeWhatIfForecastExportRequest, DescribeWhatIfForecastExportResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeWhatIfForecastExportCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeWhatIfForecastExportCommandInput extends DescribeWhatIfForecastExportRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeWhatIfForecastExportCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeWhatIfForecastExportCommandOutput extends DescribeWhatIfForecastExportResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { GetAccuracyMetricsRequest, GetAccuracyMetricsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetAccuracyMetricsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetAccuracyMetricsCommandInput extends GetAccuracyMetricsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetAccuracyMetricsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetAccuracyMetricsCommandOutput extends GetAccuracyMetricsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListDatasetGroupsRequest, ListDatasetGroupsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDatasetGroupsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDatasetGroupsCommandInput extends ListDatasetGroupsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDatasetGroupsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDatasetGroupsCommandOutput extends ListDatasetGroupsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListDatasetImportJobsRequest, ListDatasetImportJobsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDatasetImportJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDatasetImportJobsCommandInput extends ListDatasetImportJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDatasetImportJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDatasetImportJobsCommandOutput extends ListDatasetImportJobsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|
|
@@ -3,8 +3,14 @@ import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
|
3
3
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
4
|
import { ForecastClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ForecastClient";
|
|
5
5
|
import { ListDatasetsRequest, ListDatasetsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDatasetsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDatasetsCommandInput extends ListDatasetsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDatasetsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDatasetsCommandOutput extends ListDatasetsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|