@aws-sdk/client-personalize 3.42.0 → 3.43.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/Personalize.js +120 -0
  3. package/dist-cjs/commands/CreateBatchSegmentJobCommand.js +36 -0
  4. package/dist-cjs/commands/CreateRecommenderCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteRecommenderCommand.js +36 -0
  6. package/dist-cjs/commands/DescribeBatchSegmentJobCommand.js +36 -0
  7. package/dist-cjs/commands/DescribeRecommenderCommand.js +36 -0
  8. package/dist-cjs/commands/ListBatchSegmentJobsCommand.js +36 -0
  9. package/dist-cjs/commands/ListRecommendersCommand.js +36 -0
  10. package/dist-cjs/commands/UpdateRecommenderCommand.js +36 -0
  11. package/dist-cjs/commands/index.js +8 -0
  12. package/dist-cjs/models/models_0.js +147 -3
  13. package/dist-cjs/pagination/ListBatchSegmentJobsPaginator.js +35 -0
  14. package/dist-cjs/pagination/ListRecommendersPaginator.js +35 -0
  15. package/dist-cjs/pagination/index.js +2 -0
  16. package/dist-cjs/protocols/Aws_json1_1.js +891 -28
  17. package/dist-es/Personalize.js +120 -0
  18. package/dist-es/commands/CreateBatchSegmentJobCommand.js +39 -0
  19. package/dist-es/commands/CreateRecommenderCommand.js +39 -0
  20. package/dist-es/commands/DeleteRecommenderCommand.js +39 -0
  21. package/dist-es/commands/DescribeBatchSegmentJobCommand.js +39 -0
  22. package/dist-es/commands/DescribeRecommenderCommand.js +39 -0
  23. package/dist-es/commands/ListBatchSegmentJobsCommand.js +39 -0
  24. package/dist-es/commands/ListRecommendersCommand.js +39 -0
  25. package/dist-es/commands/UpdateRecommenderCommand.js +39 -0
  26. package/dist-es/commands/index.js +8 -0
  27. package/dist-es/models/models_0.js +97 -0
  28. package/dist-es/pagination/ListBatchSegmentJobsPaginator.js +74 -0
  29. package/dist-es/pagination/ListRecommendersPaginator.js +74 -0
  30. package/dist-es/pagination/index.js +2 -0
  31. package/dist-es/protocols/Aws_json1_1.js +944 -38
  32. package/dist-types/Personalize.d.ts +137 -8
  33. package/dist-types/PersonalizeClient.d.ts +10 -2
  34. package/dist-types/commands/CreateBatchSegmentJobCommand.d.ts +36 -0
  35. package/dist-types/commands/CreateCampaignCommand.d.ts +1 -1
  36. package/dist-types/commands/CreateDatasetGroupCommand.d.ts +8 -5
  37. package/dist-types/commands/CreateRecommenderCommand.d.ts +84 -0
  38. package/dist-types/commands/CreateSchemaCommand.d.ts +2 -1
  39. package/dist-types/commands/CreateSolutionVersionCommand.d.ts +1 -1
  40. package/dist-types/commands/DeleteRecommenderCommand.d.ts +36 -0
  41. package/dist-types/commands/DescribeBatchSegmentJobCommand.d.ts +37 -0
  42. package/dist-types/commands/DescribeRecommenderCommand.d.ts +47 -0
  43. package/dist-types/commands/ListBatchSegmentJobsCommand.d.ts +36 -0
  44. package/dist-types/commands/ListRecommendersCommand.d.ts +38 -0
  45. package/dist-types/commands/UpdateRecommenderCommand.d.ts +35 -0
  46. package/dist-types/commands/index.d.ts +8 -0
  47. package/dist-types/models/models_0.d.ts +634 -3
  48. package/dist-types/pagination/ListBatchSegmentJobsPaginator.d.ts +4 -0
  49. package/dist-types/pagination/ListRecommendersPaginator.d.ts +4 -0
  50. package/dist-types/pagination/index.d.ts +2 -0
  51. package/dist-types/protocols/Aws_json1_1.d.ts +24 -0
  52. package/dist-types/ts3.4/Personalize.d.ts +40 -0
  53. package/dist-types/ts3.4/PersonalizeClient.d.ts +10 -2
  54. package/dist-types/ts3.4/commands/CreateBatchSegmentJobCommand.d.ts +17 -0
  55. package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +17 -0
  56. package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +17 -0
  57. package/dist-types/ts3.4/commands/DescribeBatchSegmentJobCommand.d.ts +17 -0
  58. package/dist-types/ts3.4/commands/DescribeRecommenderCommand.d.ts +17 -0
  59. package/dist-types/ts3.4/commands/ListBatchSegmentJobsCommand.d.ts +17 -0
  60. package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +17 -0
  61. package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +17 -0
  62. package/dist-types/ts3.4/commands/index.d.ts +8 -0
  63. package/dist-types/ts3.4/models/models_0.d.ts +322 -0
  64. package/dist-types/ts3.4/pagination/ListBatchSegmentJobsPaginator.d.ts +4 -0
  65. package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +4 -0
  66. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  67. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +24 -0
  68. package/package.json +2 -2
@@ -1,4 +1,5 @@
1
1
  export * from "./CreateBatchInferenceJobCommand";
2
+ export * from "./CreateBatchSegmentJobCommand";
2
3
  export * from "./CreateCampaignCommand";
3
4
  export * from "./CreateDatasetCommand";
4
5
  export * from "./CreateDatasetExportJobCommand";
@@ -6,6 +7,7 @@ export * from "./CreateDatasetGroupCommand";
6
7
  export * from "./CreateDatasetImportJobCommand";
7
8
  export * from "./CreateEventTrackerCommand";
8
9
  export * from "./CreateFilterCommand";
10
+ export * from "./CreateRecommenderCommand";
9
11
  export * from "./CreateSchemaCommand";
10
12
  export * from "./CreateSolutionCommand";
11
13
  export * from "./CreateSolutionVersionCommand";
@@ -14,10 +16,12 @@ export * from "./DeleteDatasetCommand";
14
16
  export * from "./DeleteDatasetGroupCommand";
15
17
  export * from "./DeleteEventTrackerCommand";
16
18
  export * from "./DeleteFilterCommand";
19
+ export * from "./DeleteRecommenderCommand";
17
20
  export * from "./DeleteSchemaCommand";
18
21
  export * from "./DeleteSolutionCommand";
19
22
  export * from "./DescribeAlgorithmCommand";
20
23
  export * from "./DescribeBatchInferenceJobCommand";
24
+ export * from "./DescribeBatchSegmentJobCommand";
21
25
  export * from "./DescribeCampaignCommand";
22
26
  export * from "./DescribeDatasetCommand";
23
27
  export * from "./DescribeDatasetExportJobCommand";
@@ -27,11 +31,13 @@ export * from "./DescribeEventTrackerCommand";
27
31
  export * from "./DescribeFeatureTransformationCommand";
28
32
  export * from "./DescribeFilterCommand";
29
33
  export * from "./DescribeRecipeCommand";
34
+ export * from "./DescribeRecommenderCommand";
30
35
  export * from "./DescribeSchemaCommand";
31
36
  export * from "./DescribeSolutionCommand";
32
37
  export * from "./DescribeSolutionVersionCommand";
33
38
  export * from "./GetSolutionMetricsCommand";
34
39
  export * from "./ListBatchInferenceJobsCommand";
40
+ export * from "./ListBatchSegmentJobsCommand";
35
41
  export * from "./ListCampaignsCommand";
36
42
  export * from "./ListDatasetExportJobsCommand";
37
43
  export * from "./ListDatasetGroupsCommand";
@@ -40,8 +46,10 @@ export * from "./ListDatasetsCommand";
40
46
  export * from "./ListEventTrackersCommand";
41
47
  export * from "./ListFiltersCommand";
42
48
  export * from "./ListRecipesCommand";
49
+ export * from "./ListRecommendersCommand";
43
50
  export * from "./ListSchemasCommand";
44
51
  export * from "./ListSolutionVersionsCommand";
45
52
  export * from "./ListSolutionsCommand";
46
53
  export * from "./StopSolutionVersionCreationCommand";
47
54
  export * from "./UpdateCampaignCommand";
55
+ export * from "./UpdateRecommenderCommand";
@@ -218,6 +218,52 @@ export declare namespace ResourceNotFoundException {
218
218
  const filterSensitiveLog: (obj: ResourceNotFoundException) => any;
219
219
  }
220
220
 
221
+ export interface BatchSegmentJobInput {
222
+
223
+ s3DataSource: S3DataConfig | undefined;
224
+ }
225
+ export declare namespace BatchSegmentJobInput {
226
+
227
+ const filterSensitiveLog: (obj: BatchSegmentJobInput) => any;
228
+ }
229
+
230
+ export interface BatchSegmentJobOutput {
231
+
232
+ s3DataDestination: S3DataConfig | undefined;
233
+ }
234
+ export declare namespace BatchSegmentJobOutput {
235
+
236
+ const filterSensitiveLog: (obj: BatchSegmentJobOutput) => any;
237
+ }
238
+ export interface CreateBatchSegmentJobRequest {
239
+
240
+ jobName: string | undefined;
241
+
242
+ solutionVersionArn: string | undefined;
243
+
244
+ filterArn?: string;
245
+
246
+ numResults?: number;
247
+
248
+ jobInput: BatchSegmentJobInput | undefined;
249
+
250
+ jobOutput: BatchSegmentJobOutput | undefined;
251
+
252
+ roleArn: string | undefined;
253
+ }
254
+ export declare namespace CreateBatchSegmentJobRequest {
255
+
256
+ const filterSensitiveLog: (obj: CreateBatchSegmentJobRequest) => any;
257
+ }
258
+ export interface CreateBatchSegmentJobResponse {
259
+
260
+ batchSegmentJobArn?: string;
261
+ }
262
+ export declare namespace CreateBatchSegmentJobResponse {
263
+
264
+ const filterSensitiveLog: (obj: CreateBatchSegmentJobResponse) => any;
265
+ }
266
+
221
267
  export interface CampaignConfig {
222
268
 
223
269
  itemExplorationConfig?: {
@@ -310,6 +356,10 @@ export declare namespace CreateDatasetExportJobResponse {
310
356
 
311
357
  const filterSensitiveLog: (obj: CreateDatasetExportJobResponse) => any;
312
358
  }
359
+ export declare enum Domain {
360
+ ECOMMERCE = "ECOMMERCE",
361
+ VIDEO_ON_DEMAND = "VIDEO_ON_DEMAND"
362
+ }
313
363
  export interface CreateDatasetGroupRequest {
314
364
 
315
365
  name: string | undefined;
@@ -317,6 +367,8 @@ export interface CreateDatasetGroupRequest {
317
367
  roleArn?: string;
318
368
 
319
369
  kmsKeyArn?: string;
370
+
371
+ domain?: Domain | string;
320
372
  }
321
373
  export declare namespace CreateDatasetGroupRequest {
322
374
 
@@ -325,6 +377,8 @@ export declare namespace CreateDatasetGroupRequest {
325
377
  export interface CreateDatasetGroupResponse {
326
378
 
327
379
  datasetGroupArn?: string;
380
+
381
+ domain?: Domain | string;
328
382
  }
329
383
  export declare namespace CreateDatasetGroupResponse {
330
384
 
@@ -401,11 +455,46 @@ export declare namespace CreateFilterResponse {
401
455
 
402
456
  const filterSensitiveLog: (obj: CreateFilterResponse) => any;
403
457
  }
458
+
459
+ export interface RecommenderConfig {
460
+
461
+ itemExplorationConfig?: {
462
+ [key: string]: string;
463
+ };
464
+ }
465
+ export declare namespace RecommenderConfig {
466
+
467
+ const filterSensitiveLog: (obj: RecommenderConfig) => any;
468
+ }
469
+ export interface CreateRecommenderRequest {
470
+
471
+ name: string | undefined;
472
+
473
+ datasetGroupArn: string | undefined;
474
+
475
+ recipeArn: string | undefined;
476
+
477
+ recommenderConfig?: RecommenderConfig;
478
+ }
479
+ export declare namespace CreateRecommenderRequest {
480
+
481
+ const filterSensitiveLog: (obj: CreateRecommenderRequest) => any;
482
+ }
483
+ export interface CreateRecommenderResponse {
484
+
485
+ recommenderArn?: string;
486
+ }
487
+ export declare namespace CreateRecommenderResponse {
488
+
489
+ const filterSensitiveLog: (obj: CreateRecommenderResponse) => any;
490
+ }
404
491
  export interface CreateSchemaRequest {
405
492
 
406
493
  name: string | undefined;
407
494
 
408
495
  schema: string | undefined;
496
+
497
+ domain?: Domain | string;
409
498
  }
410
499
  export declare namespace CreateSchemaRequest {
411
500
 
@@ -647,6 +736,14 @@ export declare namespace DeleteFilterRequest {
647
736
 
648
737
  const filterSensitiveLog: (obj: DeleteFilterRequest) => any;
649
738
  }
739
+ export interface DeleteRecommenderRequest {
740
+
741
+ recommenderArn: string | undefined;
742
+ }
743
+ export declare namespace DeleteRecommenderRequest {
744
+
745
+ const filterSensitiveLog: (obj: DeleteRecommenderRequest) => any;
746
+ }
650
747
  export interface DeleteSchemaRequest {
651
748
 
652
749
  schemaArn: string | undefined;
@@ -728,6 +825,53 @@ export declare namespace DescribeBatchInferenceJobResponse {
728
825
 
729
826
  const filterSensitiveLog: (obj: DescribeBatchInferenceJobResponse) => any;
730
827
  }
828
+ export interface DescribeBatchSegmentJobRequest {
829
+
830
+ batchSegmentJobArn: string | undefined;
831
+ }
832
+ export declare namespace DescribeBatchSegmentJobRequest {
833
+
834
+ const filterSensitiveLog: (obj: DescribeBatchSegmentJobRequest) => any;
835
+ }
836
+
837
+ export interface BatchSegmentJob {
838
+
839
+ jobName?: string;
840
+
841
+ batchSegmentJobArn?: string;
842
+
843
+ filterArn?: string;
844
+
845
+ failureReason?: string;
846
+
847
+ solutionVersionArn?: string;
848
+
849
+ numResults?: number;
850
+
851
+ jobInput?: BatchSegmentJobInput;
852
+
853
+ jobOutput?: BatchSegmentJobOutput;
854
+
855
+ roleArn?: string;
856
+
857
+ status?: string;
858
+
859
+ creationDateTime?: Date;
860
+
861
+ lastUpdatedDateTime?: Date;
862
+ }
863
+ export declare namespace BatchSegmentJob {
864
+
865
+ const filterSensitiveLog: (obj: BatchSegmentJob) => any;
866
+ }
867
+ export interface DescribeBatchSegmentJobResponse {
868
+
869
+ batchSegmentJob?: BatchSegmentJob;
870
+ }
871
+ export declare namespace DescribeBatchSegmentJobResponse {
872
+
873
+ const filterSensitiveLog: (obj: DescribeBatchSegmentJobResponse) => any;
874
+ }
731
875
  export interface DescribeCampaignRequest {
732
876
 
733
877
  campaignArn: string | undefined;
@@ -900,6 +1044,8 @@ export interface DatasetGroup {
900
1044
  lastUpdatedDateTime?: Date;
901
1045
 
902
1046
  failureReason?: string;
1047
+
1048
+ domain?: Domain | string;
903
1049
  }
904
1050
  export declare namespace DatasetGroup {
905
1051
 
@@ -1110,6 +1256,66 @@ export declare namespace DescribeRecipeResponse {
1110
1256
 
1111
1257
  const filterSensitiveLog: (obj: DescribeRecipeResponse) => any;
1112
1258
  }
1259
+ export interface DescribeRecommenderRequest {
1260
+
1261
+ recommenderArn: string | undefined;
1262
+ }
1263
+ export declare namespace DescribeRecommenderRequest {
1264
+
1265
+ const filterSensitiveLog: (obj: DescribeRecommenderRequest) => any;
1266
+ }
1267
+
1268
+ export interface RecommenderUpdateSummary {
1269
+
1270
+ recommenderConfig?: RecommenderConfig;
1271
+
1272
+ creationDateTime?: Date;
1273
+
1274
+ lastUpdatedDateTime?: Date;
1275
+
1276
+ status?: string;
1277
+
1278
+ failureReason?: string;
1279
+ }
1280
+ export declare namespace RecommenderUpdateSummary {
1281
+
1282
+ const filterSensitiveLog: (obj: RecommenderUpdateSummary) => any;
1283
+ }
1284
+
1285
+ export interface Recommender {
1286
+
1287
+ recommenderArn?: string;
1288
+
1289
+ datasetGroupArn?: string;
1290
+
1291
+ name?: string;
1292
+
1293
+ recipeArn?: string;
1294
+
1295
+ recommenderConfig?: RecommenderConfig;
1296
+
1297
+ creationDateTime?: Date;
1298
+
1299
+ lastUpdatedDateTime?: Date;
1300
+
1301
+ status?: string;
1302
+
1303
+ failureReason?: string;
1304
+
1305
+ latestRecommenderUpdate?: RecommenderUpdateSummary;
1306
+ }
1307
+ export declare namespace Recommender {
1308
+
1309
+ const filterSensitiveLog: (obj: Recommender) => any;
1310
+ }
1311
+ export interface DescribeRecommenderResponse {
1312
+
1313
+ recommender?: Recommender;
1314
+ }
1315
+ export declare namespace DescribeRecommenderResponse {
1316
+
1317
+ const filterSensitiveLog: (obj: DescribeRecommenderResponse) => any;
1318
+ }
1113
1319
  export interface DescribeSchemaRequest {
1114
1320
 
1115
1321
  schemaArn: string | undefined;
@@ -1130,6 +1336,8 @@ export interface DatasetSchema {
1130
1336
  creationDateTime?: Date;
1131
1337
 
1132
1338
  lastUpdatedDateTime?: Date;
1339
+
1340
+ domain?: Domain | string;
1133
1341
  }
1134
1342
  export declare namespace DatasetSchema {
1135
1343
 
@@ -1355,6 +1563,49 @@ export declare namespace ListBatchInferenceJobsResponse {
1355
1563
 
1356
1564
  const filterSensitiveLog: (obj: ListBatchInferenceJobsResponse) => any;
1357
1565
  }
1566
+ export interface ListBatchSegmentJobsRequest {
1567
+
1568
+ solutionVersionArn?: string;
1569
+
1570
+ nextToken?: string;
1571
+
1572
+ maxResults?: number;
1573
+ }
1574
+ export declare namespace ListBatchSegmentJobsRequest {
1575
+
1576
+ const filterSensitiveLog: (obj: ListBatchSegmentJobsRequest) => any;
1577
+ }
1578
+
1579
+ export interface BatchSegmentJobSummary {
1580
+
1581
+ batchSegmentJobArn?: string;
1582
+
1583
+ jobName?: string;
1584
+
1585
+ status?: string;
1586
+
1587
+ creationDateTime?: Date;
1588
+
1589
+ lastUpdatedDateTime?: Date;
1590
+
1591
+ failureReason?: string;
1592
+
1593
+ solutionVersionArn?: string;
1594
+ }
1595
+ export declare namespace BatchSegmentJobSummary {
1596
+
1597
+ const filterSensitiveLog: (obj: BatchSegmentJobSummary) => any;
1598
+ }
1599
+ export interface ListBatchSegmentJobsResponse {
1600
+
1601
+ batchSegmentJobs?: BatchSegmentJobSummary[];
1602
+
1603
+ nextToken?: string;
1604
+ }
1605
+ export declare namespace ListBatchSegmentJobsResponse {
1606
+
1607
+ const filterSensitiveLog: (obj: ListBatchSegmentJobsResponse) => any;
1608
+ }
1358
1609
  export interface ListCampaignsRequest {
1359
1610
 
1360
1611
  solutionArn?: string;
@@ -1461,6 +1712,8 @@ export interface DatasetGroupSummary {
1461
1712
  lastUpdatedDateTime?: Date;
1462
1713
 
1463
1714
  failureReason?: string;
1715
+
1716
+ domain?: Domain | string;
1464
1717
  }
1465
1718
  export declare namespace DatasetGroupSummary {
1466
1719
 
@@ -1650,6 +1903,8 @@ export interface ListRecipesRequest {
1650
1903
  nextToken?: string;
1651
1904
 
1652
1905
  maxResults?: number;
1906
+
1907
+ domain?: Domain | string;
1653
1908
  }
1654
1909
  export declare namespace ListRecipesRequest {
1655
1910
 
@@ -1667,6 +1922,8 @@ export interface RecipeSummary {
1667
1922
  creationDateTime?: Date;
1668
1923
 
1669
1924
  lastUpdatedDateTime?: Date;
1925
+
1926
+ domain?: Domain | string;
1670
1927
  }
1671
1928
  export declare namespace RecipeSummary {
1672
1929
 
@@ -1682,6 +1939,51 @@ export declare namespace ListRecipesResponse {
1682
1939
 
1683
1940
  const filterSensitiveLog: (obj: ListRecipesResponse) => any;
1684
1941
  }
1942
+ export interface ListRecommendersRequest {
1943
+
1944
+ datasetGroupArn?: string;
1945
+
1946
+ nextToken?: string;
1947
+
1948
+ maxResults?: number;
1949
+ }
1950
+ export declare namespace ListRecommendersRequest {
1951
+
1952
+ const filterSensitiveLog: (obj: ListRecommendersRequest) => any;
1953
+ }
1954
+
1955
+ export interface RecommenderSummary {
1956
+
1957
+ name?: string;
1958
+
1959
+ recommenderArn?: string;
1960
+
1961
+ datasetGroupArn?: string;
1962
+
1963
+ recipeArn?: string;
1964
+
1965
+ recommenderConfig?: RecommenderConfig;
1966
+
1967
+ status?: string;
1968
+
1969
+ creationDateTime?: Date;
1970
+
1971
+ lastUpdatedDateTime?: Date;
1972
+ }
1973
+ export declare namespace RecommenderSummary {
1974
+
1975
+ const filterSensitiveLog: (obj: RecommenderSummary) => any;
1976
+ }
1977
+ export interface ListRecommendersResponse {
1978
+
1979
+ recommenders?: RecommenderSummary[];
1980
+
1981
+ nextToken?: string;
1982
+ }
1983
+ export declare namespace ListRecommendersResponse {
1984
+
1985
+ const filterSensitiveLog: (obj: ListRecommendersResponse) => any;
1986
+ }
1685
1987
  export interface ListSchemasRequest {
1686
1988
 
1687
1989
  nextToken?: string;
@@ -1702,6 +2004,8 @@ export interface DatasetSchemaSummary {
1702
2004
  creationDateTime?: Date;
1703
2005
 
1704
2006
  lastUpdatedDateTime?: Date;
2007
+
2008
+ domain?: Domain | string;
1705
2009
  }
1706
2010
  export declare namespace DatasetSchemaSummary {
1707
2011
 
@@ -1808,3 +2112,21 @@ export declare namespace UpdateCampaignResponse {
1808
2112
 
1809
2113
  const filterSensitiveLog: (obj: UpdateCampaignResponse) => any;
1810
2114
  }
2115
+ export interface UpdateRecommenderRequest {
2116
+
2117
+ recommenderArn: string | undefined;
2118
+
2119
+ recommenderConfig: RecommenderConfig | undefined;
2120
+ }
2121
+ export declare namespace UpdateRecommenderRequest {
2122
+
2123
+ const filterSensitiveLog: (obj: UpdateRecommenderRequest) => any;
2124
+ }
2125
+ export interface UpdateRecommenderResponse {
2126
+
2127
+ recommenderArn?: string;
2128
+ }
2129
+ export declare namespace UpdateRecommenderResponse {
2130
+
2131
+ const filterSensitiveLog: (obj: UpdateRecommenderResponse) => any;
2132
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListBatchSegmentJobsCommandInput, ListBatchSegmentJobsCommandOutput } from "../commands/ListBatchSegmentJobsCommand";
3
+ import { PersonalizePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListBatchSegmentJobs(config: PersonalizePaginationConfiguration, input: ListBatchSegmentJobsCommandInput, ...additionalArguments: any): Paginator<ListBatchSegmentJobsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "../commands/ListRecommendersCommand";
3
+ import { PersonalizePaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListRecommenders(config: PersonalizePaginationConfiguration, input: ListRecommendersCommandInput, ...additionalArguments: any): Paginator<ListRecommendersCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListBatchInferenceJobsPaginator";
3
+ export * from "./ListBatchSegmentJobsPaginator";
3
4
  export * from "./ListCampaignsPaginator";
4
5
  export * from "./ListDatasetExportJobsPaginator";
5
6
  export * from "./ListDatasetGroupsPaginator";
@@ -8,6 +9,7 @@ export * from "./ListDatasetsPaginator";
8
9
  export * from "./ListEventTrackersPaginator";
9
10
  export * from "./ListFiltersPaginator";
10
11
  export * from "./ListRecipesPaginator";
12
+ export * from "./ListRecommendersPaginator";
11
13
  export * from "./ListSchemasPaginator";
12
14
  export * from "./ListSolutionVersionsPaginator";
13
15
  export * from "./ListSolutionsPaginator";