@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 { CreateEventStreamCommand, } from "./commands/CreateEventStreamCommand";
|
|
|
9
9
|
import { CreateEventTriggerCommand, } from "./commands/CreateEventTriggerCommand";
|
|
10
10
|
import { CreateIntegrationWorkflowCommand, } from "./commands/CreateIntegrationWorkflowCommand";
|
|
11
11
|
import { CreateProfileCommand, } from "./commands/CreateProfileCommand";
|
|
12
|
+
import { CreateRecommenderCommand, } from "./commands/CreateRecommenderCommand";
|
|
12
13
|
import { CreateSegmentDefinitionCommand, } from "./commands/CreateSegmentDefinitionCommand";
|
|
13
14
|
import { CreateSegmentEstimateCommand, } from "./commands/CreateSegmentEstimateCommand";
|
|
14
15
|
import { CreateSegmentSnapshotCommand, } from "./commands/CreateSegmentSnapshotCommand";
|
|
@@ -16,6 +17,7 @@ import { CreateUploadJobCommand, } from "./commands/CreateUploadJobCommand";
|
|
|
16
17
|
import { DeleteCalculatedAttributeDefinitionCommand, } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
|
|
17
18
|
import { DeleteDomainCommand, } from "./commands/DeleteDomainCommand";
|
|
18
19
|
import { DeleteDomainLayoutCommand, } from "./commands/DeleteDomainLayoutCommand";
|
|
20
|
+
import { DeleteDomainObjectTypeCommand, } from "./commands/DeleteDomainObjectTypeCommand";
|
|
19
21
|
import { DeleteEventStreamCommand, } from "./commands/DeleteEventStreamCommand";
|
|
20
22
|
import { DeleteEventTriggerCommand, } from "./commands/DeleteEventTriggerCommand";
|
|
21
23
|
import { DeleteIntegrationCommand, } from "./commands/DeleteIntegrationCommand";
|
|
@@ -23,6 +25,7 @@ import { DeleteProfileCommand, } from "./commands/DeleteProfileCommand";
|
|
|
23
25
|
import { DeleteProfileKeyCommand, } from "./commands/DeleteProfileKeyCommand";
|
|
24
26
|
import { DeleteProfileObjectCommand, } from "./commands/DeleteProfileObjectCommand";
|
|
25
27
|
import { DeleteProfileObjectTypeCommand, } from "./commands/DeleteProfileObjectTypeCommand";
|
|
28
|
+
import { DeleteRecommenderCommand, } from "./commands/DeleteRecommenderCommand";
|
|
26
29
|
import { DeleteSegmentDefinitionCommand, } from "./commands/DeleteSegmentDefinitionCommand";
|
|
27
30
|
import { DeleteWorkflowCommand, } from "./commands/DeleteWorkflowCommand";
|
|
28
31
|
import { DetectProfileObjectTypeCommand, } from "./commands/DetectProfileObjectTypeCommand";
|
|
@@ -31,14 +34,18 @@ import { GetCalculatedAttributeDefinitionCommand, } from "./commands/GetCalculat
|
|
|
31
34
|
import { GetCalculatedAttributeForProfileCommand, } from "./commands/GetCalculatedAttributeForProfileCommand";
|
|
32
35
|
import { GetDomainCommand } from "./commands/GetDomainCommand";
|
|
33
36
|
import { GetDomainLayoutCommand, } from "./commands/GetDomainLayoutCommand";
|
|
37
|
+
import { GetDomainObjectTypeCommand, } from "./commands/GetDomainObjectTypeCommand";
|
|
34
38
|
import { GetEventStreamCommand, } from "./commands/GetEventStreamCommand";
|
|
35
39
|
import { GetEventTriggerCommand, } from "./commands/GetEventTriggerCommand";
|
|
36
40
|
import { GetIdentityResolutionJobCommand, } from "./commands/GetIdentityResolutionJobCommand";
|
|
37
41
|
import { GetIntegrationCommand, } from "./commands/GetIntegrationCommand";
|
|
38
42
|
import { GetMatchesCommand } from "./commands/GetMatchesCommand";
|
|
43
|
+
import { GetObjectTypeAttributeStatisticsCommand, } from "./commands/GetObjectTypeAttributeStatisticsCommand";
|
|
39
44
|
import { GetProfileHistoryRecordCommand, } from "./commands/GetProfileHistoryRecordCommand";
|
|
40
45
|
import { GetProfileObjectTypeCommand, } from "./commands/GetProfileObjectTypeCommand";
|
|
41
46
|
import { GetProfileObjectTypeTemplateCommand, } from "./commands/GetProfileObjectTypeTemplateCommand";
|
|
47
|
+
import { GetProfileRecommendationsCommand, } from "./commands/GetProfileRecommendationsCommand";
|
|
48
|
+
import { GetRecommenderCommand, } from "./commands/GetRecommenderCommand";
|
|
42
49
|
import { GetSegmentDefinitionCommand, } from "./commands/GetSegmentDefinitionCommand";
|
|
43
50
|
import { GetSegmentEstimateCommand, } from "./commands/GetSegmentEstimateCommand";
|
|
44
51
|
import { GetSegmentMembershipCommand, } from "./commands/GetSegmentMembershipCommand";
|
|
@@ -52,28 +59,35 @@ import { ListAccountIntegrationsCommand, } from "./commands/ListAccountIntegrati
|
|
|
52
59
|
import { ListCalculatedAttributeDefinitionsCommand, } from "./commands/ListCalculatedAttributeDefinitionsCommand";
|
|
53
60
|
import { ListCalculatedAttributesForProfileCommand, } from "./commands/ListCalculatedAttributesForProfileCommand";
|
|
54
61
|
import { ListDomainLayoutsCommand, } from "./commands/ListDomainLayoutsCommand";
|
|
62
|
+
import { ListDomainObjectTypesCommand, } from "./commands/ListDomainObjectTypesCommand";
|
|
55
63
|
import { ListDomainsCommand } from "./commands/ListDomainsCommand";
|
|
56
64
|
import { ListEventStreamsCommand, } from "./commands/ListEventStreamsCommand";
|
|
57
65
|
import { ListEventTriggersCommand, } from "./commands/ListEventTriggersCommand";
|
|
58
66
|
import { ListIdentityResolutionJobsCommand, } from "./commands/ListIdentityResolutionJobsCommand";
|
|
59
67
|
import { ListIntegrationsCommand, } from "./commands/ListIntegrationsCommand";
|
|
60
68
|
import { ListObjectTypeAttributesCommand, } from "./commands/ListObjectTypeAttributesCommand";
|
|
69
|
+
import { ListObjectTypeAttributeValuesCommand, } from "./commands/ListObjectTypeAttributeValuesCommand";
|
|
61
70
|
import { ListProfileAttributeValuesCommand, } from "./commands/ListProfileAttributeValuesCommand";
|
|
62
71
|
import { ListProfileHistoryRecordsCommand, } from "./commands/ListProfileHistoryRecordsCommand";
|
|
63
72
|
import { ListProfileObjectsCommand, } from "./commands/ListProfileObjectsCommand";
|
|
64
73
|
import { ListProfileObjectTypesCommand, } from "./commands/ListProfileObjectTypesCommand";
|
|
65
74
|
import { ListProfileObjectTypeTemplatesCommand, } from "./commands/ListProfileObjectTypeTemplatesCommand";
|
|
75
|
+
import { ListRecommenderRecipesCommand, } from "./commands/ListRecommenderRecipesCommand";
|
|
76
|
+
import { ListRecommendersCommand, } from "./commands/ListRecommendersCommand";
|
|
66
77
|
import { ListRuleBasedMatchesCommand, } from "./commands/ListRuleBasedMatchesCommand";
|
|
67
78
|
import { ListSegmentDefinitionsCommand, } from "./commands/ListSegmentDefinitionsCommand";
|
|
68
79
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
69
80
|
import { ListUploadJobsCommand, } from "./commands/ListUploadJobsCommand";
|
|
70
81
|
import { ListWorkflowsCommand, } from "./commands/ListWorkflowsCommand";
|
|
71
82
|
import { MergeProfilesCommand, } from "./commands/MergeProfilesCommand";
|
|
83
|
+
import { PutDomainObjectTypeCommand, } from "./commands/PutDomainObjectTypeCommand";
|
|
72
84
|
import { PutIntegrationCommand, } from "./commands/PutIntegrationCommand";
|
|
73
85
|
import { PutProfileObjectCommand, } from "./commands/PutProfileObjectCommand";
|
|
74
86
|
import { PutProfileObjectTypeCommand, } from "./commands/PutProfileObjectTypeCommand";
|
|
75
87
|
import { SearchProfilesCommand, } from "./commands/SearchProfilesCommand";
|
|
88
|
+
import { StartRecommenderCommand, } from "./commands/StartRecommenderCommand";
|
|
76
89
|
import { StartUploadJobCommand, } from "./commands/StartUploadJobCommand";
|
|
90
|
+
import { StopRecommenderCommand, } from "./commands/StopRecommenderCommand";
|
|
77
91
|
import { StopUploadJobCommand, } from "./commands/StopUploadJobCommand";
|
|
78
92
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
79
93
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
@@ -82,6 +96,7 @@ import { UpdateDomainCommand, } from "./commands/UpdateDomainCommand";
|
|
|
82
96
|
import { UpdateDomainLayoutCommand, } from "./commands/UpdateDomainLayoutCommand";
|
|
83
97
|
import { UpdateEventTriggerCommand, } from "./commands/UpdateEventTriggerCommand";
|
|
84
98
|
import { UpdateProfileCommand, } from "./commands/UpdateProfileCommand";
|
|
99
|
+
import { UpdateRecommenderCommand, } from "./commands/UpdateRecommenderCommand";
|
|
85
100
|
import { CustomerProfilesClient } from "./CustomerProfilesClient";
|
|
86
101
|
const commands = {
|
|
87
102
|
AddProfileKeyCommand,
|
|
@@ -94,6 +109,7 @@ const commands = {
|
|
|
94
109
|
CreateEventTriggerCommand,
|
|
95
110
|
CreateIntegrationWorkflowCommand,
|
|
96
111
|
CreateProfileCommand,
|
|
112
|
+
CreateRecommenderCommand,
|
|
97
113
|
CreateSegmentDefinitionCommand,
|
|
98
114
|
CreateSegmentEstimateCommand,
|
|
99
115
|
CreateSegmentSnapshotCommand,
|
|
@@ -101,6 +117,7 @@ const commands = {
|
|
|
101
117
|
DeleteCalculatedAttributeDefinitionCommand,
|
|
102
118
|
DeleteDomainCommand,
|
|
103
119
|
DeleteDomainLayoutCommand,
|
|
120
|
+
DeleteDomainObjectTypeCommand,
|
|
104
121
|
DeleteEventStreamCommand,
|
|
105
122
|
DeleteEventTriggerCommand,
|
|
106
123
|
DeleteIntegrationCommand,
|
|
@@ -108,6 +125,7 @@ const commands = {
|
|
|
108
125
|
DeleteProfileKeyCommand,
|
|
109
126
|
DeleteProfileObjectCommand,
|
|
110
127
|
DeleteProfileObjectTypeCommand,
|
|
128
|
+
DeleteRecommenderCommand,
|
|
111
129
|
DeleteSegmentDefinitionCommand,
|
|
112
130
|
DeleteWorkflowCommand,
|
|
113
131
|
DetectProfileObjectTypeCommand,
|
|
@@ -116,14 +134,18 @@ const commands = {
|
|
|
116
134
|
GetCalculatedAttributeForProfileCommand,
|
|
117
135
|
GetDomainCommand,
|
|
118
136
|
GetDomainLayoutCommand,
|
|
137
|
+
GetDomainObjectTypeCommand,
|
|
119
138
|
GetEventStreamCommand,
|
|
120
139
|
GetEventTriggerCommand,
|
|
121
140
|
GetIdentityResolutionJobCommand,
|
|
122
141
|
GetIntegrationCommand,
|
|
123
142
|
GetMatchesCommand,
|
|
143
|
+
GetObjectTypeAttributeStatisticsCommand,
|
|
124
144
|
GetProfileHistoryRecordCommand,
|
|
125
145
|
GetProfileObjectTypeCommand,
|
|
126
146
|
GetProfileObjectTypeTemplateCommand,
|
|
147
|
+
GetProfileRecommendationsCommand,
|
|
148
|
+
GetRecommenderCommand,
|
|
127
149
|
GetSegmentDefinitionCommand,
|
|
128
150
|
GetSegmentEstimateCommand,
|
|
129
151
|
GetSegmentMembershipCommand,
|
|
@@ -137,28 +159,35 @@ const commands = {
|
|
|
137
159
|
ListCalculatedAttributeDefinitionsCommand,
|
|
138
160
|
ListCalculatedAttributesForProfileCommand,
|
|
139
161
|
ListDomainLayoutsCommand,
|
|
162
|
+
ListDomainObjectTypesCommand,
|
|
140
163
|
ListDomainsCommand,
|
|
141
164
|
ListEventStreamsCommand,
|
|
142
165
|
ListEventTriggersCommand,
|
|
143
166
|
ListIdentityResolutionJobsCommand,
|
|
144
167
|
ListIntegrationsCommand,
|
|
145
168
|
ListObjectTypeAttributesCommand,
|
|
169
|
+
ListObjectTypeAttributeValuesCommand,
|
|
146
170
|
ListProfileAttributeValuesCommand,
|
|
147
171
|
ListProfileHistoryRecordsCommand,
|
|
148
172
|
ListProfileObjectsCommand,
|
|
149
173
|
ListProfileObjectTypesCommand,
|
|
150
174
|
ListProfileObjectTypeTemplatesCommand,
|
|
175
|
+
ListRecommenderRecipesCommand,
|
|
176
|
+
ListRecommendersCommand,
|
|
151
177
|
ListRuleBasedMatchesCommand,
|
|
152
178
|
ListSegmentDefinitionsCommand,
|
|
153
179
|
ListTagsForResourceCommand,
|
|
154
180
|
ListUploadJobsCommand,
|
|
155
181
|
ListWorkflowsCommand,
|
|
156
182
|
MergeProfilesCommand,
|
|
183
|
+
PutDomainObjectTypeCommand,
|
|
157
184
|
PutIntegrationCommand,
|
|
158
185
|
PutProfileObjectCommand,
|
|
159
186
|
PutProfileObjectTypeCommand,
|
|
160
187
|
SearchProfilesCommand,
|
|
188
|
+
StartRecommenderCommand,
|
|
161
189
|
StartUploadJobCommand,
|
|
190
|
+
StopRecommenderCommand,
|
|
162
191
|
StopUploadJobCommand,
|
|
163
192
|
TagResourceCommand,
|
|
164
193
|
UntagResourceCommand,
|
|
@@ -167,6 +196,7 @@ const commands = {
|
|
|
167
196
|
UpdateDomainLayoutCommand,
|
|
168
197
|
UpdateEventTriggerCommand,
|
|
169
198
|
UpdateProfileCommand,
|
|
199
|
+
UpdateRecommenderCommand,
|
|
170
200
|
};
|
|
171
201
|
export class CustomerProfiles extends CustomerProfilesClient {
|
|
172
202
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { CreateRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class CreateRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "CreateRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "CreateRecommenderCommand")
|
|
14
|
+
.sc(CreateRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteDomainObjectType } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteDomainObjectTypeCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "DeleteDomainObjectType", {})
|
|
13
|
+
.n("CustomerProfilesClient", "DeleteDomainObjectTypeCommand")
|
|
14
|
+
.sc(DeleteDomainObjectType)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { DeleteRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class DeleteRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "DeleteRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "DeleteRecommenderCommand")
|
|
14
|
+
.sc(DeleteRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetDomainObjectType } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetDomainObjectTypeCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "GetDomainObjectType", {})
|
|
13
|
+
.n("CustomerProfilesClient", "GetDomainObjectTypeCommand")
|
|
14
|
+
.sc(GetDomainObjectType)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetObjectTypeAttributeStatistics } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetObjectTypeAttributeStatisticsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "GetObjectTypeAttributeStatistics", {})
|
|
13
|
+
.n("CustomerProfilesClient", "GetObjectTypeAttributeStatisticsCommand")
|
|
14
|
+
.sc(GetObjectTypeAttributeStatistics)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetProfileRecommendations } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetProfileRecommendationsCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "GetProfileRecommendations", {})
|
|
13
|
+
.n("CustomerProfilesClient", "GetProfileRecommendationsCommand")
|
|
14
|
+
.sc(GetProfileRecommendations)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { GetRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class GetRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "GetRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "GetRecommenderCommand")
|
|
14
|
+
.sc(GetRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListDomainObjectTypes } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListDomainObjectTypesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "ListDomainObjectTypes", {})
|
|
13
|
+
.n("CustomerProfilesClient", "ListDomainObjectTypesCommand")
|
|
14
|
+
.sc(ListDomainObjectTypes)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListObjectTypeAttributeValues } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListObjectTypeAttributeValuesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "ListObjectTypeAttributeValues", {})
|
|
13
|
+
.n("CustomerProfilesClient", "ListObjectTypeAttributeValuesCommand")
|
|
14
|
+
.sc(ListObjectTypeAttributeValues)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListRecommenderRecipes } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListRecommenderRecipesCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "ListRecommenderRecipes", {})
|
|
13
|
+
.n("CustomerProfilesClient", "ListRecommenderRecipesCommand")
|
|
14
|
+
.sc(ListRecommenderRecipes)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { ListRecommenders } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class ListRecommendersCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "ListRecommenders", {})
|
|
13
|
+
.n("CustomerProfilesClient", "ListRecommendersCommand")
|
|
14
|
+
.sc(ListRecommenders)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { PutDomainObjectType } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class PutDomainObjectTypeCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "PutDomainObjectType", {})
|
|
13
|
+
.n("CustomerProfilesClient", "PutDomainObjectTypeCommand")
|
|
14
|
+
.sc(PutDomainObjectType)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StartRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StartRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "StartRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "StartRecommenderCommand")
|
|
14
|
+
.sc(StartRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { StopRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class StopRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "StopRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "StopRecommenderCommand")
|
|
14
|
+
.sc(StopRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { UpdateRecommender } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class UpdateRecommenderCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("CustomerProfiles_20200815", "UpdateRecommender", {})
|
|
13
|
+
.n("CustomerProfilesClient", "UpdateRecommenderCommand")
|
|
14
|
+
.sc(UpdateRecommender)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -8,6 +8,7 @@ export * from "./CreateEventStreamCommand";
|
|
|
8
8
|
export * from "./CreateEventTriggerCommand";
|
|
9
9
|
export * from "./CreateIntegrationWorkflowCommand";
|
|
10
10
|
export * from "./CreateProfileCommand";
|
|
11
|
+
export * from "./CreateRecommenderCommand";
|
|
11
12
|
export * from "./CreateSegmentDefinitionCommand";
|
|
12
13
|
export * from "./CreateSegmentEstimateCommand";
|
|
13
14
|
export * from "./CreateSegmentSnapshotCommand";
|
|
@@ -15,6 +16,7 @@ export * from "./CreateUploadJobCommand";
|
|
|
15
16
|
export * from "./DeleteCalculatedAttributeDefinitionCommand";
|
|
16
17
|
export * from "./DeleteDomainCommand";
|
|
17
18
|
export * from "./DeleteDomainLayoutCommand";
|
|
19
|
+
export * from "./DeleteDomainObjectTypeCommand";
|
|
18
20
|
export * from "./DeleteEventStreamCommand";
|
|
19
21
|
export * from "./DeleteEventTriggerCommand";
|
|
20
22
|
export * from "./DeleteIntegrationCommand";
|
|
@@ -22,6 +24,7 @@ export * from "./DeleteProfileCommand";
|
|
|
22
24
|
export * from "./DeleteProfileKeyCommand";
|
|
23
25
|
export * from "./DeleteProfileObjectCommand";
|
|
24
26
|
export * from "./DeleteProfileObjectTypeCommand";
|
|
27
|
+
export * from "./DeleteRecommenderCommand";
|
|
25
28
|
export * from "./DeleteSegmentDefinitionCommand";
|
|
26
29
|
export * from "./DeleteWorkflowCommand";
|
|
27
30
|
export * from "./DetectProfileObjectTypeCommand";
|
|
@@ -30,14 +33,18 @@ export * from "./GetCalculatedAttributeDefinitionCommand";
|
|
|
30
33
|
export * from "./GetCalculatedAttributeForProfileCommand";
|
|
31
34
|
export * from "./GetDomainCommand";
|
|
32
35
|
export * from "./GetDomainLayoutCommand";
|
|
36
|
+
export * from "./GetDomainObjectTypeCommand";
|
|
33
37
|
export * from "./GetEventStreamCommand";
|
|
34
38
|
export * from "./GetEventTriggerCommand";
|
|
35
39
|
export * from "./GetIdentityResolutionJobCommand";
|
|
36
40
|
export * from "./GetIntegrationCommand";
|
|
37
41
|
export * from "./GetMatchesCommand";
|
|
42
|
+
export * from "./GetObjectTypeAttributeStatisticsCommand";
|
|
38
43
|
export * from "./GetProfileHistoryRecordCommand";
|
|
39
44
|
export * from "./GetProfileObjectTypeCommand";
|
|
40
45
|
export * from "./GetProfileObjectTypeTemplateCommand";
|
|
46
|
+
export * from "./GetProfileRecommendationsCommand";
|
|
47
|
+
export * from "./GetRecommenderCommand";
|
|
41
48
|
export * from "./GetSegmentDefinitionCommand";
|
|
42
49
|
export * from "./GetSegmentEstimateCommand";
|
|
43
50
|
export * from "./GetSegmentMembershipCommand";
|
|
@@ -51,28 +58,35 @@ export * from "./ListAccountIntegrationsCommand";
|
|
|
51
58
|
export * from "./ListCalculatedAttributeDefinitionsCommand";
|
|
52
59
|
export * from "./ListCalculatedAttributesForProfileCommand";
|
|
53
60
|
export * from "./ListDomainLayoutsCommand";
|
|
61
|
+
export * from "./ListDomainObjectTypesCommand";
|
|
54
62
|
export * from "./ListDomainsCommand";
|
|
55
63
|
export * from "./ListEventStreamsCommand";
|
|
56
64
|
export * from "./ListEventTriggersCommand";
|
|
57
65
|
export * from "./ListIdentityResolutionJobsCommand";
|
|
58
66
|
export * from "./ListIntegrationsCommand";
|
|
67
|
+
export * from "./ListObjectTypeAttributeValuesCommand";
|
|
59
68
|
export * from "./ListObjectTypeAttributesCommand";
|
|
60
69
|
export * from "./ListProfileAttributeValuesCommand";
|
|
61
70
|
export * from "./ListProfileHistoryRecordsCommand";
|
|
62
71
|
export * from "./ListProfileObjectTypeTemplatesCommand";
|
|
63
72
|
export * from "./ListProfileObjectTypesCommand";
|
|
64
73
|
export * from "./ListProfileObjectsCommand";
|
|
74
|
+
export * from "./ListRecommenderRecipesCommand";
|
|
75
|
+
export * from "./ListRecommendersCommand";
|
|
65
76
|
export * from "./ListRuleBasedMatchesCommand";
|
|
66
77
|
export * from "./ListSegmentDefinitionsCommand";
|
|
67
78
|
export * from "./ListTagsForResourceCommand";
|
|
68
79
|
export * from "./ListUploadJobsCommand";
|
|
69
80
|
export * from "./ListWorkflowsCommand";
|
|
70
81
|
export * from "./MergeProfilesCommand";
|
|
82
|
+
export * from "./PutDomainObjectTypeCommand";
|
|
71
83
|
export * from "./PutIntegrationCommand";
|
|
72
84
|
export * from "./PutProfileObjectCommand";
|
|
73
85
|
export * from "./PutProfileObjectTypeCommand";
|
|
74
86
|
export * from "./SearchProfilesCommand";
|
|
87
|
+
export * from "./StartRecommenderCommand";
|
|
75
88
|
export * from "./StartUploadJobCommand";
|
|
89
|
+
export * from "./StopRecommenderCommand";
|
|
76
90
|
export * from "./StopUploadJobCommand";
|
|
77
91
|
export * from "./TagResourceCommand";
|
|
78
92
|
export * from "./UntagResourceCommand";
|
|
@@ -81,3 +95,4 @@ export * from "./UpdateDomainCommand";
|
|
|
81
95
|
export * from "./UpdateDomainLayoutCommand";
|
|
82
96
|
export * from "./UpdateEventTriggerCommand";
|
|
83
97
|
export * from "./UpdateProfileCommand";
|
|
98
|
+
export * from "./UpdateRecommenderCommand";
|
package/dist-es/models/enums.js
CHANGED
|
@@ -268,6 +268,10 @@ export const Operator = {
|
|
|
268
268
|
LESS_THAN: "LESS_THAN",
|
|
269
269
|
NOT_EQUAL_TO: "NOT_EQUAL_TO",
|
|
270
270
|
};
|
|
271
|
+
export const ContentType = {
|
|
272
|
+
NUMBER: "NUMBER",
|
|
273
|
+
STRING: "STRING",
|
|
274
|
+
};
|
|
271
275
|
export const Type = {
|
|
272
276
|
ALL: "ALL",
|
|
273
277
|
ANY: "ANY",
|
|
@@ -319,6 +323,13 @@ export const PeriodUnit = {
|
|
|
319
323
|
export const WorkflowType = {
|
|
320
324
|
APPFLOW_INTEGRATION: "APPFLOW_INTEGRATION",
|
|
321
325
|
};
|
|
326
|
+
export const RecommenderRecipeName = {
|
|
327
|
+
FREQUENTLY_PAIRED_ITEMS: "frequently-paired-items",
|
|
328
|
+
POPULAR_ITEMS: "popular-items",
|
|
329
|
+
RECOMMENDED_FOR_YOU: "recommended-for-you",
|
|
330
|
+
SIMILAR_ITEMS: "similar-items",
|
|
331
|
+
TRENDING_NOW: "trending-now",
|
|
332
|
+
};
|
|
322
333
|
export const DateDimensionType = {
|
|
323
334
|
AFTER: "AFTER",
|
|
324
335
|
BEFORE: "BEFORE",
|
|
@@ -367,6 +378,10 @@ export const StandardIdentifier = {
|
|
|
367
378
|
SECONDARY: "SECONDARY",
|
|
368
379
|
UNIQUE: "UNIQUE",
|
|
369
380
|
};
|
|
381
|
+
export const FeatureType = {
|
|
382
|
+
CATEGORICAL: "CATEGORICAL",
|
|
383
|
+
TEXTUAL: "TEXTUAL",
|
|
384
|
+
};
|
|
370
385
|
export const EventStreamDestinationStatus = {
|
|
371
386
|
HEALTHY: "HEALTHY",
|
|
372
387
|
UNHEALTHY: "UNHEALTHY",
|
|
@@ -384,6 +399,32 @@ export const IdentityResolutionJobStatus = {
|
|
|
384
399
|
PENDING: "PENDING",
|
|
385
400
|
PREPROCESSING: "PREPROCESSING",
|
|
386
401
|
};
|
|
402
|
+
export const Scope = {
|
|
403
|
+
DOMAIN: "DOMAIN",
|
|
404
|
+
PROFILE: "PROFILE",
|
|
405
|
+
};
|
|
406
|
+
export const RecommenderStatus = {
|
|
407
|
+
ACTIVE: "ACTIVE",
|
|
408
|
+
DELETING: "DELETING",
|
|
409
|
+
FAILED: "FAILED",
|
|
410
|
+
INACTIVE: "INACTIVE",
|
|
411
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
412
|
+
PENDING: "PENDING",
|
|
413
|
+
STARTING: "STARTING",
|
|
414
|
+
STOPPING: "STOPPING",
|
|
415
|
+
};
|
|
416
|
+
export const TrainingMetricName = {
|
|
417
|
+
COVERAGE: "coverage",
|
|
418
|
+
FRESHNESS: "freshness",
|
|
419
|
+
HIT: "hit",
|
|
420
|
+
POPULARITY: "popularity",
|
|
421
|
+
RECALL: "recall",
|
|
422
|
+
SIMILARITY: "similarity",
|
|
423
|
+
};
|
|
424
|
+
export const SegmentType = {
|
|
425
|
+
CLASSIC: "CLASSIC",
|
|
426
|
+
ENHANCED: "ENHANCED",
|
|
427
|
+
};
|
|
387
428
|
export const EstimateStatus = {
|
|
388
429
|
FAILED: "FAILED",
|
|
389
430
|
RUNNING: "RUNNING",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListDomainObjectTypesCommand, } from "../commands/ListDomainObjectTypesCommand";
|
|
3
|
+
import { CustomerProfilesClient } from "../CustomerProfilesClient";
|
|
4
|
+
export const paginateListDomainObjectTypes = createPaginator(CustomerProfilesClient, ListDomainObjectTypesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecommenderRecipesCommand, } from "../commands/ListRecommenderRecipesCommand";
|
|
3
|
+
import { CustomerProfilesClient } from "../CustomerProfilesClient";
|
|
4
|
+
export const paginateListRecommenderRecipes = createPaginator(CustomerProfilesClient, ListRecommenderRecipesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListRecommendersCommand, } from "../commands/ListRecommendersCommand";
|
|
3
|
+
import { CustomerProfilesClient } from "../CustomerProfilesClient";
|
|
4
|
+
export const paginateListRecommenders = createPaginator(CustomerProfilesClient, ListRecommendersCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
export * from "./GetSimilarProfilesPaginator";
|
|
2
2
|
export * from "./Interfaces";
|
|
3
3
|
export * from "./ListDomainLayoutsPaginator";
|
|
4
|
+
export * from "./ListDomainObjectTypesPaginator";
|
|
4
5
|
export * from "./ListEventStreamsPaginator";
|
|
5
6
|
export * from "./ListEventTriggersPaginator";
|
|
6
7
|
export * from "./ListObjectTypeAttributesPaginator";
|
|
8
|
+
export * from "./ListRecommenderRecipesPaginator";
|
|
9
|
+
export * from "./ListRecommendersPaginator";
|
|
7
10
|
export * from "./ListRuleBasedMatchesPaginator";
|
|
8
11
|
export * from "./ListSegmentDefinitionsPaginator";
|
|
9
12
|
export * from "./ListUploadJobsPaginator";
|