@aws-sdk/client-customer-profiles 3.1005.0 → 3.1007.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 +28 -0
- package/dist-cjs/index.js +69 -0
- package/dist-cjs/schemas/schemas_0.js +144 -14
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/GetRecommenderFilterCommand.js +16 -0
- package/dist-es/commands/ListRecommenderFiltersCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +8 -0
- package/dist-es/pagination/ListRecommenderFiltersPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +136 -6
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +6 -2
- package/dist-types/commands/CreateRecommenderCommand.d.ts +5 -1
- package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +98 -0
- package/dist-types/commands/DeleteRecommenderFilterCommand.d.ts +90 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +26 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +9 -1
- package/dist-types/commands/GetRecommenderFilterCommand.d.ts +98 -0
- package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +104 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +1 -1
- package/dist-types/commands/ListRecommendersCommand.d.ts +9 -1
- package/dist-types/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/SearchProfilesCommand.d.ts +1 -1
- package/dist-types/commands/StartRecommenderCommand.d.ts +1 -1
- package/dist-types/commands/StartUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/StopRecommenderCommand.d.ts +1 -2
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +297 -465
- package/dist-types/models/models_1.d.ts +465 -2
- package/dist-types/pagination/ListRecommenderFiltersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +17 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderFilterCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderFiltersCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutProfileObjectCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutProfileObjectTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SearchProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +73 -94
- package/dist-types/ts3.4/models/models_1.d.ts +99 -0
- package/dist-types/ts3.4/pagination/ListRecommenderFiltersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +17 -0
- package/package.json +1 -1
|
@@ -47,6 +47,10 @@ import {
|
|
|
47
47
|
CreateRecommenderCommandInput,
|
|
48
48
|
CreateRecommenderCommandOutput,
|
|
49
49
|
} from "./commands/CreateRecommenderCommand";
|
|
50
|
+
import {
|
|
51
|
+
CreateRecommenderFilterCommandInput,
|
|
52
|
+
CreateRecommenderFilterCommandOutput,
|
|
53
|
+
} from "./commands/CreateRecommenderFilterCommand";
|
|
50
54
|
import {
|
|
51
55
|
CreateSegmentDefinitionCommandInput,
|
|
52
56
|
CreateSegmentDefinitionCommandOutput,
|
|
@@ -111,6 +115,10 @@ import {
|
|
|
111
115
|
DeleteRecommenderCommandInput,
|
|
112
116
|
DeleteRecommenderCommandOutput,
|
|
113
117
|
} from "./commands/DeleteRecommenderCommand";
|
|
118
|
+
import {
|
|
119
|
+
DeleteRecommenderFilterCommandInput,
|
|
120
|
+
DeleteRecommenderFilterCommandOutput,
|
|
121
|
+
} from "./commands/DeleteRecommenderFilterCommand";
|
|
114
122
|
import {
|
|
115
123
|
DeleteSegmentDefinitionCommandInput,
|
|
116
124
|
DeleteSegmentDefinitionCommandOutput,
|
|
@@ -191,6 +199,10 @@ import {
|
|
|
191
199
|
GetRecommenderCommandInput,
|
|
192
200
|
GetRecommenderCommandOutput,
|
|
193
201
|
} from "./commands/GetRecommenderCommand";
|
|
202
|
+
import {
|
|
203
|
+
GetRecommenderFilterCommandInput,
|
|
204
|
+
GetRecommenderFilterCommandOutput,
|
|
205
|
+
} from "./commands/GetRecommenderFilterCommand";
|
|
194
206
|
import {
|
|
195
207
|
GetSegmentDefinitionCommandInput,
|
|
196
208
|
GetSegmentDefinitionCommandOutput,
|
|
@@ -295,6 +307,10 @@ import {
|
|
|
295
307
|
ListProfileObjectTypeTemplatesCommandInput,
|
|
296
308
|
ListProfileObjectTypeTemplatesCommandOutput,
|
|
297
309
|
} from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
310
|
+
import {
|
|
311
|
+
ListRecommenderFiltersCommandInput,
|
|
312
|
+
ListRecommenderFiltersCommandOutput,
|
|
313
|
+
} from "./commands/ListRecommenderFiltersCommand";
|
|
298
314
|
import {
|
|
299
315
|
ListRecommenderRecipesCommandInput,
|
|
300
316
|
ListRecommenderRecipesCommandOutput,
|
|
@@ -552,6 +568,19 @@ export interface CustomerProfiles {
|
|
|
552
568
|
options: __HttpHandlerOptions,
|
|
553
569
|
cb: (err: any, data?: CreateRecommenderCommandOutput) => void
|
|
554
570
|
): void;
|
|
571
|
+
createRecommenderFilter(
|
|
572
|
+
args: CreateRecommenderFilterCommandInput,
|
|
573
|
+
options?: __HttpHandlerOptions
|
|
574
|
+
): Promise<CreateRecommenderFilterCommandOutput>;
|
|
575
|
+
createRecommenderFilter(
|
|
576
|
+
args: CreateRecommenderFilterCommandInput,
|
|
577
|
+
cb: (err: any, data?: CreateRecommenderFilterCommandOutput) => void
|
|
578
|
+
): void;
|
|
579
|
+
createRecommenderFilter(
|
|
580
|
+
args: CreateRecommenderFilterCommandInput,
|
|
581
|
+
options: __HttpHandlerOptions,
|
|
582
|
+
cb: (err: any, data?: CreateRecommenderFilterCommandOutput) => void
|
|
583
|
+
): void;
|
|
555
584
|
createSegmentDefinition(
|
|
556
585
|
args: CreateSegmentDefinitionCommandInput,
|
|
557
586
|
options?: __HttpHandlerOptions
|
|
@@ -766,6 +795,19 @@ export interface CustomerProfiles {
|
|
|
766
795
|
options: __HttpHandlerOptions,
|
|
767
796
|
cb: (err: any, data?: DeleteRecommenderCommandOutput) => void
|
|
768
797
|
): void;
|
|
798
|
+
deleteRecommenderFilter(
|
|
799
|
+
args: DeleteRecommenderFilterCommandInput,
|
|
800
|
+
options?: __HttpHandlerOptions
|
|
801
|
+
): Promise<DeleteRecommenderFilterCommandOutput>;
|
|
802
|
+
deleteRecommenderFilter(
|
|
803
|
+
args: DeleteRecommenderFilterCommandInput,
|
|
804
|
+
cb: (err: any, data?: DeleteRecommenderFilterCommandOutput) => void
|
|
805
|
+
): void;
|
|
806
|
+
deleteRecommenderFilter(
|
|
807
|
+
args: DeleteRecommenderFilterCommandInput,
|
|
808
|
+
options: __HttpHandlerOptions,
|
|
809
|
+
cb: (err: any, data?: DeleteRecommenderFilterCommandOutput) => void
|
|
810
|
+
): void;
|
|
769
811
|
deleteSegmentDefinition(
|
|
770
812
|
args: DeleteSegmentDefinitionCommandInput,
|
|
771
813
|
options?: __HttpHandlerOptions
|
|
@@ -1026,6 +1068,19 @@ export interface CustomerProfiles {
|
|
|
1026
1068
|
options: __HttpHandlerOptions,
|
|
1027
1069
|
cb: (err: any, data?: GetRecommenderCommandOutput) => void
|
|
1028
1070
|
): void;
|
|
1071
|
+
getRecommenderFilter(
|
|
1072
|
+
args: GetRecommenderFilterCommandInput,
|
|
1073
|
+
options?: __HttpHandlerOptions
|
|
1074
|
+
): Promise<GetRecommenderFilterCommandOutput>;
|
|
1075
|
+
getRecommenderFilter(
|
|
1076
|
+
args: GetRecommenderFilterCommandInput,
|
|
1077
|
+
cb: (err: any, data?: GetRecommenderFilterCommandOutput) => void
|
|
1078
|
+
): void;
|
|
1079
|
+
getRecommenderFilter(
|
|
1080
|
+
args: GetRecommenderFilterCommandInput,
|
|
1081
|
+
options: __HttpHandlerOptions,
|
|
1082
|
+
cb: (err: any, data?: GetRecommenderFilterCommandOutput) => void
|
|
1083
|
+
): void;
|
|
1029
1084
|
getSegmentDefinition(
|
|
1030
1085
|
args: GetSegmentDefinitionCommandInput,
|
|
1031
1086
|
options?: __HttpHandlerOptions
|
|
@@ -1378,6 +1433,19 @@ export interface CustomerProfiles {
|
|
|
1378
1433
|
options: __HttpHandlerOptions,
|
|
1379
1434
|
cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void
|
|
1380
1435
|
): void;
|
|
1436
|
+
listRecommenderFilters(
|
|
1437
|
+
args: ListRecommenderFiltersCommandInput,
|
|
1438
|
+
options?: __HttpHandlerOptions
|
|
1439
|
+
): Promise<ListRecommenderFiltersCommandOutput>;
|
|
1440
|
+
listRecommenderFilters(
|
|
1441
|
+
args: ListRecommenderFiltersCommandInput,
|
|
1442
|
+
cb: (err: any, data?: ListRecommenderFiltersCommandOutput) => void
|
|
1443
|
+
): void;
|
|
1444
|
+
listRecommenderFilters(
|
|
1445
|
+
args: ListRecommenderFiltersCommandInput,
|
|
1446
|
+
options: __HttpHandlerOptions,
|
|
1447
|
+
cb: (err: any, data?: ListRecommenderFiltersCommandOutput) => void
|
|
1448
|
+
): void;
|
|
1381
1449
|
listRecommenderRecipes(): Promise<ListRecommenderRecipesCommandOutput>;
|
|
1382
1450
|
listRecommenderRecipes(
|
|
1383
1451
|
args: ListRecommenderRecipesCommandInput,
|
|
@@ -1752,6 +1820,13 @@ export interface CustomerProfiles {
|
|
|
1752
1820
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1753
1821
|
>
|
|
1754
1822
|
): Paginator<ListObjectTypeAttributesCommandOutput>;
|
|
1823
|
+
paginateListRecommenderFilters(
|
|
1824
|
+
args: ListRecommenderFiltersCommandInput,
|
|
1825
|
+
paginationConfig?: Pick<
|
|
1826
|
+
PaginationConfiguration,
|
|
1827
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1828
|
+
>
|
|
1829
|
+
): Paginator<ListRecommenderFiltersCommandOutput>;
|
|
1755
1830
|
paginateListRecommenderRecipes(
|
|
1756
1831
|
args?: ListRecommenderRecipesCommandInput,
|
|
1757
1832
|
paginationConfig?: Pick<
|
|
@@ -89,6 +89,10 @@ import {
|
|
|
89
89
|
CreateRecommenderCommandInput,
|
|
90
90
|
CreateRecommenderCommandOutput,
|
|
91
91
|
} from "./commands/CreateRecommenderCommand";
|
|
92
|
+
import {
|
|
93
|
+
CreateRecommenderFilterCommandInput,
|
|
94
|
+
CreateRecommenderFilterCommandOutput,
|
|
95
|
+
} from "./commands/CreateRecommenderFilterCommand";
|
|
92
96
|
import {
|
|
93
97
|
CreateSegmentDefinitionCommandInput,
|
|
94
98
|
CreateSegmentDefinitionCommandOutput,
|
|
@@ -153,6 +157,10 @@ import {
|
|
|
153
157
|
DeleteRecommenderCommandInput,
|
|
154
158
|
DeleteRecommenderCommandOutput,
|
|
155
159
|
} from "./commands/DeleteRecommenderCommand";
|
|
160
|
+
import {
|
|
161
|
+
DeleteRecommenderFilterCommandInput,
|
|
162
|
+
DeleteRecommenderFilterCommandOutput,
|
|
163
|
+
} from "./commands/DeleteRecommenderFilterCommand";
|
|
156
164
|
import {
|
|
157
165
|
DeleteSegmentDefinitionCommandInput,
|
|
158
166
|
DeleteSegmentDefinitionCommandOutput,
|
|
@@ -233,6 +241,10 @@ import {
|
|
|
233
241
|
GetRecommenderCommandInput,
|
|
234
242
|
GetRecommenderCommandOutput,
|
|
235
243
|
} from "./commands/GetRecommenderCommand";
|
|
244
|
+
import {
|
|
245
|
+
GetRecommenderFilterCommandInput,
|
|
246
|
+
GetRecommenderFilterCommandOutput,
|
|
247
|
+
} from "./commands/GetRecommenderFilterCommand";
|
|
236
248
|
import {
|
|
237
249
|
GetSegmentDefinitionCommandInput,
|
|
238
250
|
GetSegmentDefinitionCommandOutput,
|
|
@@ -337,6 +349,10 @@ import {
|
|
|
337
349
|
ListProfileObjectTypeTemplatesCommandInput,
|
|
338
350
|
ListProfileObjectTypeTemplatesCommandOutput,
|
|
339
351
|
} from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
352
|
+
import {
|
|
353
|
+
ListRecommenderFiltersCommandInput,
|
|
354
|
+
ListRecommenderFiltersCommandOutput,
|
|
355
|
+
} from "./commands/ListRecommenderFiltersCommand";
|
|
340
356
|
import {
|
|
341
357
|
ListRecommenderRecipesCommandInput,
|
|
342
358
|
ListRecommenderRecipesCommandOutput,
|
|
@@ -456,6 +472,7 @@ export type ServiceInputTypes =
|
|
|
456
472
|
| CreateIntegrationWorkflowCommandInput
|
|
457
473
|
| CreateProfileCommandInput
|
|
458
474
|
| CreateRecommenderCommandInput
|
|
475
|
+
| CreateRecommenderFilterCommandInput
|
|
459
476
|
| CreateSegmentDefinitionCommandInput
|
|
460
477
|
| CreateSegmentEstimateCommandInput
|
|
461
478
|
| CreateSegmentSnapshotCommandInput
|
|
@@ -472,6 +489,7 @@ export type ServiceInputTypes =
|
|
|
472
489
|
| DeleteProfileObjectCommandInput
|
|
473
490
|
| DeleteProfileObjectTypeCommandInput
|
|
474
491
|
| DeleteRecommenderCommandInput
|
|
492
|
+
| DeleteRecommenderFilterCommandInput
|
|
475
493
|
| DeleteSegmentDefinitionCommandInput
|
|
476
494
|
| DeleteWorkflowCommandInput
|
|
477
495
|
| DetectProfileObjectTypeCommandInput
|
|
@@ -492,6 +510,7 @@ export type ServiceInputTypes =
|
|
|
492
510
|
| GetProfileObjectTypeTemplateCommandInput
|
|
493
511
|
| GetProfileRecommendationsCommandInput
|
|
494
512
|
| GetRecommenderCommandInput
|
|
513
|
+
| GetRecommenderFilterCommandInput
|
|
495
514
|
| GetSegmentDefinitionCommandInput
|
|
496
515
|
| GetSegmentEstimateCommandInput
|
|
497
516
|
| GetSegmentMembershipCommandInput
|
|
@@ -518,6 +537,7 @@ export type ServiceInputTypes =
|
|
|
518
537
|
| ListProfileObjectTypeTemplatesCommandInput
|
|
519
538
|
| ListProfileObjectTypesCommandInput
|
|
520
539
|
| ListProfileObjectsCommandInput
|
|
540
|
+
| ListRecommenderFiltersCommandInput
|
|
521
541
|
| ListRecommenderRecipesCommandInput
|
|
522
542
|
| ListRecommendersCommandInput
|
|
523
543
|
| ListRuleBasedMatchesCommandInput
|
|
@@ -555,6 +575,7 @@ export type ServiceOutputTypes =
|
|
|
555
575
|
| CreateIntegrationWorkflowCommandOutput
|
|
556
576
|
| CreateProfileCommandOutput
|
|
557
577
|
| CreateRecommenderCommandOutput
|
|
578
|
+
| CreateRecommenderFilterCommandOutput
|
|
558
579
|
| CreateSegmentDefinitionCommandOutput
|
|
559
580
|
| CreateSegmentEstimateCommandOutput
|
|
560
581
|
| CreateSegmentSnapshotCommandOutput
|
|
@@ -571,6 +592,7 @@ export type ServiceOutputTypes =
|
|
|
571
592
|
| DeleteProfileObjectCommandOutput
|
|
572
593
|
| DeleteProfileObjectTypeCommandOutput
|
|
573
594
|
| DeleteRecommenderCommandOutput
|
|
595
|
+
| DeleteRecommenderFilterCommandOutput
|
|
574
596
|
| DeleteSegmentDefinitionCommandOutput
|
|
575
597
|
| DeleteWorkflowCommandOutput
|
|
576
598
|
| DetectProfileObjectTypeCommandOutput
|
|
@@ -591,6 +613,7 @@ export type ServiceOutputTypes =
|
|
|
591
613
|
| GetProfileObjectTypeTemplateCommandOutput
|
|
592
614
|
| GetProfileRecommendationsCommandOutput
|
|
593
615
|
| GetRecommenderCommandOutput
|
|
616
|
+
| GetRecommenderFilterCommandOutput
|
|
594
617
|
| GetSegmentDefinitionCommandOutput
|
|
595
618
|
| GetSegmentEstimateCommandOutput
|
|
596
619
|
| GetSegmentMembershipCommandOutput
|
|
@@ -617,6 +640,7 @@ export type ServiceOutputTypes =
|
|
|
617
640
|
| ListProfileObjectTypeTemplatesCommandOutput
|
|
618
641
|
| ListProfileObjectTypesCommandOutput
|
|
619
642
|
| ListProfileObjectsCommandOutput
|
|
643
|
+
| ListRecommenderFiltersCommandOutput
|
|
620
644
|
| ListRecommenderRecipesCommandOutput
|
|
621
645
|
| ListRecommendersCommandOutput
|
|
622
646
|
| ListRuleBasedMatchesCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateRecommenderFilterRequest,
|
|
10
|
+
CreateRecommenderFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateRecommenderFilterCommandInput
|
|
15
|
+
extends CreateRecommenderFilterRequest {}
|
|
16
|
+
export interface CreateRecommenderFilterCommandOutput
|
|
17
|
+
extends CreateRecommenderFilterResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateRecommenderFilterCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateRecommenderFilterCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateRecommenderFilterCommandInput,
|
|
24
|
+
CreateRecommenderFilterCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateRecommenderFilterCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateRecommenderFilterCommandInput,
|
|
33
|
+
CreateRecommenderFilterCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateRecommenderFilterCommand extends CreateRecommenderFilterCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateRecommenderFilterRequest;
|
|
44
|
+
output: CreateRecommenderFilterResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateRecommenderFilterCommandInput;
|
|
48
|
+
output: CreateRecommenderFilterCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteRecommenderFilterRequest,
|
|
10
|
+
DeleteRecommenderFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteRecommenderFilterCommandInput
|
|
15
|
+
extends DeleteRecommenderFilterRequest {}
|
|
16
|
+
export interface DeleteRecommenderFilterCommandOutput
|
|
17
|
+
extends DeleteRecommenderFilterResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteRecommenderFilterCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteRecommenderFilterCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteRecommenderFilterCommandInput,
|
|
24
|
+
DeleteRecommenderFilterCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteRecommenderFilterCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteRecommenderFilterCommandInput,
|
|
33
|
+
DeleteRecommenderFilterCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteRecommenderFilterCommand extends DeleteRecommenderFilterCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteRecommenderFilterRequest;
|
|
44
|
+
output: DeleteRecommenderFilterResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteRecommenderFilterCommandInput;
|
|
48
|
+
output: DeleteRecommenderFilterCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
GetRecommenderFilterRequest,
|
|
10
|
+
GetRecommenderFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetRecommenderFilterCommandInput
|
|
15
|
+
extends GetRecommenderFilterRequest {}
|
|
16
|
+
export interface GetRecommenderFilterCommandOutput
|
|
17
|
+
extends GetRecommenderFilterResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetRecommenderFilterCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetRecommenderFilterCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetRecommenderFilterCommandInput,
|
|
24
|
+
GetRecommenderFilterCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetRecommenderFilterCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetRecommenderFilterCommandInput,
|
|
33
|
+
GetRecommenderFilterCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetRecommenderFilterCommand extends GetRecommenderFilterCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetRecommenderFilterRequest;
|
|
44
|
+
output: GetRecommenderFilterResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetRecommenderFilterCommandInput;
|
|
48
|
+
output: GetRecommenderFilterCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CustomerProfilesClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CustomerProfilesClient";
|
|
8
|
+
import {
|
|
9
|
+
ListRecommenderFiltersRequest,
|
|
10
|
+
ListRecommenderFiltersResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListRecommenderFiltersCommandInput
|
|
15
|
+
extends ListRecommenderFiltersRequest {}
|
|
16
|
+
export interface ListRecommenderFiltersCommandOutput
|
|
17
|
+
extends ListRecommenderFiltersResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListRecommenderFiltersCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListRecommenderFiltersCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListRecommenderFiltersCommandInput,
|
|
24
|
+
ListRecommenderFiltersCommandOutput,
|
|
25
|
+
CustomerProfilesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListRecommenderFiltersCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListRecommenderFiltersCommandInput,
|
|
33
|
+
ListRecommenderFiltersCommandOutput,
|
|
34
|
+
CustomerProfilesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListRecommenderFiltersCommand extends ListRecommenderFiltersCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListRecommenderFiltersRequest;
|
|
44
|
+
output: ListRecommenderFiltersResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListRecommenderFiltersCommandInput;
|
|
48
|
+
output: ListRecommenderFiltersCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PutIntegrationRequest,
|
|
10
10
|
PutIntegrationResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PutIntegrationCommandInput extends PutIntegrationRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
PutProfileObjectRequest,
|
|
10
10
|
PutProfileObjectResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface PutProfileObjectCommandInput extends PutProfileObjectRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
SearchProfilesRequest,
|
|
10
10
|
SearchProfilesResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface SearchProfilesCommandInput extends SearchProfilesRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
StartRecommenderRequest,
|
|
10
10
|
StartRecommenderResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface StartRecommenderCommandInput extends StartRecommenderRequest {}
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
StartUploadJobRequest,
|
|
10
10
|
StartUploadJobResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface StartUploadJobCommandInput extends StartUploadJobRequest {}
|
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CustomerProfilesClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
StopRecommenderRequest,
|
|
10
|
+
StopRecommenderResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface StopRecommenderCommandInput extends StopRecommenderRequest {}
|
|
@@ -9,6 +9,7 @@ export * from "./CreateEventTriggerCommand";
|
|
|
9
9
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
10
10
|
export * from "./CreateProfileCommand";
|
|
11
11
|
export * from "./CreateRecommenderCommand";
|
|
12
|
+
export * from "./CreateRecommenderFilterCommand";
|
|
12
13
|
export * from "./CreateSegmentDefinitionCommand";
|
|
13
14
|
export * from "./CreateSegmentEstimateCommand";
|
|
14
15
|
export * from "./CreateSegmentSnapshotCommand";
|
|
@@ -25,6 +26,7 @@ export * from "./DeleteProfileKeyCommand";
|
|
|
25
26
|
export * from "./DeleteProfileObjectCommand";
|
|
26
27
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
27
28
|
export * from "./DeleteRecommenderCommand";
|
|
29
|
+
export * from "./DeleteRecommenderFilterCommand";
|
|
28
30
|
export * from "./DeleteSegmentDefinitionCommand";
|
|
29
31
|
export * from "./DeleteWorkflowCommand";
|
|
30
32
|
export * from "./DetectProfileObjectTypeCommand";
|
|
@@ -45,6 +47,7 @@ export * from "./GetProfileObjectTypeCommand";
|
|
|
45
47
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
46
48
|
export * from "./GetProfileRecommendationsCommand";
|
|
47
49
|
export * from "./GetRecommenderCommand";
|
|
50
|
+
export * from "./GetRecommenderFilterCommand";
|
|
48
51
|
export * from "./GetSegmentDefinitionCommand";
|
|
49
52
|
export * from "./GetSegmentEstimateCommand";
|
|
50
53
|
export * from "./GetSegmentMembershipCommand";
|
|
@@ -71,6 +74,7 @@ export * from "./ListProfileHistoryRecordsCommand";
|
|
|
71
74
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
72
75
|
export * from "./ListProfileObjectTypesCommand";
|
|
73
76
|
export * from "./ListProfileObjectsCommand";
|
|
77
|
+
export * from "./ListRecommenderFiltersCommand";
|
|
74
78
|
export * from "./ListRecommenderRecipesCommand";
|
|
75
79
|
export * from "./ListRecommendersCommand";
|
|
76
80
|
export * from "./ListRuleBasedMatchesCommand";
|
|
@@ -378,6 +378,7 @@ export declare const WorkflowType: {
|
|
|
378
378
|
export type WorkflowType = (typeof WorkflowType)[keyof typeof WorkflowType];
|
|
379
379
|
export declare const RecommenderRecipeName: {
|
|
380
380
|
readonly FREQUENTLY_PAIRED_ITEMS: "frequently-paired-items";
|
|
381
|
+
readonly PERSONALIZED_RANKING: "personalized-ranking";
|
|
381
382
|
readonly POPULAR_ITEMS: "popular-items";
|
|
382
383
|
readonly RECOMMENDED_FOR_YOU: "recommended-for-you";
|
|
383
384
|
readonly SIMILAR_ITEMS: "similar-items";
|
|
@@ -501,6 +502,15 @@ export declare const TrainingMetricName: {
|
|
|
501
502
|
};
|
|
502
503
|
export type TrainingMetricName =
|
|
503
504
|
(typeof TrainingMetricName)[keyof typeof TrainingMetricName];
|
|
505
|
+
export declare const RecommenderFilterStatus: {
|
|
506
|
+
readonly ACTIVE: "ACTIVE";
|
|
507
|
+
readonly DELETING: "DELETING";
|
|
508
|
+
readonly FAILED: "FAILED";
|
|
509
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
510
|
+
readonly PENDING: "PENDING";
|
|
511
|
+
};
|
|
512
|
+
export type RecommenderFilterStatus =
|
|
513
|
+
(typeof RecommenderFilterStatus)[keyof typeof RecommenderFilterStatus];
|
|
504
514
|
export declare const SegmentType: {
|
|
505
515
|
readonly CLASSIC: "CLASSIC";
|
|
506
516
|
readonly ENHANCED: "ENHANCED";
|