@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
|
@@ -9,6 +9,7 @@ import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from ".
|
|
|
9
9
|
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand";
|
|
10
10
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
11
11
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
12
|
+
import { CreateRecommenderCommandInput, CreateRecommenderCommandOutput } from "./commands/CreateRecommenderCommand";
|
|
12
13
|
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
13
14
|
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
14
15
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
@@ -16,6 +17,7 @@ import { CreateUploadJobCommandInput, CreateUploadJobCommandOutput } from "./com
|
|
|
16
17
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
17
18
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
18
19
|
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
20
|
+
import { DeleteDomainObjectTypeCommandInput, DeleteDomainObjectTypeCommandOutput } from "./commands/DeleteDomainObjectTypeCommand";
|
|
19
21
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
20
22
|
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand";
|
|
21
23
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
@@ -23,6 +25,7 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./command
|
|
|
23
25
|
import { DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput } from "./commands/DeleteProfileKeyCommand";
|
|
24
26
|
import { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput } from "./commands/DeleteProfileObjectCommand";
|
|
25
27
|
import { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "./commands/DeleteProfileObjectTypeCommand";
|
|
28
|
+
import { DeleteRecommenderCommandInput, DeleteRecommenderCommandOutput } from "./commands/DeleteRecommenderCommand";
|
|
26
29
|
import { DeleteSegmentDefinitionCommandInput, DeleteSegmentDefinitionCommandOutput } from "./commands/DeleteSegmentDefinitionCommand";
|
|
27
30
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
|
|
28
31
|
import { DetectProfileObjectTypeCommandInput, DetectProfileObjectTypeCommandOutput } from "./commands/DetectProfileObjectTypeCommand";
|
|
@@ -31,14 +34,18 @@ import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDef
|
|
|
31
34
|
import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
32
35
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
|
|
33
36
|
import { GetDomainLayoutCommandInput, GetDomainLayoutCommandOutput } from "./commands/GetDomainLayoutCommand";
|
|
37
|
+
import { GetDomainObjectTypeCommandInput, GetDomainObjectTypeCommandOutput } from "./commands/GetDomainObjectTypeCommand";
|
|
34
38
|
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand";
|
|
35
39
|
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand";
|
|
36
40
|
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand";
|
|
37
41
|
import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand";
|
|
38
42
|
import { GetMatchesCommandInput, GetMatchesCommandOutput } from "./commands/GetMatchesCommand";
|
|
43
|
+
import { GetObjectTypeAttributeStatisticsCommandInput, GetObjectTypeAttributeStatisticsCommandOutput } from "./commands/GetObjectTypeAttributeStatisticsCommand";
|
|
39
44
|
import { GetProfileHistoryRecordCommandInput, GetProfileHistoryRecordCommandOutput } from "./commands/GetProfileHistoryRecordCommand";
|
|
40
45
|
import { GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput } from "./commands/GetProfileObjectTypeCommand";
|
|
41
46
|
import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
47
|
+
import { GetProfileRecommendationsCommandInput, GetProfileRecommendationsCommandOutput } from "./commands/GetProfileRecommendationsCommand";
|
|
48
|
+
import { GetRecommenderCommandInput, GetRecommenderCommandOutput } from "./commands/GetRecommenderCommand";
|
|
42
49
|
import { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "./commands/GetSegmentDefinitionCommand";
|
|
43
50
|
import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from "./commands/GetSegmentEstimateCommand";
|
|
44
51
|
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
@@ -52,28 +59,35 @@ import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutp
|
|
|
52
59
|
import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
53
60
|
import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
54
61
|
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "./commands/ListDomainLayoutsCommand";
|
|
62
|
+
import { ListDomainObjectTypesCommandInput, ListDomainObjectTypesCommandOutput } from "./commands/ListDomainObjectTypesCommand";
|
|
55
63
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
56
64
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
57
65
|
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand";
|
|
58
66
|
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand";
|
|
59
67
|
import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
60
68
|
import { ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput } from "./commands/ListObjectTypeAttributesCommand";
|
|
69
|
+
import { ListObjectTypeAttributeValuesCommandInput, ListObjectTypeAttributeValuesCommandOutput } from "./commands/ListObjectTypeAttributeValuesCommand";
|
|
61
70
|
import { ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput } from "./commands/ListProfileAttributeValuesCommand";
|
|
62
71
|
import { ListProfileHistoryRecordsCommandInput, ListProfileHistoryRecordsCommandOutput } from "./commands/ListProfileHistoryRecordsCommand";
|
|
63
72
|
import { ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput } from "./commands/ListProfileObjectsCommand";
|
|
64
73
|
import { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput } from "./commands/ListProfileObjectTypesCommand";
|
|
65
74
|
import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
75
|
+
import { ListRecommenderRecipesCommandInput, ListRecommenderRecipesCommandOutput } from "./commands/ListRecommenderRecipesCommand";
|
|
76
|
+
import { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "./commands/ListRecommendersCommand";
|
|
66
77
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
67
78
|
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
68
79
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
69
80
|
import { ListUploadJobsCommandInput, ListUploadJobsCommandOutput } from "./commands/ListUploadJobsCommand";
|
|
70
81
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
71
82
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
83
|
+
import { PutDomainObjectTypeCommandInput, PutDomainObjectTypeCommandOutput } from "./commands/PutDomainObjectTypeCommand";
|
|
72
84
|
import { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand";
|
|
73
85
|
import { PutProfileObjectCommandInput, PutProfileObjectCommandOutput } from "./commands/PutProfileObjectCommand";
|
|
74
86
|
import { PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput } from "./commands/PutProfileObjectTypeCommand";
|
|
75
87
|
import { SearchProfilesCommandInput, SearchProfilesCommandOutput } from "./commands/SearchProfilesCommand";
|
|
88
|
+
import { StartRecommenderCommandInput, StartRecommenderCommandOutput } from "./commands/StartRecommenderCommand";
|
|
76
89
|
import { StartUploadJobCommandInput, StartUploadJobCommandOutput } from "./commands/StartUploadJobCommand";
|
|
90
|
+
import { StopRecommenderCommandInput, StopRecommenderCommandOutput } from "./commands/StopRecommenderCommand";
|
|
77
91
|
import { StopUploadJobCommandInput, StopUploadJobCommandOutput } from "./commands/StopUploadJobCommand";
|
|
78
92
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
79
93
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -82,6 +96,7 @@ import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/
|
|
|
82
96
|
import { UpdateDomainLayoutCommandInput, UpdateDomainLayoutCommandOutput } from "./commands/UpdateDomainLayoutCommand";
|
|
83
97
|
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand";
|
|
84
98
|
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
|
|
99
|
+
import { UpdateRecommenderCommandInput, UpdateRecommenderCommandOutput } from "./commands/UpdateRecommenderCommand";
|
|
85
100
|
import { CustomerProfilesClient } from "./CustomerProfilesClient";
|
|
86
101
|
export interface CustomerProfiles {
|
|
87
102
|
/**
|
|
@@ -144,6 +159,12 @@ export interface CustomerProfiles {
|
|
|
144
159
|
createProfile(args: CreateProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateProfileCommandOutput>;
|
|
145
160
|
createProfile(args: CreateProfileCommandInput, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
|
|
146
161
|
createProfile(args: CreateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateProfileCommandOutput) => void): void;
|
|
162
|
+
/**
|
|
163
|
+
* @see {@link CreateRecommenderCommand}
|
|
164
|
+
*/
|
|
165
|
+
createRecommender(args: CreateRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<CreateRecommenderCommandOutput>;
|
|
166
|
+
createRecommender(args: CreateRecommenderCommandInput, cb: (err: any, data?: CreateRecommenderCommandOutput) => void): void;
|
|
167
|
+
createRecommender(args: CreateRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateRecommenderCommandOutput) => void): void;
|
|
147
168
|
/**
|
|
148
169
|
* @see {@link CreateSegmentDefinitionCommand}
|
|
149
170
|
*/
|
|
@@ -186,6 +207,12 @@ export interface CustomerProfiles {
|
|
|
186
207
|
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainLayoutCommandOutput>;
|
|
187
208
|
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void): void;
|
|
188
209
|
deleteDomainLayout(args: DeleteDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainLayoutCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link DeleteDomainObjectTypeCommand}
|
|
212
|
+
*/
|
|
213
|
+
deleteDomainObjectType(args: DeleteDomainObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDomainObjectTypeCommandOutput>;
|
|
214
|
+
deleteDomainObjectType(args: DeleteDomainObjectTypeCommandInput, cb: (err: any, data?: DeleteDomainObjectTypeCommandOutput) => void): void;
|
|
215
|
+
deleteDomainObjectType(args: DeleteDomainObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDomainObjectTypeCommandOutput) => void): void;
|
|
189
216
|
/**
|
|
190
217
|
* @see {@link DeleteEventStreamCommand}
|
|
191
218
|
*/
|
|
@@ -228,6 +255,12 @@ export interface CustomerProfiles {
|
|
|
228
255
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<DeleteProfileObjectTypeCommandOutput>;
|
|
229
256
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
|
|
230
257
|
deleteProfileObjectType(args: DeleteProfileObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteProfileObjectTypeCommandOutput) => void): void;
|
|
258
|
+
/**
|
|
259
|
+
* @see {@link DeleteRecommenderCommand}
|
|
260
|
+
*/
|
|
261
|
+
deleteRecommender(args: DeleteRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecommenderCommandOutput>;
|
|
262
|
+
deleteRecommender(args: DeleteRecommenderCommandInput, cb: (err: any, data?: DeleteRecommenderCommandOutput) => void): void;
|
|
263
|
+
deleteRecommender(args: DeleteRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecommenderCommandOutput) => void): void;
|
|
231
264
|
/**
|
|
232
265
|
* @see {@link DeleteSegmentDefinitionCommand}
|
|
233
266
|
*/
|
|
@@ -276,6 +309,12 @@ export interface CustomerProfiles {
|
|
|
276
309
|
getDomainLayout(args: GetDomainLayoutCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainLayoutCommandOutput>;
|
|
277
310
|
getDomainLayout(args: GetDomainLayoutCommandInput, cb: (err: any, data?: GetDomainLayoutCommandOutput) => void): void;
|
|
278
311
|
getDomainLayout(args: GetDomainLayoutCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainLayoutCommandOutput) => void): void;
|
|
312
|
+
/**
|
|
313
|
+
* @see {@link GetDomainObjectTypeCommand}
|
|
314
|
+
*/
|
|
315
|
+
getDomainObjectType(args: GetDomainObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<GetDomainObjectTypeCommandOutput>;
|
|
316
|
+
getDomainObjectType(args: GetDomainObjectTypeCommandInput, cb: (err: any, data?: GetDomainObjectTypeCommandOutput) => void): void;
|
|
317
|
+
getDomainObjectType(args: GetDomainObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDomainObjectTypeCommandOutput) => void): void;
|
|
279
318
|
/**
|
|
280
319
|
* @see {@link GetEventStreamCommand}
|
|
281
320
|
*/
|
|
@@ -306,6 +345,12 @@ export interface CustomerProfiles {
|
|
|
306
345
|
getMatches(args: GetMatchesCommandInput, options?: __HttpHandlerOptions): Promise<GetMatchesCommandOutput>;
|
|
307
346
|
getMatches(args: GetMatchesCommandInput, cb: (err: any, data?: GetMatchesCommandOutput) => void): void;
|
|
308
347
|
getMatches(args: GetMatchesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetMatchesCommandOutput) => void): void;
|
|
348
|
+
/**
|
|
349
|
+
* @see {@link GetObjectTypeAttributeStatisticsCommand}
|
|
350
|
+
*/
|
|
351
|
+
getObjectTypeAttributeStatistics(args: GetObjectTypeAttributeStatisticsCommandInput, options?: __HttpHandlerOptions): Promise<GetObjectTypeAttributeStatisticsCommandOutput>;
|
|
352
|
+
getObjectTypeAttributeStatistics(args: GetObjectTypeAttributeStatisticsCommandInput, cb: (err: any, data?: GetObjectTypeAttributeStatisticsCommandOutput) => void): void;
|
|
353
|
+
getObjectTypeAttributeStatistics(args: GetObjectTypeAttributeStatisticsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetObjectTypeAttributeStatisticsCommandOutput) => void): void;
|
|
309
354
|
/**
|
|
310
355
|
* @see {@link GetProfileHistoryRecordCommand}
|
|
311
356
|
*/
|
|
@@ -324,6 +369,18 @@ export interface CustomerProfiles {
|
|
|
324
369
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileObjectTypeTemplateCommandOutput>;
|
|
325
370
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
|
|
326
371
|
getProfileObjectTypeTemplate(args: GetProfileObjectTypeTemplateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileObjectTypeTemplateCommandOutput) => void): void;
|
|
372
|
+
/**
|
|
373
|
+
* @see {@link GetProfileRecommendationsCommand}
|
|
374
|
+
*/
|
|
375
|
+
getProfileRecommendations(args: GetProfileRecommendationsCommandInput, options?: __HttpHandlerOptions): Promise<GetProfileRecommendationsCommandOutput>;
|
|
376
|
+
getProfileRecommendations(args: GetProfileRecommendationsCommandInput, cb: (err: any, data?: GetProfileRecommendationsCommandOutput) => void): void;
|
|
377
|
+
getProfileRecommendations(args: GetProfileRecommendationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProfileRecommendationsCommandOutput) => void): void;
|
|
378
|
+
/**
|
|
379
|
+
* @see {@link GetRecommenderCommand}
|
|
380
|
+
*/
|
|
381
|
+
getRecommender(args: GetRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<GetRecommenderCommandOutput>;
|
|
382
|
+
getRecommender(args: GetRecommenderCommandInput, cb: (err: any, data?: GetRecommenderCommandOutput) => void): void;
|
|
383
|
+
getRecommender(args: GetRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecommenderCommandOutput) => void): void;
|
|
327
384
|
/**
|
|
328
385
|
* @see {@link GetSegmentDefinitionCommand}
|
|
329
386
|
*/
|
|
@@ -402,6 +459,12 @@ export interface CustomerProfiles {
|
|
|
402
459
|
listDomainLayouts(args: ListDomainLayoutsCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainLayoutsCommandOutput>;
|
|
403
460
|
listDomainLayouts(args: ListDomainLayoutsCommandInput, cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void): void;
|
|
404
461
|
listDomainLayouts(args: ListDomainLayoutsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainLayoutsCommandOutput) => void): void;
|
|
462
|
+
/**
|
|
463
|
+
* @see {@link ListDomainObjectTypesCommand}
|
|
464
|
+
*/
|
|
465
|
+
listDomainObjectTypes(args: ListDomainObjectTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListDomainObjectTypesCommandOutput>;
|
|
466
|
+
listDomainObjectTypes(args: ListDomainObjectTypesCommandInput, cb: (err: any, data?: ListDomainObjectTypesCommandOutput) => void): void;
|
|
467
|
+
listDomainObjectTypes(args: ListDomainObjectTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDomainObjectTypesCommandOutput) => void): void;
|
|
405
468
|
/**
|
|
406
469
|
* @see {@link ListDomainsCommand}
|
|
407
470
|
*/
|
|
@@ -439,6 +502,12 @@ export interface CustomerProfiles {
|
|
|
439
502
|
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectTypeAttributesCommandOutput>;
|
|
440
503
|
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, cb: (err: any, data?: ListObjectTypeAttributesCommandOutput) => void): void;
|
|
441
504
|
listObjectTypeAttributes(args: ListObjectTypeAttributesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectTypeAttributesCommandOutput) => void): void;
|
|
505
|
+
/**
|
|
506
|
+
* @see {@link ListObjectTypeAttributeValuesCommand}
|
|
507
|
+
*/
|
|
508
|
+
listObjectTypeAttributeValues(args: ListObjectTypeAttributeValuesCommandInput, options?: __HttpHandlerOptions): Promise<ListObjectTypeAttributeValuesCommandOutput>;
|
|
509
|
+
listObjectTypeAttributeValues(args: ListObjectTypeAttributeValuesCommandInput, cb: (err: any, data?: ListObjectTypeAttributeValuesCommandOutput) => void): void;
|
|
510
|
+
listObjectTypeAttributeValues(args: ListObjectTypeAttributeValuesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObjectTypeAttributeValuesCommandOutput) => void): void;
|
|
442
511
|
/**
|
|
443
512
|
* @see {@link ListProfileAttributeValuesCommand}
|
|
444
513
|
*/
|
|
@@ -470,6 +539,19 @@ export interface CustomerProfiles {
|
|
|
470
539
|
listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, options?: __HttpHandlerOptions): Promise<ListProfileObjectTypeTemplatesCommandOutput>;
|
|
471
540
|
listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void): void;
|
|
472
541
|
listProfileObjectTypeTemplates(args: ListProfileObjectTypeTemplatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProfileObjectTypeTemplatesCommandOutput) => void): void;
|
|
542
|
+
/**
|
|
543
|
+
* @see {@link ListRecommenderRecipesCommand}
|
|
544
|
+
*/
|
|
545
|
+
listRecommenderRecipes(): Promise<ListRecommenderRecipesCommandOutput>;
|
|
546
|
+
listRecommenderRecipes(args: ListRecommenderRecipesCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommenderRecipesCommandOutput>;
|
|
547
|
+
listRecommenderRecipes(args: ListRecommenderRecipesCommandInput, cb: (err: any, data?: ListRecommenderRecipesCommandOutput) => void): void;
|
|
548
|
+
listRecommenderRecipes(args: ListRecommenderRecipesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommenderRecipesCommandOutput) => void): void;
|
|
549
|
+
/**
|
|
550
|
+
* @see {@link ListRecommendersCommand}
|
|
551
|
+
*/
|
|
552
|
+
listRecommenders(args: ListRecommendersCommandInput, options?: __HttpHandlerOptions): Promise<ListRecommendersCommandOutput>;
|
|
553
|
+
listRecommenders(args: ListRecommendersCommandInput, cb: (err: any, data?: ListRecommendersCommandOutput) => void): void;
|
|
554
|
+
listRecommenders(args: ListRecommendersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRecommendersCommandOutput) => void): void;
|
|
473
555
|
/**
|
|
474
556
|
* @see {@link ListRuleBasedMatchesCommand}
|
|
475
557
|
*/
|
|
@@ -506,6 +588,12 @@ export interface CustomerProfiles {
|
|
|
506
588
|
mergeProfiles(args: MergeProfilesCommandInput, options?: __HttpHandlerOptions): Promise<MergeProfilesCommandOutput>;
|
|
507
589
|
mergeProfiles(args: MergeProfilesCommandInput, cb: (err: any, data?: MergeProfilesCommandOutput) => void): void;
|
|
508
590
|
mergeProfiles(args: MergeProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: MergeProfilesCommandOutput) => void): void;
|
|
591
|
+
/**
|
|
592
|
+
* @see {@link PutDomainObjectTypeCommand}
|
|
593
|
+
*/
|
|
594
|
+
putDomainObjectType(args: PutDomainObjectTypeCommandInput, options?: __HttpHandlerOptions): Promise<PutDomainObjectTypeCommandOutput>;
|
|
595
|
+
putDomainObjectType(args: PutDomainObjectTypeCommandInput, cb: (err: any, data?: PutDomainObjectTypeCommandOutput) => void): void;
|
|
596
|
+
putDomainObjectType(args: PutDomainObjectTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutDomainObjectTypeCommandOutput) => void): void;
|
|
509
597
|
/**
|
|
510
598
|
* @see {@link PutIntegrationCommand}
|
|
511
599
|
*/
|
|
@@ -530,12 +618,24 @@ export interface CustomerProfiles {
|
|
|
530
618
|
searchProfiles(args: SearchProfilesCommandInput, options?: __HttpHandlerOptions): Promise<SearchProfilesCommandOutput>;
|
|
531
619
|
searchProfiles(args: SearchProfilesCommandInput, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
|
|
532
620
|
searchProfiles(args: SearchProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SearchProfilesCommandOutput) => void): void;
|
|
621
|
+
/**
|
|
622
|
+
* @see {@link StartRecommenderCommand}
|
|
623
|
+
*/
|
|
624
|
+
startRecommender(args: StartRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<StartRecommenderCommandOutput>;
|
|
625
|
+
startRecommender(args: StartRecommenderCommandInput, cb: (err: any, data?: StartRecommenderCommandOutput) => void): void;
|
|
626
|
+
startRecommender(args: StartRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartRecommenderCommandOutput) => void): void;
|
|
533
627
|
/**
|
|
534
628
|
* @see {@link StartUploadJobCommand}
|
|
535
629
|
*/
|
|
536
630
|
startUploadJob(args: StartUploadJobCommandInput, options?: __HttpHandlerOptions): Promise<StartUploadJobCommandOutput>;
|
|
537
631
|
startUploadJob(args: StartUploadJobCommandInput, cb: (err: any, data?: StartUploadJobCommandOutput) => void): void;
|
|
538
632
|
startUploadJob(args: StartUploadJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartUploadJobCommandOutput) => void): void;
|
|
633
|
+
/**
|
|
634
|
+
* @see {@link StopRecommenderCommand}
|
|
635
|
+
*/
|
|
636
|
+
stopRecommender(args: StopRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<StopRecommenderCommandOutput>;
|
|
637
|
+
stopRecommender(args: StopRecommenderCommandInput, cb: (err: any, data?: StopRecommenderCommandOutput) => void): void;
|
|
638
|
+
stopRecommender(args: StopRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopRecommenderCommandOutput) => void): void;
|
|
539
639
|
/**
|
|
540
640
|
* @see {@link StopUploadJobCommand}
|
|
541
641
|
*/
|
|
@@ -584,6 +684,12 @@ export interface CustomerProfiles {
|
|
|
584
684
|
updateProfile(args: UpdateProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateProfileCommandOutput>;
|
|
585
685
|
updateProfile(args: UpdateProfileCommandInput, cb: (err: any, data?: UpdateProfileCommandOutput) => void): void;
|
|
586
686
|
updateProfile(args: UpdateProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateProfileCommandOutput) => void): void;
|
|
687
|
+
/**
|
|
688
|
+
* @see {@link UpdateRecommenderCommand}
|
|
689
|
+
*/
|
|
690
|
+
updateRecommender(args: UpdateRecommenderCommandInput, options?: __HttpHandlerOptions): Promise<UpdateRecommenderCommandOutput>;
|
|
691
|
+
updateRecommender(args: UpdateRecommenderCommandInput, cb: (err: any, data?: UpdateRecommenderCommandOutput) => void): void;
|
|
692
|
+
updateRecommender(args: UpdateRecommenderCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateRecommenderCommandOutput) => void): void;
|
|
587
693
|
}
|
|
588
694
|
/**
|
|
589
695
|
* <fullname>Amazon Connect Customer Profiles</fullname>
|
|
@@ -17,6 +17,7 @@ import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from ".
|
|
|
17
17
|
import { CreateEventTriggerCommandInput, CreateEventTriggerCommandOutput } from "./commands/CreateEventTriggerCommand";
|
|
18
18
|
import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "./commands/CreateIntegrationWorkflowCommand";
|
|
19
19
|
import { CreateProfileCommandInput, CreateProfileCommandOutput } from "./commands/CreateProfileCommand";
|
|
20
|
+
import { CreateRecommenderCommandInput, CreateRecommenderCommandOutput } from "./commands/CreateRecommenderCommand";
|
|
20
21
|
import { CreateSegmentDefinitionCommandInput, CreateSegmentDefinitionCommandOutput } from "./commands/CreateSegmentDefinitionCommand";
|
|
21
22
|
import { CreateSegmentEstimateCommandInput, CreateSegmentEstimateCommandOutput } from "./commands/CreateSegmentEstimateCommand";
|
|
22
23
|
import { CreateSegmentSnapshotCommandInput, CreateSegmentSnapshotCommandOutput } from "./commands/CreateSegmentSnapshotCommand";
|
|
@@ -24,6 +25,7 @@ import { CreateUploadJobCommandInput, CreateUploadJobCommandOutput } from "./com
|
|
|
24
25
|
import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
25
26
|
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
|
|
26
27
|
import { DeleteDomainLayoutCommandInput, DeleteDomainLayoutCommandOutput } from "./commands/DeleteDomainLayoutCommand";
|
|
28
|
+
import { DeleteDomainObjectTypeCommandInput, DeleteDomainObjectTypeCommandOutput } from "./commands/DeleteDomainObjectTypeCommand";
|
|
27
29
|
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
|
|
28
30
|
import { DeleteEventTriggerCommandInput, DeleteEventTriggerCommandOutput } from "./commands/DeleteEventTriggerCommand";
|
|
29
31
|
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
|
|
@@ -31,6 +33,7 @@ import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./command
|
|
|
31
33
|
import { DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput } from "./commands/DeleteProfileKeyCommand";
|
|
32
34
|
import { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput } from "./commands/DeleteProfileObjectCommand";
|
|
33
35
|
import { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "./commands/DeleteProfileObjectTypeCommand";
|
|
36
|
+
import { DeleteRecommenderCommandInput, DeleteRecommenderCommandOutput } from "./commands/DeleteRecommenderCommand";
|
|
34
37
|
import { DeleteSegmentDefinitionCommandInput, DeleteSegmentDefinitionCommandOutput } from "./commands/DeleteSegmentDefinitionCommand";
|
|
35
38
|
import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "./commands/DeleteWorkflowCommand";
|
|
36
39
|
import { DetectProfileObjectTypeCommandInput, DetectProfileObjectTypeCommandOutput } from "./commands/DetectProfileObjectTypeCommand";
|
|
@@ -39,14 +42,18 @@ import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDef
|
|
|
39
42
|
import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
40
43
|
import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
|
|
41
44
|
import { GetDomainLayoutCommandInput, GetDomainLayoutCommandOutput } from "./commands/GetDomainLayoutCommand";
|
|
45
|
+
import { GetDomainObjectTypeCommandInput, GetDomainObjectTypeCommandOutput } from "./commands/GetDomainObjectTypeCommand";
|
|
42
46
|
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand";
|
|
43
47
|
import { GetEventTriggerCommandInput, GetEventTriggerCommandOutput } from "./commands/GetEventTriggerCommand";
|
|
44
48
|
import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "./commands/GetIdentityResolutionJobCommand";
|
|
45
49
|
import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "./commands/GetIntegrationCommand";
|
|
46
50
|
import { GetMatchesCommandInput, GetMatchesCommandOutput } from "./commands/GetMatchesCommand";
|
|
51
|
+
import { GetObjectTypeAttributeStatisticsCommandInput, GetObjectTypeAttributeStatisticsCommandOutput } from "./commands/GetObjectTypeAttributeStatisticsCommand";
|
|
47
52
|
import { GetProfileHistoryRecordCommandInput, GetProfileHistoryRecordCommandOutput } from "./commands/GetProfileHistoryRecordCommand";
|
|
48
53
|
import { GetProfileObjectTypeCommandInput, GetProfileObjectTypeCommandOutput } from "./commands/GetProfileObjectTypeCommand";
|
|
49
54
|
import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateCommandOutput } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
55
|
+
import { GetProfileRecommendationsCommandInput, GetProfileRecommendationsCommandOutput } from "./commands/GetProfileRecommendationsCommand";
|
|
56
|
+
import { GetRecommenderCommandInput, GetRecommenderCommandOutput } from "./commands/GetRecommenderCommand";
|
|
50
57
|
import { GetSegmentDefinitionCommandInput, GetSegmentDefinitionCommandOutput } from "./commands/GetSegmentDefinitionCommand";
|
|
51
58
|
import { GetSegmentEstimateCommandInput, GetSegmentEstimateCommandOutput } from "./commands/GetSegmentEstimateCommand";
|
|
52
59
|
import { GetSegmentMembershipCommandInput, GetSegmentMembershipCommandOutput } from "./commands/GetSegmentMembershipCommand";
|
|
@@ -60,28 +67,35 @@ import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutp
|
|
|
60
67
|
import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
61
68
|
import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
62
69
|
import { ListDomainLayoutsCommandInput, ListDomainLayoutsCommandOutput } from "./commands/ListDomainLayoutsCommand";
|
|
70
|
+
import { ListDomainObjectTypesCommandInput, ListDomainObjectTypesCommandOutput } from "./commands/ListDomainObjectTypesCommand";
|
|
63
71
|
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
|
|
64
72
|
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
|
|
65
73
|
import { ListEventTriggersCommandInput, ListEventTriggersCommandOutput } from "./commands/ListEventTriggersCommand";
|
|
66
74
|
import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "./commands/ListIdentityResolutionJobsCommand";
|
|
67
75
|
import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "./commands/ListIntegrationsCommand";
|
|
68
76
|
import { ListObjectTypeAttributesCommandInput, ListObjectTypeAttributesCommandOutput } from "./commands/ListObjectTypeAttributesCommand";
|
|
77
|
+
import { ListObjectTypeAttributeValuesCommandInput, ListObjectTypeAttributeValuesCommandOutput } from "./commands/ListObjectTypeAttributeValuesCommand";
|
|
69
78
|
import { ListProfileAttributeValuesCommandInput, ListProfileAttributeValuesCommandOutput } from "./commands/ListProfileAttributeValuesCommand";
|
|
70
79
|
import { ListProfileHistoryRecordsCommandInput, ListProfileHistoryRecordsCommandOutput } from "./commands/ListProfileHistoryRecordsCommand";
|
|
71
80
|
import { ListProfileObjectsCommandInput, ListProfileObjectsCommandOutput } from "./commands/ListProfileObjectsCommand";
|
|
72
81
|
import { ListProfileObjectTypesCommandInput, ListProfileObjectTypesCommandOutput } from "./commands/ListProfileObjectTypesCommand";
|
|
73
82
|
import { ListProfileObjectTypeTemplatesCommandInput, ListProfileObjectTypeTemplatesCommandOutput } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
83
|
+
import { ListRecommenderRecipesCommandInput, ListRecommenderRecipesCommandOutput } from "./commands/ListRecommenderRecipesCommand";
|
|
84
|
+
import { ListRecommendersCommandInput, ListRecommendersCommandOutput } from "./commands/ListRecommendersCommand";
|
|
74
85
|
import { ListRuleBasedMatchesCommandInput, ListRuleBasedMatchesCommandOutput } from "./commands/ListRuleBasedMatchesCommand";
|
|
75
86
|
import { ListSegmentDefinitionsCommandInput, ListSegmentDefinitionsCommandOutput } from "./commands/ListSegmentDefinitionsCommand";
|
|
76
87
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
77
88
|
import { ListUploadJobsCommandInput, ListUploadJobsCommandOutput } from "./commands/ListUploadJobsCommand";
|
|
78
89
|
import { ListWorkflowsCommandInput, ListWorkflowsCommandOutput } from "./commands/ListWorkflowsCommand";
|
|
79
90
|
import { MergeProfilesCommandInput, MergeProfilesCommandOutput } from "./commands/MergeProfilesCommand";
|
|
91
|
+
import { PutDomainObjectTypeCommandInput, PutDomainObjectTypeCommandOutput } from "./commands/PutDomainObjectTypeCommand";
|
|
80
92
|
import { PutIntegrationCommandInput, PutIntegrationCommandOutput } from "./commands/PutIntegrationCommand";
|
|
81
93
|
import { PutProfileObjectCommandInput, PutProfileObjectCommandOutput } from "./commands/PutProfileObjectCommand";
|
|
82
94
|
import { PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput } from "./commands/PutProfileObjectTypeCommand";
|
|
83
95
|
import { SearchProfilesCommandInput, SearchProfilesCommandOutput } from "./commands/SearchProfilesCommand";
|
|
96
|
+
import { StartRecommenderCommandInput, StartRecommenderCommandOutput } from "./commands/StartRecommenderCommand";
|
|
84
97
|
import { StartUploadJobCommandInput, StartUploadJobCommandOutput } from "./commands/StartUploadJobCommand";
|
|
98
|
+
import { StopRecommenderCommandInput, StopRecommenderCommandOutput } from "./commands/StopRecommenderCommand";
|
|
85
99
|
import { StopUploadJobCommandInput, StopUploadJobCommandOutput } from "./commands/StopUploadJobCommand";
|
|
86
100
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
87
101
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -90,17 +104,18 @@ import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "./commands/
|
|
|
90
104
|
import { UpdateDomainLayoutCommandInput, UpdateDomainLayoutCommandOutput } from "./commands/UpdateDomainLayoutCommand";
|
|
91
105
|
import { UpdateEventTriggerCommandInput, UpdateEventTriggerCommandOutput } from "./commands/UpdateEventTriggerCommand";
|
|
92
106
|
import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "./commands/UpdateProfileCommand";
|
|
107
|
+
import { UpdateRecommenderCommandInput, UpdateRecommenderCommandOutput } from "./commands/UpdateRecommenderCommand";
|
|
93
108
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
94
109
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
95
110
|
export { __Client };
|
|
96
111
|
/**
|
|
97
112
|
* @public
|
|
98
113
|
*/
|
|
99
|
-
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | CreateUploadJobCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetProfileHistoryRecordCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetUploadJobCommandInput | GetUploadJobPathCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileHistoryRecordsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListUploadJobsCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | StartUploadJobCommandInput | StopUploadJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput;
|
|
114
|
+
export type ServiceInputTypes = AddProfileKeyCommandInput | BatchGetCalculatedAttributeForProfileCommandInput | BatchGetProfileCommandInput | CreateCalculatedAttributeDefinitionCommandInput | CreateDomainCommandInput | CreateDomainLayoutCommandInput | CreateEventStreamCommandInput | CreateEventTriggerCommandInput | CreateIntegrationWorkflowCommandInput | CreateProfileCommandInput | CreateRecommenderCommandInput | CreateSegmentDefinitionCommandInput | CreateSegmentEstimateCommandInput | CreateSegmentSnapshotCommandInput | CreateUploadJobCommandInput | DeleteCalculatedAttributeDefinitionCommandInput | DeleteDomainCommandInput | DeleteDomainLayoutCommandInput | DeleteDomainObjectTypeCommandInput | DeleteEventStreamCommandInput | DeleteEventTriggerCommandInput | DeleteIntegrationCommandInput | DeleteProfileCommandInput | DeleteProfileKeyCommandInput | DeleteProfileObjectCommandInput | DeleteProfileObjectTypeCommandInput | DeleteRecommenderCommandInput | DeleteSegmentDefinitionCommandInput | DeleteWorkflowCommandInput | DetectProfileObjectTypeCommandInput | GetAutoMergingPreviewCommandInput | GetCalculatedAttributeDefinitionCommandInput | GetCalculatedAttributeForProfileCommandInput | GetDomainCommandInput | GetDomainLayoutCommandInput | GetDomainObjectTypeCommandInput | GetEventStreamCommandInput | GetEventTriggerCommandInput | GetIdentityResolutionJobCommandInput | GetIntegrationCommandInput | GetMatchesCommandInput | GetObjectTypeAttributeStatisticsCommandInput | GetProfileHistoryRecordCommandInput | GetProfileObjectTypeCommandInput | GetProfileObjectTypeTemplateCommandInput | GetProfileRecommendationsCommandInput | GetRecommenderCommandInput | GetSegmentDefinitionCommandInput | GetSegmentEstimateCommandInput | GetSegmentMembershipCommandInput | GetSegmentSnapshotCommandInput | GetSimilarProfilesCommandInput | GetUploadJobCommandInput | GetUploadJobPathCommandInput | GetWorkflowCommandInput | GetWorkflowStepsCommandInput | ListAccountIntegrationsCommandInput | ListCalculatedAttributeDefinitionsCommandInput | ListCalculatedAttributesForProfileCommandInput | ListDomainLayoutsCommandInput | ListDomainObjectTypesCommandInput | ListDomainsCommandInput | ListEventStreamsCommandInput | ListEventTriggersCommandInput | ListIdentityResolutionJobsCommandInput | ListIntegrationsCommandInput | ListObjectTypeAttributeValuesCommandInput | ListObjectTypeAttributesCommandInput | ListProfileAttributeValuesCommandInput | ListProfileHistoryRecordsCommandInput | ListProfileObjectTypeTemplatesCommandInput | ListProfileObjectTypesCommandInput | ListProfileObjectsCommandInput | ListRecommenderRecipesCommandInput | ListRecommendersCommandInput | ListRuleBasedMatchesCommandInput | ListSegmentDefinitionsCommandInput | ListTagsForResourceCommandInput | ListUploadJobsCommandInput | ListWorkflowsCommandInput | MergeProfilesCommandInput | PutDomainObjectTypeCommandInput | PutIntegrationCommandInput | PutProfileObjectCommandInput | PutProfileObjectTypeCommandInput | SearchProfilesCommandInput | StartRecommenderCommandInput | StartUploadJobCommandInput | StopRecommenderCommandInput | StopUploadJobCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCalculatedAttributeDefinitionCommandInput | UpdateDomainCommandInput | UpdateDomainLayoutCommandInput | UpdateEventTriggerCommandInput | UpdateProfileCommandInput | UpdateRecommenderCommandInput;
|
|
100
115
|
/**
|
|
101
116
|
* @public
|
|
102
117
|
*/
|
|
103
|
-
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | CreateUploadJobCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetProfileHistoryRecordCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetUploadJobCommandOutput | GetUploadJobPathCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileHistoryRecordsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListUploadJobsCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | StartUploadJobCommandOutput | StopUploadJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput;
|
|
118
|
+
export type ServiceOutputTypes = AddProfileKeyCommandOutput | BatchGetCalculatedAttributeForProfileCommandOutput | BatchGetProfileCommandOutput | CreateCalculatedAttributeDefinitionCommandOutput | CreateDomainCommandOutput | CreateDomainLayoutCommandOutput | CreateEventStreamCommandOutput | CreateEventTriggerCommandOutput | CreateIntegrationWorkflowCommandOutput | CreateProfileCommandOutput | CreateRecommenderCommandOutput | CreateSegmentDefinitionCommandOutput | CreateSegmentEstimateCommandOutput | CreateSegmentSnapshotCommandOutput | CreateUploadJobCommandOutput | DeleteCalculatedAttributeDefinitionCommandOutput | DeleteDomainCommandOutput | DeleteDomainLayoutCommandOutput | DeleteDomainObjectTypeCommandOutput | DeleteEventStreamCommandOutput | DeleteEventTriggerCommandOutput | DeleteIntegrationCommandOutput | DeleteProfileCommandOutput | DeleteProfileKeyCommandOutput | DeleteProfileObjectCommandOutput | DeleteProfileObjectTypeCommandOutput | DeleteRecommenderCommandOutput | DeleteSegmentDefinitionCommandOutput | DeleteWorkflowCommandOutput | DetectProfileObjectTypeCommandOutput | GetAutoMergingPreviewCommandOutput | GetCalculatedAttributeDefinitionCommandOutput | GetCalculatedAttributeForProfileCommandOutput | GetDomainCommandOutput | GetDomainLayoutCommandOutput | GetDomainObjectTypeCommandOutput | GetEventStreamCommandOutput | GetEventTriggerCommandOutput | GetIdentityResolutionJobCommandOutput | GetIntegrationCommandOutput | GetMatchesCommandOutput | GetObjectTypeAttributeStatisticsCommandOutput | GetProfileHistoryRecordCommandOutput | GetProfileObjectTypeCommandOutput | GetProfileObjectTypeTemplateCommandOutput | GetProfileRecommendationsCommandOutput | GetRecommenderCommandOutput | GetSegmentDefinitionCommandOutput | GetSegmentEstimateCommandOutput | GetSegmentMembershipCommandOutput | GetSegmentSnapshotCommandOutput | GetSimilarProfilesCommandOutput | GetUploadJobCommandOutput | GetUploadJobPathCommandOutput | GetWorkflowCommandOutput | GetWorkflowStepsCommandOutput | ListAccountIntegrationsCommandOutput | ListCalculatedAttributeDefinitionsCommandOutput | ListCalculatedAttributesForProfileCommandOutput | ListDomainLayoutsCommandOutput | ListDomainObjectTypesCommandOutput | ListDomainsCommandOutput | ListEventStreamsCommandOutput | ListEventTriggersCommandOutput | ListIdentityResolutionJobsCommandOutput | ListIntegrationsCommandOutput | ListObjectTypeAttributeValuesCommandOutput | ListObjectTypeAttributesCommandOutput | ListProfileAttributeValuesCommandOutput | ListProfileHistoryRecordsCommandOutput | ListProfileObjectTypeTemplatesCommandOutput | ListProfileObjectTypesCommandOutput | ListProfileObjectsCommandOutput | ListRecommenderRecipesCommandOutput | ListRecommendersCommandOutput | ListRuleBasedMatchesCommandOutput | ListSegmentDefinitionsCommandOutput | ListTagsForResourceCommandOutput | ListUploadJobsCommandOutput | ListWorkflowsCommandOutput | MergeProfilesCommandOutput | PutDomainObjectTypeCommandOutput | PutIntegrationCommandOutput | PutProfileObjectCommandOutput | PutProfileObjectTypeCommandOutput | SearchProfilesCommandOutput | StartRecommenderCommandOutput | StartUploadJobCommandOutput | StopRecommenderCommandOutput | StopUploadJobCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCalculatedAttributeDefinitionCommandOutput | UpdateDomainCommandOutput | UpdateDomainLayoutCommandOutput | UpdateEventTriggerCommandOutput | UpdateProfileCommandOutput | UpdateRecommenderCommandOutput;
|
|
104
119
|
/**
|
|
105
120
|
* @public
|
|
106
121
|
*/
|
|
@@ -119,6 +119,9 @@ declare const CreateDomainCommand_base: {
|
|
|
119
119
|
* },
|
|
120
120
|
* },
|
|
121
121
|
* },
|
|
122
|
+
* DataStore: { // DataStoreRequest
|
|
123
|
+
* Enabled: true || false,
|
|
124
|
+
* },
|
|
122
125
|
* Tags: { // TagMap
|
|
123
126
|
* "<keys>": "STRING_VALUE",
|
|
124
127
|
* },
|
|
@@ -193,6 +196,13 @@ declare const CreateDomainCommand_base: {
|
|
|
193
196
|
* // },
|
|
194
197
|
* // },
|
|
195
198
|
* // },
|
|
199
|
+
* // DataStore: { // DataStoreResponse
|
|
200
|
+
* // Enabled: true || false,
|
|
201
|
+
* // Readiness: { // Readiness
|
|
202
|
+
* // ProgressPercentage: Number("int"),
|
|
203
|
+
* // Message: "STRING_VALUE",
|
|
204
|
+
* // },
|
|
205
|
+
* // },
|
|
196
206
|
* // CreatedAt: new Date("TIMESTAMP"), // required
|
|
197
207
|
* // LastUpdatedAt: new Date("TIMESTAMP"), // required
|
|
198
208
|
* // Tags: { // TagMap
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CustomerProfilesClient";
|
|
4
|
+
import { CreateRecommenderRequest, CreateRecommenderResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link CreateRecommenderCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateRecommenderCommandInput extends CreateRecommenderRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link CreateRecommenderCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface CreateRecommenderCommandOutput extends CreateRecommenderResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const CreateRecommenderCommand_base: {
|
|
25
|
+
new (input: CreateRecommenderCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRecommenderCommandInput, CreateRecommenderCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: CreateRecommenderCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRecommenderCommandInput, CreateRecommenderCommandOutput, CustomerProfilesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Creates a recommender</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { CustomerProfilesClient, CreateRecommenderCommand } from "@aws-sdk/client-customer-profiles"; // ES Modules import
|
|
35
|
+
* // const { CustomerProfilesClient, CreateRecommenderCommand } = require("@aws-sdk/client-customer-profiles"); // CommonJS import
|
|
36
|
+
* // import type { CustomerProfilesClientConfig } from "@aws-sdk/client-customer-profiles";
|
|
37
|
+
* const config = {}; // type is CustomerProfilesClientConfig
|
|
38
|
+
* const client = new CustomerProfilesClient(config);
|
|
39
|
+
* const input = { // CreateRecommenderRequest
|
|
40
|
+
* DomainName: "STRING_VALUE", // required
|
|
41
|
+
* RecommenderName: "STRING_VALUE", // required
|
|
42
|
+
* RecommenderRecipeName: "recommended-for-you" || "similar-items" || "frequently-paired-items" || "popular-items" || "trending-now", // required
|
|
43
|
+
* RecommenderConfig: { // RecommenderConfig
|
|
44
|
+
* EventsConfig: { // EventsConfig
|
|
45
|
+
* EventParametersList: [ // EventParametersList // required
|
|
46
|
+
* { // EventParameters
|
|
47
|
+
* EventType: "STRING_VALUE", // required
|
|
48
|
+
* EventValueThreshold: Number("double"),
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* },
|
|
52
|
+
* TrainingFrequency: Number("int"),
|
|
53
|
+
* },
|
|
54
|
+
* Description: "STRING_VALUE",
|
|
55
|
+
* Tags: { // TagMap
|
|
56
|
+
* "<keys>": "STRING_VALUE",
|
|
57
|
+
* },
|
|
58
|
+
* };
|
|
59
|
+
* const command = new CreateRecommenderCommand(input);
|
|
60
|
+
* const response = await client.send(command);
|
|
61
|
+
* // { // CreateRecommenderResponse
|
|
62
|
+
* // RecommenderArn: "STRING_VALUE", // required
|
|
63
|
+
* // Tags: { // TagMap
|
|
64
|
+
* // "<keys>": "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
68
|
+
* ```
|
|
69
|
+
*
|
|
70
|
+
* @param CreateRecommenderCommandInput - {@link CreateRecommenderCommandInput}
|
|
71
|
+
* @returns {@link CreateRecommenderCommandOutput}
|
|
72
|
+
* @see {@link CreateRecommenderCommandInput} for command's `input` shape.
|
|
73
|
+
* @see {@link CreateRecommenderCommandOutput} for command's `response` shape.
|
|
74
|
+
* @see {@link CustomerProfilesClientResolvedConfig | config} for CustomerProfilesClient's `config` shape.
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
77
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link BadRequestException} (client fault)
|
|
80
|
+
* <p>The input you provided is invalid.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link InternalServerException} (server fault)
|
|
83
|
+
* <p>An internal service error occurred.</p>
|
|
84
|
+
*
|
|
85
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
86
|
+
* <p>The requested resource does not exist, or access was denied.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
89
|
+
* <p>You exceeded the maximum number of requests.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link CustomerProfilesServiceException}
|
|
92
|
+
* <p>Base exception class for all service exceptions from CustomerProfiles service.</p>
|
|
93
|
+
*
|
|
94
|
+
*
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export declare class CreateRecommenderCommand extends CreateRecommenderCommand_base {
|
|
98
|
+
/** @internal type navigation helper, not in runtime. */
|
|
99
|
+
protected static __types: {
|
|
100
|
+
api: {
|
|
101
|
+
input: CreateRecommenderRequest;
|
|
102
|
+
output: CreateRecommenderResponse;
|
|
103
|
+
};
|
|
104
|
+
sdk: {
|
|
105
|
+
input: CreateRecommenderCommandInput;
|
|
106
|
+
output: CreateRecommenderCommandOutput;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
}
|
|
@@ -166,6 +166,7 @@ declare const CreateSegmentEstimateCommand_base: {
|
|
|
166
166
|
* ],
|
|
167
167
|
* Include: "ALL" || "ANY" || "NONE",
|
|
168
168
|
* },
|
|
169
|
+
* SegmentSqlQuery: "STRING_VALUE",
|
|
169
170
|
* };
|
|
170
171
|
* const command = new CreateSegmentEstimateCommand(input);
|
|
171
172
|
* const response = await client.send(command);
|