@aws-sdk/client-customer-profiles 3.940.0 → 3.942.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 +120 -0
- package/dist-cjs/index.js +1058 -84
- package/dist-es/CustomerProfiles.js +30 -0
- package/dist-es/commands/CreateRecommenderCommand.js +16 -0
- package/dist-es/commands/DeleteDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderCommand.js +16 -0
- package/dist-es/commands/GetDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/GetObjectTypeAttributeStatisticsCommand.js +16 -0
- package/dist-es/commands/GetProfileRecommendationsCommand.js +16 -0
- package/dist-es/commands/GetRecommenderCommand.js +16 -0
- package/dist-es/commands/ListDomainObjectTypesCommand.js +16 -0
- package/dist-es/commands/ListObjectTypeAttributeValuesCommand.js +16 -0
- package/dist-es/commands/ListRecommenderRecipesCommand.js +16 -0
- package/dist-es/commands/ListRecommendersCommand.js +16 -0
- package/dist-es/commands/PutDomainObjectTypeCommand.js +16 -0
- package/dist-es/commands/StartRecommenderCommand.js +16 -0
- package/dist-es/commands/StopRecommenderCommand.js +16 -0
- package/dist-es/commands/UpdateRecommenderCommand.js +16 -0
- package/dist-es/commands/index.js +15 -0
- package/dist-es/models/enums.js +41 -0
- package/dist-es/models/models_1.js +1 -0
- package/dist-es/pagination/ListDomainObjectTypesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommenderRecipesPaginator.js +4 -0
- package/dist-es/pagination/ListRecommendersPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/schemas/schemas_0.js +792 -84
- package/dist-types/CustomerProfiles.d.ts +106 -0
- package/dist-types/CustomerProfilesClient.d.ts +17 -2
- package/dist-types/commands/CreateDomainCommand.d.ts +10 -0
- package/dist-types/commands/CreateRecommenderCommand.d.ts +109 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +1 -0
- package/dist-types/commands/CreateSegmentEstimateCommand.d.ts +1 -0
- package/dist-types/commands/DeleteDomainObjectTypeCommand.d.ts +88 -0
- package/dist-types/commands/DeleteRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/GetDomainCommand.d.ts +7 -0
- package/dist-types/commands/GetDomainObjectTypeCommand.d.ts +105 -0
- package/dist-types/commands/GetIntegrationCommand.d.ts +1 -0
- package/dist-types/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +110 -0
- package/dist-types/commands/GetProfileRecommendationsCommand.d.ts +116 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +136 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +2 -0
- package/dist-types/commands/GetSegmentMembershipCommand.d.ts +1 -0
- package/dist-types/commands/ListAccountIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListDomainObjectTypesCommand.d.ts +102 -0
- package/dist-types/commands/ListIntegrationsCommand.d.ts +1 -0
- package/dist-types/commands/ListObjectTypeAttributeValuesCommand.d.ts +99 -0
- package/dist-types/commands/ListRecommenderRecipesCommand.d.ts +93 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +133 -0
- package/dist-types/commands/ListSegmentDefinitionsCommand.d.ts +1 -0
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +118 -0
- package/dist-types/commands/PutIntegrationCommand.d.ts +5 -3
- package/dist-types/commands/StartRecommenderCommand.d.ts +88 -0
- package/dist-types/commands/StopRecommenderCommand.d.ts +89 -0
- package/dist-types/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDomainCommand.d.ts +11 -1
- package/dist-types/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +102 -0
- package/dist-types/commands/index.d.ts +15 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +97 -0
- package/dist-types/models/models_0.d.ts +1084 -738
- package/dist-types/models/models_1.d.ts +744 -0
- package/dist-types/pagination/ListDomainObjectTypesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommenderRecipesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListRecommendersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/schemas/schemas_0.d.ts +74 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +256 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +92 -2
- package/dist-types/ts3.4/commands/CreateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetObjectTypeAttributeStatisticsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileRecommendationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListDomainObjectTypesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListObjectTypeAttributeValuesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderRecipesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommendersCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartRecommenderCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StopRecommenderCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/StopUploadJobCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateDomainLayoutCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateEventTriggerCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateRecommenderCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +15 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +51 -0
- package/dist-types/ts3.4/models/models_0.d.ts +251 -142
- package/dist-types/ts3.4/models/models_1.d.ts +176 -0
- package/dist-types/ts3.4/pagination/ListDomainObjectTypesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommenderRecipesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListRecommendersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +74 -0
- package/package.json +1 -1
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
CreateProfileCommandInput,
|
|
40
40
|
CreateProfileCommandOutput,
|
|
41
41
|
} from "./commands/CreateProfileCommand";
|
|
42
|
+
import {
|
|
43
|
+
CreateRecommenderCommandInput,
|
|
44
|
+
CreateRecommenderCommandOutput,
|
|
45
|
+
} from "./commands/CreateRecommenderCommand";
|
|
42
46
|
import {
|
|
43
47
|
CreateSegmentDefinitionCommandInput,
|
|
44
48
|
CreateSegmentDefinitionCommandOutput,
|
|
@@ -67,6 +71,10 @@ import {
|
|
|
67
71
|
DeleteDomainLayoutCommandInput,
|
|
68
72
|
DeleteDomainLayoutCommandOutput,
|
|
69
73
|
} from "./commands/DeleteDomainLayoutCommand";
|
|
74
|
+
import {
|
|
75
|
+
DeleteDomainObjectTypeCommandInput,
|
|
76
|
+
DeleteDomainObjectTypeCommandOutput,
|
|
77
|
+
} from "./commands/DeleteDomainObjectTypeCommand";
|
|
70
78
|
import {
|
|
71
79
|
DeleteEventStreamCommandInput,
|
|
72
80
|
DeleteEventStreamCommandOutput,
|
|
@@ -95,6 +103,10 @@ import {
|
|
|
95
103
|
DeleteProfileObjectTypeCommandInput,
|
|
96
104
|
DeleteProfileObjectTypeCommandOutput,
|
|
97
105
|
} from "./commands/DeleteProfileObjectTypeCommand";
|
|
106
|
+
import {
|
|
107
|
+
DeleteRecommenderCommandInput,
|
|
108
|
+
DeleteRecommenderCommandOutput,
|
|
109
|
+
} from "./commands/DeleteRecommenderCommand";
|
|
98
110
|
import {
|
|
99
111
|
DeleteSegmentDefinitionCommandInput,
|
|
100
112
|
DeleteSegmentDefinitionCommandOutput,
|
|
@@ -127,6 +139,10 @@ import {
|
|
|
127
139
|
GetDomainLayoutCommandInput,
|
|
128
140
|
GetDomainLayoutCommandOutput,
|
|
129
141
|
} from "./commands/GetDomainLayoutCommand";
|
|
142
|
+
import {
|
|
143
|
+
GetDomainObjectTypeCommandInput,
|
|
144
|
+
GetDomainObjectTypeCommandOutput,
|
|
145
|
+
} from "./commands/GetDomainObjectTypeCommand";
|
|
130
146
|
import {
|
|
131
147
|
GetEventStreamCommandInput,
|
|
132
148
|
GetEventStreamCommandOutput,
|
|
@@ -147,6 +163,10 @@ import {
|
|
|
147
163
|
GetMatchesCommandInput,
|
|
148
164
|
GetMatchesCommandOutput,
|
|
149
165
|
} from "./commands/GetMatchesCommand";
|
|
166
|
+
import {
|
|
167
|
+
GetObjectTypeAttributeStatisticsCommandInput,
|
|
168
|
+
GetObjectTypeAttributeStatisticsCommandOutput,
|
|
169
|
+
} from "./commands/GetObjectTypeAttributeStatisticsCommand";
|
|
150
170
|
import {
|
|
151
171
|
GetProfileHistoryRecordCommandInput,
|
|
152
172
|
GetProfileHistoryRecordCommandOutput,
|
|
@@ -159,6 +179,14 @@ import {
|
|
|
159
179
|
GetProfileObjectTypeTemplateCommandInput,
|
|
160
180
|
GetProfileObjectTypeTemplateCommandOutput,
|
|
161
181
|
} from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
182
|
+
import {
|
|
183
|
+
GetProfileRecommendationsCommandInput,
|
|
184
|
+
GetProfileRecommendationsCommandOutput,
|
|
185
|
+
} from "./commands/GetProfileRecommendationsCommand";
|
|
186
|
+
import {
|
|
187
|
+
GetRecommenderCommandInput,
|
|
188
|
+
GetRecommenderCommandOutput,
|
|
189
|
+
} from "./commands/GetRecommenderCommand";
|
|
162
190
|
import {
|
|
163
191
|
GetSegmentDefinitionCommandInput,
|
|
164
192
|
GetSegmentDefinitionCommandOutput,
|
|
@@ -211,6 +239,10 @@ import {
|
|
|
211
239
|
ListDomainLayoutsCommandInput,
|
|
212
240
|
ListDomainLayoutsCommandOutput,
|
|
213
241
|
} from "./commands/ListDomainLayoutsCommand";
|
|
242
|
+
import {
|
|
243
|
+
ListDomainObjectTypesCommandInput,
|
|
244
|
+
ListDomainObjectTypesCommandOutput,
|
|
245
|
+
} from "./commands/ListDomainObjectTypesCommand";
|
|
214
246
|
import {
|
|
215
247
|
ListDomainsCommandInput,
|
|
216
248
|
ListDomainsCommandOutput,
|
|
@@ -235,6 +267,10 @@ import {
|
|
|
235
267
|
ListObjectTypeAttributesCommandInput,
|
|
236
268
|
ListObjectTypeAttributesCommandOutput,
|
|
237
269
|
} from "./commands/ListObjectTypeAttributesCommand";
|
|
270
|
+
import {
|
|
271
|
+
ListObjectTypeAttributeValuesCommandInput,
|
|
272
|
+
ListObjectTypeAttributeValuesCommandOutput,
|
|
273
|
+
} from "./commands/ListObjectTypeAttributeValuesCommand";
|
|
238
274
|
import {
|
|
239
275
|
ListProfileAttributeValuesCommandInput,
|
|
240
276
|
ListProfileAttributeValuesCommandOutput,
|
|
@@ -255,6 +291,14 @@ import {
|
|
|
255
291
|
ListProfileObjectTypeTemplatesCommandInput,
|
|
256
292
|
ListProfileObjectTypeTemplatesCommandOutput,
|
|
257
293
|
} from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
294
|
+
import {
|
|
295
|
+
ListRecommenderRecipesCommandInput,
|
|
296
|
+
ListRecommenderRecipesCommandOutput,
|
|
297
|
+
} from "./commands/ListRecommenderRecipesCommand";
|
|
298
|
+
import {
|
|
299
|
+
ListRecommendersCommandInput,
|
|
300
|
+
ListRecommendersCommandOutput,
|
|
301
|
+
} from "./commands/ListRecommendersCommand";
|
|
258
302
|
import {
|
|
259
303
|
ListRuleBasedMatchesCommandInput,
|
|
260
304
|
ListRuleBasedMatchesCommandOutput,
|
|
@@ -279,6 +323,10 @@ import {
|
|
|
279
323
|
MergeProfilesCommandInput,
|
|
280
324
|
MergeProfilesCommandOutput,
|
|
281
325
|
} from "./commands/MergeProfilesCommand";
|
|
326
|
+
import {
|
|
327
|
+
PutDomainObjectTypeCommandInput,
|
|
328
|
+
PutDomainObjectTypeCommandOutput,
|
|
329
|
+
} from "./commands/PutDomainObjectTypeCommand";
|
|
282
330
|
import {
|
|
283
331
|
PutIntegrationCommandInput,
|
|
284
332
|
PutIntegrationCommandOutput,
|
|
@@ -295,10 +343,18 @@ import {
|
|
|
295
343
|
SearchProfilesCommandInput,
|
|
296
344
|
SearchProfilesCommandOutput,
|
|
297
345
|
} from "./commands/SearchProfilesCommand";
|
|
346
|
+
import {
|
|
347
|
+
StartRecommenderCommandInput,
|
|
348
|
+
StartRecommenderCommandOutput,
|
|
349
|
+
} from "./commands/StartRecommenderCommand";
|
|
298
350
|
import {
|
|
299
351
|
StartUploadJobCommandInput,
|
|
300
352
|
StartUploadJobCommandOutput,
|
|
301
353
|
} from "./commands/StartUploadJobCommand";
|
|
354
|
+
import {
|
|
355
|
+
StopRecommenderCommandInput,
|
|
356
|
+
StopRecommenderCommandOutput,
|
|
357
|
+
} from "./commands/StopRecommenderCommand";
|
|
302
358
|
import {
|
|
303
359
|
StopUploadJobCommandInput,
|
|
304
360
|
StopUploadJobCommandOutput,
|
|
@@ -331,6 +387,10 @@ import {
|
|
|
331
387
|
UpdateProfileCommandInput,
|
|
332
388
|
UpdateProfileCommandOutput,
|
|
333
389
|
} from "./commands/UpdateProfileCommand";
|
|
390
|
+
import {
|
|
391
|
+
UpdateRecommenderCommandInput,
|
|
392
|
+
UpdateRecommenderCommandOutput,
|
|
393
|
+
} from "./commands/UpdateRecommenderCommand";
|
|
334
394
|
import { CustomerProfilesClient } from "./CustomerProfilesClient";
|
|
335
395
|
export interface CustomerProfiles {
|
|
336
396
|
addProfileKey(
|
|
@@ -475,6 +535,19 @@ export interface CustomerProfiles {
|
|
|
475
535
|
options: __HttpHandlerOptions,
|
|
476
536
|
cb: (err: any, data?: CreateProfileCommandOutput) => void
|
|
477
537
|
): void;
|
|
538
|
+
createRecommender(
|
|
539
|
+
args: CreateRecommenderCommandInput,
|
|
540
|
+
options?: __HttpHandlerOptions
|
|
541
|
+
): Promise<CreateRecommenderCommandOutput>;
|
|
542
|
+
createRecommender(
|
|
543
|
+
args: CreateRecommenderCommandInput,
|
|
544
|
+
cb: (err: any, data?: CreateRecommenderCommandOutput) => void
|
|
545
|
+
): void;
|
|
546
|
+
createRecommender(
|
|
547
|
+
args: CreateRecommenderCommandInput,
|
|
548
|
+
options: __HttpHandlerOptions,
|
|
549
|
+
cb: (err: any, data?: CreateRecommenderCommandOutput) => void
|
|
550
|
+
): void;
|
|
478
551
|
createSegmentDefinition(
|
|
479
552
|
args: CreateSegmentDefinitionCommandInput,
|
|
480
553
|
options?: __HttpHandlerOptions
|
|
@@ -572,6 +645,19 @@ export interface CustomerProfiles {
|
|
|
572
645
|
options: __HttpHandlerOptions,
|
|
573
646
|
cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void
|
|
574
647
|
): void;
|
|
648
|
+
deleteDomainObjectType(
|
|
649
|
+
args: DeleteDomainObjectTypeCommandInput,
|
|
650
|
+
options?: __HttpHandlerOptions
|
|
651
|
+
): Promise<DeleteDomainObjectTypeCommandOutput>;
|
|
652
|
+
deleteDomainObjectType(
|
|
653
|
+
args: DeleteDomainObjectTypeCommandInput,
|
|
654
|
+
cb: (err: any, data?: DeleteDomainObjectTypeCommandOutput) => void
|
|
655
|
+
): void;
|
|
656
|
+
deleteDomainObjectType(
|
|
657
|
+
args: DeleteDomainObjectTypeCommandInput,
|
|
658
|
+
options: __HttpHandlerOptions,
|
|
659
|
+
cb: (err: any, data?: DeleteDomainObjectTypeCommandOutput) => void
|
|
660
|
+
): void;
|
|
575
661
|
deleteEventStream(
|
|
576
662
|
args: DeleteEventStreamCommandInput,
|
|
577
663
|
options?: __HttpHandlerOptions
|
|
@@ -663,6 +749,19 @@ export interface CustomerProfiles {
|
|
|
663
749
|
options: __HttpHandlerOptions,
|
|
664
750
|
cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void
|
|
665
751
|
): void;
|
|
752
|
+
deleteRecommender(
|
|
753
|
+
args: DeleteRecommenderCommandInput,
|
|
754
|
+
options?: __HttpHandlerOptions
|
|
755
|
+
): Promise<DeleteRecommenderCommandOutput>;
|
|
756
|
+
deleteRecommender(
|
|
757
|
+
args: DeleteRecommenderCommandInput,
|
|
758
|
+
cb: (err: any, data?: DeleteRecommenderCommandOutput) => void
|
|
759
|
+
): void;
|
|
760
|
+
deleteRecommender(
|
|
761
|
+
args: DeleteRecommenderCommandInput,
|
|
762
|
+
options: __HttpHandlerOptions,
|
|
763
|
+
cb: (err: any, data?: DeleteRecommenderCommandOutput) => void
|
|
764
|
+
): void;
|
|
666
765
|
deleteSegmentDefinition(
|
|
667
766
|
args: DeleteSegmentDefinitionCommandInput,
|
|
668
767
|
options?: __HttpHandlerOptions
|
|
@@ -767,6 +866,19 @@ export interface CustomerProfiles {
|
|
|
767
866
|
options: __HttpHandlerOptions,
|
|
768
867
|
cb: (err: any, data?: GetDomainLayoutCommandOutput) => void
|
|
769
868
|
): void;
|
|
869
|
+
getDomainObjectType(
|
|
870
|
+
args: GetDomainObjectTypeCommandInput,
|
|
871
|
+
options?: __HttpHandlerOptions
|
|
872
|
+
): Promise<GetDomainObjectTypeCommandOutput>;
|
|
873
|
+
getDomainObjectType(
|
|
874
|
+
args: GetDomainObjectTypeCommandInput,
|
|
875
|
+
cb: (err: any, data?: GetDomainObjectTypeCommandOutput) => void
|
|
876
|
+
): void;
|
|
877
|
+
getDomainObjectType(
|
|
878
|
+
args: GetDomainObjectTypeCommandInput,
|
|
879
|
+
options: __HttpHandlerOptions,
|
|
880
|
+
cb: (err: any, data?: GetDomainObjectTypeCommandOutput) => void
|
|
881
|
+
): void;
|
|
770
882
|
getEventStream(
|
|
771
883
|
args: GetEventStreamCommandInput,
|
|
772
884
|
options?: __HttpHandlerOptions
|
|
@@ -832,6 +944,19 @@ export interface CustomerProfiles {
|
|
|
832
944
|
options: __HttpHandlerOptions,
|
|
833
945
|
cb: (err: any, data?: GetMatchesCommandOutput) => void
|
|
834
946
|
): void;
|
|
947
|
+
getObjectTypeAttributeStatistics(
|
|
948
|
+
args: GetObjectTypeAttributeStatisticsCommandInput,
|
|
949
|
+
options?: __HttpHandlerOptions
|
|
950
|
+
): Promise<GetObjectTypeAttributeStatisticsCommandOutput>;
|
|
951
|
+
getObjectTypeAttributeStatistics(
|
|
952
|
+
args: GetObjectTypeAttributeStatisticsCommandInput,
|
|
953
|
+
cb: (err: any, data?: GetObjectTypeAttributeStatisticsCommandOutput) => void
|
|
954
|
+
): void;
|
|
955
|
+
getObjectTypeAttributeStatistics(
|
|
956
|
+
args: GetObjectTypeAttributeStatisticsCommandInput,
|
|
957
|
+
options: __HttpHandlerOptions,
|
|
958
|
+
cb: (err: any, data?: GetObjectTypeAttributeStatisticsCommandOutput) => void
|
|
959
|
+
): void;
|
|
835
960
|
getProfileHistoryRecord(
|
|
836
961
|
args: GetProfileHistoryRecordCommandInput,
|
|
837
962
|
options?: __HttpHandlerOptions
|
|
@@ -871,6 +996,32 @@ export interface CustomerProfiles {
|
|
|
871
996
|
options: __HttpHandlerOptions,
|
|
872
997
|
cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void
|
|
873
998
|
): void;
|
|
999
|
+
getProfileRecommendations(
|
|
1000
|
+
args: GetProfileRecommendationsCommandInput,
|
|
1001
|
+
options?: __HttpHandlerOptions
|
|
1002
|
+
): Promise<GetProfileRecommendationsCommandOutput>;
|
|
1003
|
+
getProfileRecommendations(
|
|
1004
|
+
args: GetProfileRecommendationsCommandInput,
|
|
1005
|
+
cb: (err: any, data?: GetProfileRecommendationsCommandOutput) => void
|
|
1006
|
+
): void;
|
|
1007
|
+
getProfileRecommendations(
|
|
1008
|
+
args: GetProfileRecommendationsCommandInput,
|
|
1009
|
+
options: __HttpHandlerOptions,
|
|
1010
|
+
cb: (err: any, data?: GetProfileRecommendationsCommandOutput) => void
|
|
1011
|
+
): void;
|
|
1012
|
+
getRecommender(
|
|
1013
|
+
args: GetRecommenderCommandInput,
|
|
1014
|
+
options?: __HttpHandlerOptions
|
|
1015
|
+
): Promise<GetRecommenderCommandOutput>;
|
|
1016
|
+
getRecommender(
|
|
1017
|
+
args: GetRecommenderCommandInput,
|
|
1018
|
+
cb: (err: any, data?: GetRecommenderCommandOutput) => void
|
|
1019
|
+
): void;
|
|
1020
|
+
getRecommender(
|
|
1021
|
+
args: GetRecommenderCommandInput,
|
|
1022
|
+
options: __HttpHandlerOptions,
|
|
1023
|
+
cb: (err: any, data?: GetRecommenderCommandOutput) => void
|
|
1024
|
+
): void;
|
|
874
1025
|
getSegmentDefinition(
|
|
875
1026
|
args: GetSegmentDefinitionCommandInput,
|
|
876
1027
|
options?: __HttpHandlerOptions
|
|
@@ -1052,6 +1203,19 @@ export interface CustomerProfiles {
|
|
|
1052
1203
|
options: __HttpHandlerOptions,
|
|
1053
1204
|
cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void
|
|
1054
1205
|
): void;
|
|
1206
|
+
listDomainObjectTypes(
|
|
1207
|
+
args: ListDomainObjectTypesCommandInput,
|
|
1208
|
+
options?: __HttpHandlerOptions
|
|
1209
|
+
): Promise<ListDomainObjectTypesCommandOutput>;
|
|
1210
|
+
listDomainObjectTypes(
|
|
1211
|
+
args: ListDomainObjectTypesCommandInput,
|
|
1212
|
+
cb: (err: any, data?: ListDomainObjectTypesCommandOutput) => void
|
|
1213
|
+
): void;
|
|
1214
|
+
listDomainObjectTypes(
|
|
1215
|
+
args: ListDomainObjectTypesCommandInput,
|
|
1216
|
+
options: __HttpHandlerOptions,
|
|
1217
|
+
cb: (err: any, data?: ListDomainObjectTypesCommandOutput) => void
|
|
1218
|
+
): void;
|
|
1055
1219
|
listDomains(): Promise<ListDomainsCommandOutput>;
|
|
1056
1220
|
listDomains(
|
|
1057
1221
|
args: ListDomainsCommandInput,
|
|
@@ -1131,6 +1295,19 @@ export interface CustomerProfiles {
|
|
|
1131
1295
|
options: __HttpHandlerOptions,
|
|
1132
1296
|
cb: (err: any, data?: ListObjectTypeAttributesCommandOutput) => void
|
|
1133
1297
|
): void;
|
|
1298
|
+
listObjectTypeAttributeValues(
|
|
1299
|
+
args: ListObjectTypeAttributeValuesCommandInput,
|
|
1300
|
+
options?: __HttpHandlerOptions
|
|
1301
|
+
): Promise<ListObjectTypeAttributeValuesCommandOutput>;
|
|
1302
|
+
listObjectTypeAttributeValues(
|
|
1303
|
+
args: ListObjectTypeAttributeValuesCommandInput,
|
|
1304
|
+
cb: (err: any, data?: ListObjectTypeAttributeValuesCommandOutput) => void
|
|
1305
|
+
): void;
|
|
1306
|
+
listObjectTypeAttributeValues(
|
|
1307
|
+
args: ListObjectTypeAttributeValuesCommandInput,
|
|
1308
|
+
options: __HttpHandlerOptions,
|
|
1309
|
+
cb: (err: any, data?: ListObjectTypeAttributeValuesCommandOutput) => void
|
|
1310
|
+
): void;
|
|
1134
1311
|
listProfileAttributeValues(
|
|
1135
1312
|
args: ListProfileAttributeValuesCommandInput,
|
|
1136
1313
|
options?: __HttpHandlerOptions
|
|
@@ -1197,6 +1374,33 @@ export interface CustomerProfiles {
|
|
|
1197
1374
|
options: __HttpHandlerOptions,
|
|
1198
1375
|
cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void
|
|
1199
1376
|
): void;
|
|
1377
|
+
listRecommenderRecipes(): Promise<ListRecommenderRecipesCommandOutput>;
|
|
1378
|
+
listRecommenderRecipes(
|
|
1379
|
+
args: ListRecommenderRecipesCommandInput,
|
|
1380
|
+
options?: __HttpHandlerOptions
|
|
1381
|
+
): Promise<ListRecommenderRecipesCommandOutput>;
|
|
1382
|
+
listRecommenderRecipes(
|
|
1383
|
+
args: ListRecommenderRecipesCommandInput,
|
|
1384
|
+
cb: (err: any, data?: ListRecommenderRecipesCommandOutput) => void
|
|
1385
|
+
): void;
|
|
1386
|
+
listRecommenderRecipes(
|
|
1387
|
+
args: ListRecommenderRecipesCommandInput,
|
|
1388
|
+
options: __HttpHandlerOptions,
|
|
1389
|
+
cb: (err: any, data?: ListRecommenderRecipesCommandOutput) => void
|
|
1390
|
+
): void;
|
|
1391
|
+
listRecommenders(
|
|
1392
|
+
args: ListRecommendersCommandInput,
|
|
1393
|
+
options?: __HttpHandlerOptions
|
|
1394
|
+
): Promise<ListRecommendersCommandOutput>;
|
|
1395
|
+
listRecommenders(
|
|
1396
|
+
args: ListRecommendersCommandInput,
|
|
1397
|
+
cb: (err: any, data?: ListRecommendersCommandOutput) => void
|
|
1398
|
+
): void;
|
|
1399
|
+
listRecommenders(
|
|
1400
|
+
args: ListRecommendersCommandInput,
|
|
1401
|
+
options: __HttpHandlerOptions,
|
|
1402
|
+
cb: (err: any, data?: ListRecommendersCommandOutput) => void
|
|
1403
|
+
): void;
|
|
1200
1404
|
listRuleBasedMatches(
|
|
1201
1405
|
args: ListRuleBasedMatchesCommandInput,
|
|
1202
1406
|
options?: __HttpHandlerOptions
|
|
@@ -1275,6 +1479,19 @@ export interface CustomerProfiles {
|
|
|
1275
1479
|
options: __HttpHandlerOptions,
|
|
1276
1480
|
cb: (err: any, data?: MergeProfilesCommandOutput) => void
|
|
1277
1481
|
): void;
|
|
1482
|
+
putDomainObjectType(
|
|
1483
|
+
args: PutDomainObjectTypeCommandInput,
|
|
1484
|
+
options?: __HttpHandlerOptions
|
|
1485
|
+
): Promise<PutDomainObjectTypeCommandOutput>;
|
|
1486
|
+
putDomainObjectType(
|
|
1487
|
+
args: PutDomainObjectTypeCommandInput,
|
|
1488
|
+
cb: (err: any, data?: PutDomainObjectTypeCommandOutput) => void
|
|
1489
|
+
): void;
|
|
1490
|
+
putDomainObjectType(
|
|
1491
|
+
args: PutDomainObjectTypeCommandInput,
|
|
1492
|
+
options: __HttpHandlerOptions,
|
|
1493
|
+
cb: (err: any, data?: PutDomainObjectTypeCommandOutput) => void
|
|
1494
|
+
): void;
|
|
1278
1495
|
putIntegration(
|
|
1279
1496
|
args: PutIntegrationCommandInput,
|
|
1280
1497
|
options?: __HttpHandlerOptions
|
|
@@ -1327,6 +1544,19 @@ export interface CustomerProfiles {
|
|
|
1327
1544
|
options: __HttpHandlerOptions,
|
|
1328
1545
|
cb: (err: any, data?: SearchProfilesCommandOutput) => void
|
|
1329
1546
|
): void;
|
|
1547
|
+
startRecommender(
|
|
1548
|
+
args: StartRecommenderCommandInput,
|
|
1549
|
+
options?: __HttpHandlerOptions
|
|
1550
|
+
): Promise<StartRecommenderCommandOutput>;
|
|
1551
|
+
startRecommender(
|
|
1552
|
+
args: StartRecommenderCommandInput,
|
|
1553
|
+
cb: (err: any, data?: StartRecommenderCommandOutput) => void
|
|
1554
|
+
): void;
|
|
1555
|
+
startRecommender(
|
|
1556
|
+
args: StartRecommenderCommandInput,
|
|
1557
|
+
options: __HttpHandlerOptions,
|
|
1558
|
+
cb: (err: any, data?: StartRecommenderCommandOutput) => void
|
|
1559
|
+
): void;
|
|
1330
1560
|
startUploadJob(
|
|
1331
1561
|
args: StartUploadJobCommandInput,
|
|
1332
1562
|
options?: __HttpHandlerOptions
|
|
@@ -1340,6 +1570,19 @@ export interface CustomerProfiles {
|
|
|
1340
1570
|
options: __HttpHandlerOptions,
|
|
1341
1571
|
cb: (err: any, data?: StartUploadJobCommandOutput) => void
|
|
1342
1572
|
): void;
|
|
1573
|
+
stopRecommender(
|
|
1574
|
+
args: StopRecommenderCommandInput,
|
|
1575
|
+
options?: __HttpHandlerOptions
|
|
1576
|
+
): Promise<StopRecommenderCommandOutput>;
|
|
1577
|
+
stopRecommender(
|
|
1578
|
+
args: StopRecommenderCommandInput,
|
|
1579
|
+
cb: (err: any, data?: StopRecommenderCommandOutput) => void
|
|
1580
|
+
): void;
|
|
1581
|
+
stopRecommender(
|
|
1582
|
+
args: StopRecommenderCommandInput,
|
|
1583
|
+
options: __HttpHandlerOptions,
|
|
1584
|
+
cb: (err: any, data?: StopRecommenderCommandOutput) => void
|
|
1585
|
+
): void;
|
|
1343
1586
|
stopUploadJob(
|
|
1344
1587
|
args: StopUploadJobCommandInput,
|
|
1345
1588
|
options?: __HttpHandlerOptions
|
|
@@ -1450,6 +1693,19 @@ export interface CustomerProfiles {
|
|
|
1450
1693
|
options: __HttpHandlerOptions,
|
|
1451
1694
|
cb: (err: any, data?: UpdateProfileCommandOutput) => void
|
|
1452
1695
|
): void;
|
|
1696
|
+
updateRecommender(
|
|
1697
|
+
args: UpdateRecommenderCommandInput,
|
|
1698
|
+
options?: __HttpHandlerOptions
|
|
1699
|
+
): Promise<UpdateRecommenderCommandOutput>;
|
|
1700
|
+
updateRecommender(
|
|
1701
|
+
args: UpdateRecommenderCommandInput,
|
|
1702
|
+
cb: (err: any, data?: UpdateRecommenderCommandOutput) => void
|
|
1703
|
+
): void;
|
|
1704
|
+
updateRecommender(
|
|
1705
|
+
args: UpdateRecommenderCommandInput,
|
|
1706
|
+
options: __HttpHandlerOptions,
|
|
1707
|
+
cb: (err: any, data?: UpdateRecommenderCommandOutput) => void
|
|
1708
|
+
): void;
|
|
1453
1709
|
}
|
|
1454
1710
|
export declare class CustomerProfiles
|
|
1455
1711
|
extends CustomerProfilesClient
|