@aws-sdk/client-customer-profiles 3.1029.0 → 3.1031.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/dist-cjs/index.js +92 -4
- package/dist-cjs/schemas/schemas_0.js +148 -31
- package/dist-es/CustomerProfiles.js +10 -0
- package/dist-es/commands/CreateRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/DeleteRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/GetRecommenderSchemaCommand.js +16 -0
- package/dist-es/commands/ListRecommenderSchemasCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +28 -4
- package/dist-es/pagination/ListRecommenderSchemasPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +139 -23
- package/dist-types/CustomerProfiles.d.ts +35 -0
- package/dist-types/CustomerProfilesClient.d.ts +6 -2
- package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
- package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +1 -0
- package/dist-types/commands/CreateRecommenderSchemaCommand.d.ts +117 -0
- package/dist-types/commands/CreateSegmentDefinitionCommand.d.ts +10 -0
- package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
- package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
- package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
- package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
- package/dist-types/commands/GetSegmentDefinitionCommand.d.ts +10 -0
- package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
- package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
- package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
- package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/commands/PutDomainObjectTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +68 -12
- package/dist-types/models/models_0.d.ts +286 -414
- package/dist-types/models/models_1.d.ts +414 -2
- package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +16 -0
- package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
- package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/PutDomainObjectTypeCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +37 -5
- package/dist-types/ts3.4/models/models_0.d.ts +71 -93
- package/dist-types/ts3.4/models/models_1.d.ts +98 -0
- package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +16 -0
- package/package.json +33 -33
|
@@ -1,5 +1,417 @@
|
|
|
1
|
-
import type { Gender, LayoutType, LogicalOperator, PartyType, ProfileType, ReadinessStatus, Scope, Statistic } from "./enums";
|
|
2
|
-
import type { AdditionalSearchKey, AttributeDetails, Conditions, DataStoreRequest, DataStoreResponse, EngagementPreferences, EventTriggerCondition, EventTriggerLimits, FlowDefinition, MatchingRequest, MatchingResponse, ObjectTypeField, ObjectTypeKey, Profile, Readiness, RecommenderConfig, RuleBasedMatchingRequest, RuleBasedMatchingResponse } from "./models_0";
|
|
1
|
+
import type { Gender, LayoutType, LogicalOperator, PartyType, ProfileType, ReadinessStatus, Scope, Statistic, Status, StatusReason, UploadJobStatus, WorkflowType } from "./enums";
|
|
2
|
+
import type { AdditionalSearchKey, AttributeDetails, Conditions, DataStoreRequest, DataStoreResponse, DomainObjectTypeField, EngagementPreferences, EventTriggerCondition, EventTriggerLimits, FlowDefinition, MatchingRequest, MatchingResponse, ObjectTypeField, ObjectTypeKey, Profile, Readiness, RecommenderConfig, RuleBasedMatchingRequest, RuleBasedMatchingResponse } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ListTagsForResourceResponse {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
tags?: Record<string, string> | undefined;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
export interface ListUploadJobsRequest {
|
|
17
|
+
/**
|
|
18
|
+
* <p>The unique name of the domain to list upload jobs for. </p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
DomainName: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* <p>The maximum number of upload jobs to return per page. </p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
MaxResults?: number | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The pagination token from the previous call to retrieve the next page of results.
|
|
29
|
+
* </p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
NextToken?: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* <p>The summary information for an individual upload job. </p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export interface UploadJobItem {
|
|
39
|
+
/**
|
|
40
|
+
* <p>The unique identifier of the upload job. </p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
JobId?: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The name of the upload job. </p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
DisplayName?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The current status of the upload job. </p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
Status?: UploadJobStatus | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The reason for the current status of the upload job. </p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
StatusReason?: StatusReason | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* <p>The timestamp when the upload job was created. </p>
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
CreatedAt?: Date | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* <p>The timestamp when the upload job was completed. </p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
CompletedAt?: Date | undefined;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The expiry duration for the profiles ingested with the upload job. </p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
DataExpiry?: number | undefined;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export interface ListUploadJobsResponse {
|
|
79
|
+
/**
|
|
80
|
+
* <p>The pagination token to use to retrieve the next page of results. </p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
NextToken?: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* <p>The list of upload jobs for the specified domain. </p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
Items?: UploadJobItem[] | undefined;
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export interface ListWorkflowsRequest {
|
|
94
|
+
/**
|
|
95
|
+
* <p>The unique name of the domain.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
DomainName: string | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
WorkflowType?: WorkflowType | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* <p>Status of workflow execution.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
Status?: Status | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* <p>Retrieve workflows started after timestamp.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
QueryStartDate?: Date | undefined;
|
|
114
|
+
/**
|
|
115
|
+
* <p>Retrieve workflows ended after timestamp.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
QueryEndDate?: Date | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The token for the next set of results. Use the value returned in the previous
|
|
121
|
+
* response in the next request to retrieve the next set of results.</p>
|
|
122
|
+
* @public
|
|
123
|
+
*/
|
|
124
|
+
NextToken?: string | undefined;
|
|
125
|
+
/**
|
|
126
|
+
* <p>The maximum number of results to return per page.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
MaxResults?: number | undefined;
|
|
130
|
+
}
|
|
131
|
+
/**
|
|
132
|
+
* <p>A workflow in list of workflows.</p>
|
|
133
|
+
* @public
|
|
134
|
+
*/
|
|
135
|
+
export interface ListWorkflowsItem {
|
|
136
|
+
/**
|
|
137
|
+
* <p>The type of workflow. The only supported value is APPFLOW_INTEGRATION.</p>
|
|
138
|
+
* @public
|
|
139
|
+
*/
|
|
140
|
+
WorkflowType: WorkflowType | undefined;
|
|
141
|
+
/**
|
|
142
|
+
* <p>Unique identifier for the workflow.</p>
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
WorkflowId: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* <p>Status of workflow execution.</p>
|
|
148
|
+
* @public
|
|
149
|
+
*/
|
|
150
|
+
Status: Status | undefined;
|
|
151
|
+
/**
|
|
152
|
+
* <p>Description for workflow execution status.</p>
|
|
153
|
+
* @public
|
|
154
|
+
*/
|
|
155
|
+
StatusDescription: string | undefined;
|
|
156
|
+
/**
|
|
157
|
+
* <p>Creation timestamp for workflow.</p>
|
|
158
|
+
* @public
|
|
159
|
+
*/
|
|
160
|
+
CreatedAt: Date | undefined;
|
|
161
|
+
/**
|
|
162
|
+
* <p>Last updated timestamp for workflow.</p>
|
|
163
|
+
* @public
|
|
164
|
+
*/
|
|
165
|
+
LastUpdatedAt: Date | undefined;
|
|
166
|
+
}
|
|
167
|
+
/**
|
|
168
|
+
* @public
|
|
169
|
+
*/
|
|
170
|
+
export interface ListWorkflowsResponse {
|
|
171
|
+
/**
|
|
172
|
+
* <p>List containing workflow details.</p>
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
Items?: ListWorkflowsItem[] | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* <p>If there are additional results, this is the token for the next set of results.</p>
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
NextToken?: string | undefined;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* <p>A duplicate customer profile that is to be merged into a main profile. </p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export interface FieldSourceProfileIds {
|
|
187
|
+
/**
|
|
188
|
+
* <p>A unique identifier for the account number field to be merged. </p>
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
AccountNumber?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* <p>A unique identifier for the additional information field to be merged.</p>
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
AdditionalInformation?: string | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* <p>A unique identifier for the party type field to be merged.</p>
|
|
199
|
+
* @public
|
|
200
|
+
*/
|
|
201
|
+
PartyType?: string | undefined;
|
|
202
|
+
/**
|
|
203
|
+
* <p>A unique identifier for the business name field to be merged.</p>
|
|
204
|
+
* @public
|
|
205
|
+
*/
|
|
206
|
+
BusinessName?: string | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* <p>A unique identifier for the first name field to be merged.</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
FirstName?: string | undefined;
|
|
212
|
+
/**
|
|
213
|
+
* <p>A unique identifier for the middle name field to be merged.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
MiddleName?: string | undefined;
|
|
217
|
+
/**
|
|
218
|
+
* <p>A unique identifier for the last name field to be merged.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
LastName?: string | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* <p>A unique identifier for the birthdate field to be merged.</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
BirthDate?: string | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* <p>A unique identifier for the gender field to be merged.</p>
|
|
229
|
+
* @public
|
|
230
|
+
*/
|
|
231
|
+
Gender?: string | undefined;
|
|
232
|
+
/**
|
|
233
|
+
* <p>A unique identifier for the phone number field to be merged.</p>
|
|
234
|
+
* @public
|
|
235
|
+
*/
|
|
236
|
+
PhoneNumber?: string | undefined;
|
|
237
|
+
/**
|
|
238
|
+
* <p>A unique identifier for the mobile phone number field to be merged.</p>
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
MobilePhoneNumber?: string | undefined;
|
|
242
|
+
/**
|
|
243
|
+
* <p>A unique identifier for the home phone number field to be merged.</p>
|
|
244
|
+
* @public
|
|
245
|
+
*/
|
|
246
|
+
HomePhoneNumber?: string | undefined;
|
|
247
|
+
/**
|
|
248
|
+
* <p>A unique identifier for the business phone number field to be merged.</p>
|
|
249
|
+
* @public
|
|
250
|
+
*/
|
|
251
|
+
BusinessPhoneNumber?: string | undefined;
|
|
252
|
+
/**
|
|
253
|
+
* <p>A unique identifier for the email address field to be merged.</p>
|
|
254
|
+
* @public
|
|
255
|
+
*/
|
|
256
|
+
EmailAddress?: string | undefined;
|
|
257
|
+
/**
|
|
258
|
+
* <p>A unique identifier for the personal email address field to be merged.</p>
|
|
259
|
+
* @public
|
|
260
|
+
*/
|
|
261
|
+
PersonalEmailAddress?: string | undefined;
|
|
262
|
+
/**
|
|
263
|
+
* <p>A unique identifier for the party type field to be merged.</p>
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
BusinessEmailAddress?: string | undefined;
|
|
267
|
+
/**
|
|
268
|
+
* <p>A unique identifier for the party type field to be merged.</p>
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
Address?: string | undefined;
|
|
272
|
+
/**
|
|
273
|
+
* <p>A unique identifier for the shipping address field to be merged.</p>
|
|
274
|
+
* @public
|
|
275
|
+
*/
|
|
276
|
+
ShippingAddress?: string | undefined;
|
|
277
|
+
/**
|
|
278
|
+
* <p>A unique identifier for the mailing address field to be merged.</p>
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
MailingAddress?: string | undefined;
|
|
282
|
+
/**
|
|
283
|
+
* <p>A unique identifier for the billing type field to be merged.</p>
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
BillingAddress?: string | undefined;
|
|
287
|
+
/**
|
|
288
|
+
* <p>A unique identifier for the attributes field to be merged.</p>
|
|
289
|
+
* @public
|
|
290
|
+
*/
|
|
291
|
+
Attributes?: Record<string, string> | undefined;
|
|
292
|
+
/**
|
|
293
|
+
* <p>A unique identifier for the profile type field to be merged.</p>
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
ProfileType?: string | undefined;
|
|
297
|
+
/**
|
|
298
|
+
* <p>A unique identifier for the engagement preferences field to be merged.</p>
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
301
|
+
EngagementPreferences?: string | undefined;
|
|
302
|
+
}
|
|
303
|
+
/**
|
|
304
|
+
* @public
|
|
305
|
+
*/
|
|
306
|
+
export interface MergeProfilesRequest {
|
|
307
|
+
/**
|
|
308
|
+
* <p>The unique name of the domain.</p>
|
|
309
|
+
* @public
|
|
310
|
+
*/
|
|
311
|
+
DomainName: string | undefined;
|
|
312
|
+
/**
|
|
313
|
+
* <p>The identifier of the profile to be taken.</p>
|
|
314
|
+
* @public
|
|
315
|
+
*/
|
|
316
|
+
MainProfileId: string | undefined;
|
|
317
|
+
/**
|
|
318
|
+
* <p>The identifier of the profile to be merged into MainProfileId.</p>
|
|
319
|
+
* @public
|
|
320
|
+
*/
|
|
321
|
+
ProfileIdsToBeMerged: string[] | undefined;
|
|
322
|
+
/**
|
|
323
|
+
* <p>The identifiers of the fields in the profile that has the information you want to apply
|
|
324
|
+
* to the merge. For example, say you want to merge EmailAddress from Profile1 into
|
|
325
|
+
* MainProfile. This would be the identifier of the EmailAddress field in Profile1. </p>
|
|
326
|
+
* @public
|
|
327
|
+
*/
|
|
328
|
+
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* @public
|
|
332
|
+
*/
|
|
333
|
+
export interface MergeProfilesResponse {
|
|
334
|
+
/**
|
|
335
|
+
* <p>A message that indicates the merge request is complete.</p>
|
|
336
|
+
* @public
|
|
337
|
+
*/
|
|
338
|
+
Message?: string | undefined;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* @public
|
|
342
|
+
*/
|
|
343
|
+
export interface PutDomainObjectTypeRequest {
|
|
344
|
+
/**
|
|
345
|
+
* <p>The unique name of the domain.</p>
|
|
346
|
+
* @public
|
|
347
|
+
*/
|
|
348
|
+
DomainName: string | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* <p>The unique name of the domain object type.</p>
|
|
351
|
+
* @public
|
|
352
|
+
*/
|
|
353
|
+
ObjectTypeName: string | undefined;
|
|
354
|
+
/**
|
|
355
|
+
* <p>The description of the domain object type.</p>
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
358
|
+
Description?: string | undefined;
|
|
359
|
+
/**
|
|
360
|
+
* <p>The customer provided KMS key used to encrypt this type of domain object.</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
EncryptionKey?: string | undefined;
|
|
364
|
+
/**
|
|
365
|
+
* <p>A map of field names to their corresponding domain object type field definitions.</p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
Fields: Record<string, DomainObjectTypeField> | undefined;
|
|
369
|
+
/**
|
|
370
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
Tags?: Record<string, string> | undefined;
|
|
374
|
+
}
|
|
375
|
+
/**
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
export interface PutDomainObjectTypeResponse {
|
|
379
|
+
/**
|
|
380
|
+
* <p>The unique name of the domain object type.</p>
|
|
381
|
+
* @public
|
|
382
|
+
*/
|
|
383
|
+
ObjectTypeName?: string | undefined;
|
|
384
|
+
/**
|
|
385
|
+
* <p>The description of the domain object type.</p>
|
|
386
|
+
* @public
|
|
387
|
+
*/
|
|
388
|
+
Description?: string | undefined;
|
|
389
|
+
/**
|
|
390
|
+
* <p>The customer provided KMS key used to encrypt this type of domain object.</p>
|
|
391
|
+
* @public
|
|
392
|
+
*/
|
|
393
|
+
EncryptionKey?: string | undefined;
|
|
394
|
+
/**
|
|
395
|
+
* <p>A map of field names to their corresponding domain object type field definitions.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
Fields?: Record<string, DomainObjectTypeField> | undefined;
|
|
399
|
+
/**
|
|
400
|
+
* <p>The timestamp of when the domain object type was created.</p>
|
|
401
|
+
* @public
|
|
402
|
+
*/
|
|
403
|
+
CreatedAt?: Date | undefined;
|
|
404
|
+
/**
|
|
405
|
+
* <p>The timestamp of when the domain object type was most recently edited.</p>
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
LastUpdatedAt?: Date | undefined;
|
|
409
|
+
/**
|
|
410
|
+
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
411
|
+
* @public
|
|
412
|
+
*/
|
|
413
|
+
Tags?: Record<string, string> | undefined;
|
|
414
|
+
}
|
|
3
415
|
/**
|
|
4
416
|
* @public
|
|
5
417
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRecommenderSchemasCommandInput, ListRecommenderSchemasCommandOutput } from "../commands/ListRecommenderSchemasCommand";
|
|
3
|
+
import type { CustomerProfilesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRecommenderSchemas: (config: CustomerProfilesPaginationConfiguration, input: ListRecommenderSchemasCommandInput, ...rest: any[]) => Paginator<ListRecommenderSchemasCommandOutput>;
|
|
@@ -8,6 +8,7 @@ export * from "./ListObjectTypeAttributesPaginator";
|
|
|
8
8
|
export * from "./ListRecommenderFiltersPaginator";
|
|
9
9
|
export * from "./ListRecommenderRecipesPaginator";
|
|
10
10
|
export * from "./ListRecommendersPaginator";
|
|
11
|
+
export * from "./ListRecommenderSchemasPaginator";
|
|
11
12
|
export * from "./ListRuleBasedMatchesPaginator";
|
|
12
13
|
export * from "./ListSegmentDefinitionsPaginator";
|
|
13
14
|
export * from "./ListUploadJobsPaginator";
|
|
@@ -61,6 +61,8 @@ export declare var CreateRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
61
61
|
export declare var CreateRecommenderFilterResponse$: StaticStructureSchema;
|
|
62
62
|
export declare var CreateRecommenderRequest$: StaticStructureSchema;
|
|
63
63
|
export declare var CreateRecommenderResponse$: StaticStructureSchema;
|
|
64
|
+
export declare var CreateRecommenderSchemaRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var CreateRecommenderSchemaResponse$: StaticStructureSchema;
|
|
64
66
|
export declare var CreateSegmentDefinitionRequest$: StaticStructureSchema;
|
|
65
67
|
export declare var CreateSegmentDefinitionResponse$: StaticStructureSchema;
|
|
66
68
|
export declare var CreateSegmentEstimateRequest$: StaticStructureSchema;
|
|
@@ -98,6 +100,8 @@ export declare var DeleteRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
98
100
|
export declare var DeleteRecommenderFilterResponse$: StaticStructureSchema;
|
|
99
101
|
export declare var DeleteRecommenderRequest$: StaticStructureSchema;
|
|
100
102
|
export declare var DeleteRecommenderResponse$: StaticStructureSchema;
|
|
103
|
+
export declare var DeleteRecommenderSchemaRequest$: StaticStructureSchema;
|
|
104
|
+
export declare var DeleteRecommenderSchemaResponse$: StaticStructureSchema;
|
|
101
105
|
export declare var DeleteSegmentDefinitionRequest$: StaticStructureSchema;
|
|
102
106
|
export declare var DeleteSegmentDefinitionResponse$: StaticStructureSchema;
|
|
103
107
|
export declare var DeleteWorkflowRequest$: StaticStructureSchema;
|
|
@@ -166,6 +170,8 @@ export declare var GetRecommenderFilterRequest$: StaticStructureSchema;
|
|
|
166
170
|
export declare var GetRecommenderFilterResponse$: StaticStructureSchema;
|
|
167
171
|
export declare var GetRecommenderRequest$: StaticStructureSchema;
|
|
168
172
|
export declare var GetRecommenderResponse$: StaticStructureSchema;
|
|
173
|
+
export declare var GetRecommenderSchemaRequest$: StaticStructureSchema;
|
|
174
|
+
export declare var GetRecommenderSchemaResponse$: StaticStructureSchema;
|
|
169
175
|
export declare var GetSegmentDefinitionRequest$: StaticStructureSchema;
|
|
170
176
|
export declare var GetSegmentDefinitionResponse$: StaticStructureSchema;
|
|
171
177
|
export declare var GetSegmentEstimateRequest$: StaticStructureSchema;
|
|
@@ -237,6 +243,8 @@ export declare var ListRecommenderFiltersRequest$: StaticStructureSchema;
|
|
|
237
243
|
export declare var ListRecommenderFiltersResponse$: StaticStructureSchema;
|
|
238
244
|
export declare var ListRecommenderRecipesRequest$: StaticStructureSchema;
|
|
239
245
|
export declare var ListRecommenderRecipesResponse$: StaticStructureSchema;
|
|
246
|
+
export declare var ListRecommenderSchemasRequest$: StaticStructureSchema;
|
|
247
|
+
export declare var ListRecommenderSchemasResponse$: StaticStructureSchema;
|
|
240
248
|
export declare var ListRecommendersRequest$: StaticStructureSchema;
|
|
241
249
|
export declare var ListRecommendersResponse$: StaticStructureSchema;
|
|
242
250
|
export declare var ListRuleBasedMatchesRequest$: StaticStructureSchema;
|
|
@@ -289,6 +297,8 @@ export declare var RecommenderFilter$: StaticStructureSchema;
|
|
|
289
297
|
export declare var RecommenderFilterSummary$: StaticStructureSchema;
|
|
290
298
|
export declare var RecommenderPromotionalFilter$: StaticStructureSchema;
|
|
291
299
|
export declare var RecommenderRecipe$: StaticStructureSchema;
|
|
300
|
+
export declare var RecommenderSchemaField$: StaticStructureSchema;
|
|
301
|
+
export declare var RecommenderSchemaSummary$: StaticStructureSchema;
|
|
292
302
|
export declare var RecommenderSummary$: StaticStructureSchema;
|
|
293
303
|
export declare var RecommenderUpdate$: StaticStructureSchema;
|
|
294
304
|
export declare var ResultsSummary$: StaticStructureSchema;
|
|
@@ -304,7 +314,9 @@ export declare var SearchProfilesResponse$: StaticStructureSchema;
|
|
|
304
314
|
export declare var SegmentDefinitionItem$: StaticStructureSchema;
|
|
305
315
|
export declare var SegmentGroup$: StaticStructureSchema;
|
|
306
316
|
export declare var SegmentGroupStructure$: StaticStructureSchema;
|
|
317
|
+
export declare var SegmentSort$: StaticStructureSchema;
|
|
307
318
|
export declare var ServiceNowSourceProperties$: StaticStructureSchema;
|
|
319
|
+
export declare var SortAttribute$: StaticStructureSchema;
|
|
308
320
|
export declare var SourceConnectorProperties$: StaticStructureSchema;
|
|
309
321
|
export declare var SourceFlowConfig$: StaticStructureSchema;
|
|
310
322
|
export declare var SourceSegment$: StaticStructureSchema;
|
|
@@ -357,6 +369,7 @@ export declare var CreateIntegrationWorkflow$: StaticOperationSchema;
|
|
|
357
369
|
export declare var CreateProfile$: StaticOperationSchema;
|
|
358
370
|
export declare var CreateRecommender$: StaticOperationSchema;
|
|
359
371
|
export declare var CreateRecommenderFilter$: StaticOperationSchema;
|
|
372
|
+
export declare var CreateRecommenderSchema$: StaticOperationSchema;
|
|
360
373
|
export declare var CreateSegmentDefinition$: StaticOperationSchema;
|
|
361
374
|
export declare var CreateSegmentEstimate$: StaticOperationSchema;
|
|
362
375
|
export declare var CreateSegmentSnapshot$: StaticOperationSchema;
|
|
@@ -374,6 +387,7 @@ export declare var DeleteProfileObject$: StaticOperationSchema;
|
|
|
374
387
|
export declare var DeleteProfileObjectType$: StaticOperationSchema;
|
|
375
388
|
export declare var DeleteRecommender$: StaticOperationSchema;
|
|
376
389
|
export declare var DeleteRecommenderFilter$: StaticOperationSchema;
|
|
390
|
+
export declare var DeleteRecommenderSchema$: StaticOperationSchema;
|
|
377
391
|
export declare var DeleteSegmentDefinition$: StaticOperationSchema;
|
|
378
392
|
export declare var DeleteWorkflow$: StaticOperationSchema;
|
|
379
393
|
export declare var DetectProfileObjectType$: StaticOperationSchema;
|
|
@@ -395,6 +409,7 @@ export declare var GetProfileObjectTypeTemplate$: StaticOperationSchema;
|
|
|
395
409
|
export declare var GetProfileRecommendations$: StaticOperationSchema;
|
|
396
410
|
export declare var GetRecommender$: StaticOperationSchema;
|
|
397
411
|
export declare var GetRecommenderFilter$: StaticOperationSchema;
|
|
412
|
+
export declare var GetRecommenderSchema$: StaticOperationSchema;
|
|
398
413
|
export declare var GetSegmentDefinition$: StaticOperationSchema;
|
|
399
414
|
export declare var GetSegmentEstimate$: StaticOperationSchema;
|
|
400
415
|
export declare var GetSegmentMembership$: StaticOperationSchema;
|
|
@@ -424,6 +439,7 @@ export declare var ListProfileObjectTypeTemplates$: StaticOperationSchema;
|
|
|
424
439
|
export declare var ListRecommenderFilters$: StaticOperationSchema;
|
|
425
440
|
export declare var ListRecommenderRecipes$: StaticOperationSchema;
|
|
426
441
|
export declare var ListRecommenders$: StaticOperationSchema;
|
|
442
|
+
export declare var ListRecommenderSchemas$: StaticOperationSchema;
|
|
427
443
|
export declare var ListRuleBasedMatches$: StaticOperationSchema;
|
|
428
444
|
export declare var ListSegmentDefinitions$: StaticOperationSchema;
|
|
429
445
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
@@ -51,6 +51,10 @@ import {
|
|
|
51
51
|
CreateRecommenderFilterCommandInput,
|
|
52
52
|
CreateRecommenderFilterCommandOutput,
|
|
53
53
|
} from "./commands/CreateRecommenderFilterCommand";
|
|
54
|
+
import {
|
|
55
|
+
CreateRecommenderSchemaCommandInput,
|
|
56
|
+
CreateRecommenderSchemaCommandOutput,
|
|
57
|
+
} from "./commands/CreateRecommenderSchemaCommand";
|
|
54
58
|
import {
|
|
55
59
|
CreateSegmentDefinitionCommandInput,
|
|
56
60
|
CreateSegmentDefinitionCommandOutput,
|
|
@@ -119,6 +123,10 @@ import {
|
|
|
119
123
|
DeleteRecommenderFilterCommandInput,
|
|
120
124
|
DeleteRecommenderFilterCommandOutput,
|
|
121
125
|
} from "./commands/DeleteRecommenderFilterCommand";
|
|
126
|
+
import {
|
|
127
|
+
DeleteRecommenderSchemaCommandInput,
|
|
128
|
+
DeleteRecommenderSchemaCommandOutput,
|
|
129
|
+
} from "./commands/DeleteRecommenderSchemaCommand";
|
|
122
130
|
import {
|
|
123
131
|
DeleteSegmentDefinitionCommandInput,
|
|
124
132
|
DeleteSegmentDefinitionCommandOutput,
|
|
@@ -203,6 +211,10 @@ import {
|
|
|
203
211
|
GetRecommenderFilterCommandInput,
|
|
204
212
|
GetRecommenderFilterCommandOutput,
|
|
205
213
|
} from "./commands/GetRecommenderFilterCommand";
|
|
214
|
+
import {
|
|
215
|
+
GetRecommenderSchemaCommandInput,
|
|
216
|
+
GetRecommenderSchemaCommandOutput,
|
|
217
|
+
} from "./commands/GetRecommenderSchemaCommand";
|
|
206
218
|
import {
|
|
207
219
|
GetSegmentDefinitionCommandInput,
|
|
208
220
|
GetSegmentDefinitionCommandOutput,
|
|
@@ -315,6 +327,10 @@ import {
|
|
|
315
327
|
ListRecommenderRecipesCommandInput,
|
|
316
328
|
ListRecommenderRecipesCommandOutput,
|
|
317
329
|
} from "./commands/ListRecommenderRecipesCommand";
|
|
330
|
+
import {
|
|
331
|
+
ListRecommenderSchemasCommandInput,
|
|
332
|
+
ListRecommenderSchemasCommandOutput,
|
|
333
|
+
} from "./commands/ListRecommenderSchemasCommand";
|
|
318
334
|
import {
|
|
319
335
|
ListRecommendersCommandInput,
|
|
320
336
|
ListRecommendersCommandOutput,
|
|
@@ -581,6 +597,19 @@ export interface CustomerProfiles {
|
|
|
581
597
|
options: __HttpHandlerOptions,
|
|
582
598
|
cb: (err: any, data?: CreateRecommenderFilterCommandOutput) => void
|
|
583
599
|
): void;
|
|
600
|
+
createRecommenderSchema(
|
|
601
|
+
args: CreateRecommenderSchemaCommandInput,
|
|
602
|
+
options?: __HttpHandlerOptions
|
|
603
|
+
): Promise<CreateRecommenderSchemaCommandOutput>;
|
|
604
|
+
createRecommenderSchema(
|
|
605
|
+
args: CreateRecommenderSchemaCommandInput,
|
|
606
|
+
cb: (err: any, data?: CreateRecommenderSchemaCommandOutput) => void
|
|
607
|
+
): void;
|
|
608
|
+
createRecommenderSchema(
|
|
609
|
+
args: CreateRecommenderSchemaCommandInput,
|
|
610
|
+
options: __HttpHandlerOptions,
|
|
611
|
+
cb: (err: any, data?: CreateRecommenderSchemaCommandOutput) => void
|
|
612
|
+
): void;
|
|
584
613
|
createSegmentDefinition(
|
|
585
614
|
args: CreateSegmentDefinitionCommandInput,
|
|
586
615
|
options?: __HttpHandlerOptions
|
|
@@ -808,6 +837,19 @@ export interface CustomerProfiles {
|
|
|
808
837
|
options: __HttpHandlerOptions,
|
|
809
838
|
cb: (err: any, data?: DeleteRecommenderFilterCommandOutput) => void
|
|
810
839
|
): void;
|
|
840
|
+
deleteRecommenderSchema(
|
|
841
|
+
args: DeleteRecommenderSchemaCommandInput,
|
|
842
|
+
options?: __HttpHandlerOptions
|
|
843
|
+
): Promise<DeleteRecommenderSchemaCommandOutput>;
|
|
844
|
+
deleteRecommenderSchema(
|
|
845
|
+
args: DeleteRecommenderSchemaCommandInput,
|
|
846
|
+
cb: (err: any, data?: DeleteRecommenderSchemaCommandOutput) => void
|
|
847
|
+
): void;
|
|
848
|
+
deleteRecommenderSchema(
|
|
849
|
+
args: DeleteRecommenderSchemaCommandInput,
|
|
850
|
+
options: __HttpHandlerOptions,
|
|
851
|
+
cb: (err: any, data?: DeleteRecommenderSchemaCommandOutput) => void
|
|
852
|
+
): void;
|
|
811
853
|
deleteSegmentDefinition(
|
|
812
854
|
args: DeleteSegmentDefinitionCommandInput,
|
|
813
855
|
options?: __HttpHandlerOptions
|
|
@@ -1081,6 +1123,19 @@ export interface CustomerProfiles {
|
|
|
1081
1123
|
options: __HttpHandlerOptions,
|
|
1082
1124
|
cb: (err: any, data?: GetRecommenderFilterCommandOutput) => void
|
|
1083
1125
|
): void;
|
|
1126
|
+
getRecommenderSchema(
|
|
1127
|
+
args: GetRecommenderSchemaCommandInput,
|
|
1128
|
+
options?: __HttpHandlerOptions
|
|
1129
|
+
): Promise<GetRecommenderSchemaCommandOutput>;
|
|
1130
|
+
getRecommenderSchema(
|
|
1131
|
+
args: GetRecommenderSchemaCommandInput,
|
|
1132
|
+
cb: (err: any, data?: GetRecommenderSchemaCommandOutput) => void
|
|
1133
|
+
): void;
|
|
1134
|
+
getRecommenderSchema(
|
|
1135
|
+
args: GetRecommenderSchemaCommandInput,
|
|
1136
|
+
options: __HttpHandlerOptions,
|
|
1137
|
+
cb: (err: any, data?: GetRecommenderSchemaCommandOutput) => void
|
|
1138
|
+
): void;
|
|
1084
1139
|
getSegmentDefinition(
|
|
1085
1140
|
args: GetSegmentDefinitionCommandInput,
|
|
1086
1141
|
options?: __HttpHandlerOptions
|
|
@@ -1473,6 +1528,19 @@ export interface CustomerProfiles {
|
|
|
1473
1528
|
options: __HttpHandlerOptions,
|
|
1474
1529
|
cb: (err: any, data?: ListRecommendersCommandOutput) => void
|
|
1475
1530
|
): void;
|
|
1531
|
+
listRecommenderSchemas(
|
|
1532
|
+
args: ListRecommenderSchemasCommandInput,
|
|
1533
|
+
options?: __HttpHandlerOptions
|
|
1534
|
+
): Promise<ListRecommenderSchemasCommandOutput>;
|
|
1535
|
+
listRecommenderSchemas(
|
|
1536
|
+
args: ListRecommenderSchemasCommandInput,
|
|
1537
|
+
cb: (err: any, data?: ListRecommenderSchemasCommandOutput) => void
|
|
1538
|
+
): void;
|
|
1539
|
+
listRecommenderSchemas(
|
|
1540
|
+
args: ListRecommenderSchemasCommandInput,
|
|
1541
|
+
options: __HttpHandlerOptions,
|
|
1542
|
+
cb: (err: any, data?: ListRecommenderSchemasCommandOutput) => void
|
|
1543
|
+
): void;
|
|
1476
1544
|
listRuleBasedMatches(
|
|
1477
1545
|
args: ListRuleBasedMatchesCommandInput,
|
|
1478
1546
|
options?: __HttpHandlerOptions
|
|
@@ -1841,6 +1909,13 @@ export interface CustomerProfiles {
|
|
|
1841
1909
|
Exclude<keyof PaginationConfiguration, "client">
|
|
1842
1910
|
>
|
|
1843
1911
|
): Paginator<ListRecommendersCommandOutput>;
|
|
1912
|
+
paginateListRecommenderSchemas(
|
|
1913
|
+
args: ListRecommenderSchemasCommandInput,
|
|
1914
|
+
paginationConfig?: Pick<
|
|
1915
|
+
PaginationConfiguration,
|
|
1916
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1917
|
+
>
|
|
1918
|
+
): Paginator<ListRecommenderSchemasCommandOutput>;
|
|
1844
1919
|
paginateListRuleBasedMatches(
|
|
1845
1920
|
args: ListRuleBasedMatchesCommandInput,
|
|
1846
1921
|
paginationConfig?: Pick<
|