@aws-sdk/client-personalize 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 +531 -0
- package/dist-types/commands/CreateBatchInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateBatchSegmentJobCommand.d.ts +6 -0
- package/dist-types/commands/CreateCampaignCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetCommand.d.ts +6 -0
- package/dist-types/commands/CreateDatasetExportJobCommand.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/CreateEventTrackerCommand.d.ts +6 -0
- package/dist-types/commands/CreateFilterCommand.d.ts +6 -0
- package/dist-types/commands/CreateMetricAttributionCommand.d.ts +6 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +6 -0
- package/dist-types/commands/CreateSolutionCommand.d.ts +6 -0
- package/dist-types/commands/CreateSolutionVersionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCampaignCommand.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/DeleteEventTrackerCommand.d.ts +6 -0
- package/dist-types/commands/DeleteFilterCommand.d.ts +6 -0
- package/dist-types/commands/DeleteMetricAttributionCommand.d.ts +6 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +6 -0
- package/dist-types/commands/DeleteSolutionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAlgorithmCommand.d.ts +6 -0
- package/dist-types/commands/DescribeBatchInferenceJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeBatchSegmentJobCommand.d.ts +6 -0
- package/dist-types/commands/DescribeCampaignCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetCommand.d.ts +6 -0
- package/dist-types/commands/DescribeDatasetExportJobCommand.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/DescribeEventTrackerCommand.d.ts +6 -0
- package/dist-types/commands/DescribeFeatureTransformationCommand.d.ts +6 -0
- package/dist-types/commands/DescribeFilterCommand.d.ts +6 -0
- package/dist-types/commands/DescribeMetricAttributionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeRecipeCommand.d.ts +6 -0
- package/dist-types/commands/DescribeRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/DescribeSchemaCommand.d.ts +6 -0
- package/dist-types/commands/DescribeSolutionCommand.d.ts +6 -0
- package/dist-types/commands/DescribeSolutionVersionCommand.d.ts +6 -0
- package/dist-types/commands/GetSolutionMetricsCommand.d.ts +6 -0
- package/dist-types/commands/ListBatchInferenceJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListBatchSegmentJobsCommand.d.ts +6 -0
- package/dist-types/commands/ListCampaignsCommand.d.ts +6 -0
- package/dist-types/commands/ListDatasetExportJobsCommand.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/ListEventTrackersCommand.d.ts +6 -0
- package/dist-types/commands/ListFiltersCommand.d.ts +6 -0
- package/dist-types/commands/ListMetricAttributionMetricsCommand.d.ts +6 -0
- package/dist-types/commands/ListMetricAttributionsCommand.d.ts +6 -0
- package/dist-types/commands/ListRecipesCommand.d.ts +6 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +6 -0
- package/dist-types/commands/ListSchemasCommand.d.ts +6 -0
- package/dist-types/commands/ListSolutionVersionsCommand.d.ts +6 -0
- package/dist-types/commands/ListSolutionsCommand.d.ts +6 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -0
- package/dist-types/commands/StartRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/StopSolutionVersionCreationCommand.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/UpdateCampaignCommand.d.ts +6 -0
- package/dist-types/commands/UpdateMetricAttributionCommand.d.ts +6 -0
- package/dist-types/commands/UpdateRecommenderCommand.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 { CreateDatasetImportJobRequest, CreateDatasetImportJobResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateDatasetImportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateDatasetImportJobCommandInput extends CreateDatasetImportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateDatasetImportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateDatasetImportJobCommandOutput extends CreateDatasetImportJobResponse, __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 { CreateEventTrackerRequest, CreateEventTrackerResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateEventTrackerCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateEventTrackerCommandInput extends CreateEventTrackerRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateEventTrackerCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateEventTrackerCommandOutput extends CreateEventTrackerResponse, __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 { CreateFilterRequest, CreateFilterResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateFilterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateFilterCommandInput extends CreateFilterRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateFilterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateFilterCommandOutput extends CreateFilterResponse, __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 { CreateMetricAttributionRequest, CreateMetricAttributionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateMetricAttributionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateMetricAttributionCommandInput extends CreateMetricAttributionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateMetricAttributionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateMetricAttributionCommandOutput extends CreateMetricAttributionResponse, __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 { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateRecommenderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateRecommenderCommandInput extends CreateRecommenderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateRecommenderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateRecommenderCommandOutput extends CreateRecommenderResponse, __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 { CreateSchemaRequest, CreateSchemaResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateSchemaCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateSchemaCommandInput extends CreateSchemaRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateSchemaCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateSchemaCommandOutput extends CreateSchemaResponse, __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 { CreateSolutionRequest, CreateSolutionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateSolutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateSolutionCommandInput extends CreateSolutionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateSolutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateSolutionCommandOutput extends CreateSolutionResponse, __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 { CreateSolutionVersionRequest, CreateSolutionVersionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link CreateSolutionVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface CreateSolutionVersionCommandInput extends CreateSolutionVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link CreateSolutionVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface CreateSolutionVersionCommandOutput extends CreateSolutionVersionResponse, __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 { DeleteCampaignRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteCampaignCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteCampaignCommandInput extends DeleteCampaignRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteCampaignCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteCampaignCommandOutput 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 { DeleteDatasetRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
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 { DeleteDatasetGroupRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
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 { DeleteEventTrackerRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteEventTrackerCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteEventTrackerCommandInput extends DeleteEventTrackerRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteEventTrackerCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteEventTrackerCommandOutput 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 { DeleteFilterRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteFilterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteFilterCommandInput extends DeleteFilterRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteFilterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteFilterCommandOutput 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 { DeleteMetricAttributionRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteMetricAttributionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteMetricAttributionCommandInput extends DeleteMetricAttributionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteMetricAttributionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteMetricAttributionCommandOutput 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 { DeleteRecommenderRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteRecommenderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteRecommenderCommandInput extends DeleteRecommenderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteRecommenderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteRecommenderCommandOutput 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 { DeleteSchemaRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteSchemaCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteSchemaCommandInput extends DeleteSchemaRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteSchemaCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteSchemaCommandOutput 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 { DeleteSolutionRequest } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DeleteSolutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DeleteSolutionCommandInput extends DeleteSolutionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DeleteSolutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DeleteSolutionCommandOutput 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 { DescribeAlgorithmRequest, DescribeAlgorithmResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeAlgorithmCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeAlgorithmCommandInput extends DescribeAlgorithmRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeAlgorithmCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeAlgorithmCommandOutput extends DescribeAlgorithmResponse, __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 { DescribeBatchInferenceJobRequest, DescribeBatchInferenceJobResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeBatchInferenceJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeBatchInferenceJobCommandInput extends DescribeBatchInferenceJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeBatchInferenceJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeBatchInferenceJobCommandOutput extends DescribeBatchInferenceJobResponse, __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 { DescribeBatchSegmentJobRequest, DescribeBatchSegmentJobResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeBatchSegmentJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeBatchSegmentJobCommandInput extends DescribeBatchSegmentJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeBatchSegmentJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeBatchSegmentJobCommandOutput extends DescribeBatchSegmentJobResponse, __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 { DescribeCampaignRequest, DescribeCampaignResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeCampaignCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeCampaignCommandInput extends DescribeCampaignRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeCampaignCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeCampaignCommandOutput extends DescribeCampaignResponse, __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 { DescribeDatasetRequest, DescribeDatasetResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
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 { DescribeDatasetExportJobRequest, DescribeDatasetExportJobResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeDatasetExportJobCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeDatasetExportJobCommandInput extends DescribeDatasetExportJobRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeDatasetExportJobCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeDatasetExportJobCommandOutput extends DescribeDatasetExportJobResponse, __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 { DescribeDatasetGroupRequest, DescribeDatasetGroupResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
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 { DescribeDatasetImportJobRequest, DescribeDatasetImportJobResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
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 { DescribeEventTrackerRequest, DescribeEventTrackerResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeEventTrackerCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeEventTrackerCommandInput extends DescribeEventTrackerRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeEventTrackerCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeEventTrackerCommandOutput extends DescribeEventTrackerResponse, __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 { DescribeFeatureTransformationRequest, DescribeFeatureTransformationResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeFeatureTransformationCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeFeatureTransformationCommandInput extends DescribeFeatureTransformationRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeFeatureTransformationCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeFeatureTransformationCommandOutput extends DescribeFeatureTransformationResponse, __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 { DescribeFilterRequest, DescribeFilterResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeFilterCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeFilterCommandInput extends DescribeFilterRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeFilterCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeFilterCommandOutput extends DescribeFilterResponse, __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 { DescribeMetricAttributionRequest, DescribeMetricAttributionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeMetricAttributionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeMetricAttributionCommandInput extends DescribeMetricAttributionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeMetricAttributionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeMetricAttributionCommandOutput extends DescribeMetricAttributionResponse, __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 { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeRecipeCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeRecipeCommandInput extends DescribeRecipeRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeRecipeCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __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 { DescribeRecommenderRequest, DescribeRecommenderResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeRecommenderCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeRecommenderCommandInput extends DescribeRecommenderRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeRecommenderCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeRecommenderCommandOutput extends DescribeRecommenderResponse, __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 { DescribeSchemaRequest, DescribeSchemaResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeSchemaCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeSchemaCommandInput extends DescribeSchemaRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeSchemaCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeSchemaCommandOutput extends DescribeSchemaResponse, __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 { DescribeSolutionRequest, DescribeSolutionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeSolutionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeSolutionCommandInput extends DescribeSolutionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeSolutionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeSolutionCommandOutput extends DescribeSolutionResponse, __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 { DescribeSolutionVersionRequest, DescribeSolutionVersionResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link DescribeSolutionVersionCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface DescribeSolutionVersionCommandInput extends DescribeSolutionVersionRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link DescribeSolutionVersionCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface DescribeSolutionVersionCommandOutput extends DescribeSolutionVersionResponse, __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 { GetSolutionMetricsRequest, GetSolutionMetricsResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link GetSolutionMetricsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface GetSolutionMetricsCommandInput extends GetSolutionMetricsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link GetSolutionMetricsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface GetSolutionMetricsCommandOutput extends GetSolutionMetricsResponse, __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 { ListBatchInferenceJobsRequest, ListBatchInferenceJobsResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListBatchInferenceJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListBatchInferenceJobsCommandInput extends ListBatchInferenceJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListBatchInferenceJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListBatchInferenceJobsCommandOutput extends ListBatchInferenceJobsResponse, __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 { ListBatchSegmentJobsRequest, ListBatchSegmentJobsResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListBatchSegmentJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListBatchSegmentJobsCommandInput extends ListBatchSegmentJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListBatchSegmentJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListBatchSegmentJobsCommandOutput extends ListBatchSegmentJobsResponse, __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 { ListCampaignsRequest, ListCampaignsResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListCampaignsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListCampaignsCommandInput extends ListCampaignsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListCampaignsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListCampaignsCommandOutput extends ListCampaignsResponse, __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 { ListDatasetExportJobsRequest, ListDatasetExportJobsResponse } from "../models/models_0";
|
|
5
5
|
import { PersonalizeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PersonalizeClient";
|
|
6
|
+
/**
|
|
7
|
+
* The input for {@link ListDatasetExportJobsCommand}.
|
|
8
|
+
*/
|
|
6
9
|
export interface ListDatasetExportJobsCommandInput extends ListDatasetExportJobsRequest {
|
|
7
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* The output of {@link ListDatasetExportJobsCommand}.
|
|
13
|
+
*/
|
|
8
14
|
export interface ListDatasetExportJobsCommandOutput extends ListDatasetExportJobsResponse, __MetadataBearer {
|
|
9
15
|
}
|
|
10
16
|
/**
|