@aws-sdk/client-customer-profiles 3.1030.0 → 3.1032.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.
Files changed (55) hide show
  1. package/README.md +28 -0
  2. package/dist-cjs/index.js +76 -4
  3. package/dist-cjs/schemas/schemas_0.js +122 -24
  4. package/dist-es/CustomerProfiles.js +10 -0
  5. package/dist-es/commands/CreateRecommenderSchemaCommand.js +16 -0
  6. package/dist-es/commands/DeleteRecommenderSchemaCommand.js +16 -0
  7. package/dist-es/commands/GetRecommenderSchemaCommand.js +16 -0
  8. package/dist-es/commands/ListRecommenderSchemasCommand.js +16 -0
  9. package/dist-es/commands/index.js +4 -0
  10. package/dist-es/models/enums.js +15 -4
  11. package/dist-es/pagination/ListRecommenderSchemasPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/schemas/schemas_0.js +113 -16
  14. package/dist-types/CustomerProfiles.d.ts +35 -0
  15. package/dist-types/CustomerProfilesClient.d.ts +6 -2
  16. package/dist-types/commands/CreateRecommenderCommand.d.ts +6 -0
  17. package/dist-types/commands/CreateRecommenderFilterCommand.d.ts +1 -0
  18. package/dist-types/commands/CreateRecommenderSchemaCommand.d.ts +117 -0
  19. package/dist-types/commands/DeleteRecommenderSchemaCommand.d.ts +88 -0
  20. package/dist-types/commands/GetRecommenderCommand.d.ts +11 -0
  21. package/dist-types/commands/GetRecommenderFilterCommand.d.ts +1 -0
  22. package/dist-types/commands/GetRecommenderSchemaCommand.d.ts +101 -0
  23. package/dist-types/commands/ListRecommenderFiltersCommand.d.ts +1 -0
  24. package/dist-types/commands/ListRecommenderSchemasCommand.d.ts +107 -0
  25. package/dist-types/commands/ListRecommendersCommand.d.ts +11 -0
  26. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  27. package/dist-types/commands/ListUploadJobsCommand.d.ts +1 -1
  28. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  29. package/dist-types/commands/MergeProfilesCommand.d.ts +1 -1
  30. package/dist-types/commands/UpdateRecommenderCommand.d.ts +5 -0
  31. package/dist-types/commands/index.d.ts +4 -0
  32. package/dist-types/models/enums.d.ts +31 -12
  33. package/dist-types/models/models_0.d.ts +238 -338
  34. package/dist-types/models/models_1.d.ts +338 -1
  35. package/dist-types/pagination/ListRecommenderSchemasPaginator.d.ts +7 -0
  36. package/dist-types/pagination/index.d.ts +1 -0
  37. package/dist-types/schemas/schemas_0.d.ts +14 -0
  38. package/dist-types/ts3.4/CustomerProfiles.d.ts +75 -0
  39. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +24 -0
  40. package/dist-types/ts3.4/commands/CreateRecommenderSchemaCommand.d.ts +51 -0
  41. package/dist-types/ts3.4/commands/DeleteRecommenderSchemaCommand.d.ts +51 -0
  42. package/dist-types/ts3.4/commands/GetRecommenderSchemaCommand.d.ts +51 -0
  43. package/dist-types/ts3.4/commands/ListRecommenderSchemasCommand.d.ts +51 -0
  44. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +2 -4
  45. package/dist-types/ts3.4/commands/ListUploadJobsCommand.d.ts +1 -1
  46. package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +1 -1
  47. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  49. package/dist-types/ts3.4/models/enums.d.ts +18 -5
  50. package/dist-types/ts3.4/models/models_0.d.ts +57 -76
  51. package/dist-types/ts3.4/models/models_1.d.ts +80 -0
  52. package/dist-types/ts3.4/pagination/ListRecommenderSchemasPaginator.d.ts +11 -0
  53. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  54. package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -0
  55. package/package.json +33 -33
@@ -1,5 +1,342 @@
1
- import type { Gender, LayoutType, LogicalOperator, PartyType, ProfileType, ReadinessStatus, Scope, Statistic } from "./enums";
1
+ import type { Gender, LayoutType, LogicalOperator, PartyType, ProfileType, ReadinessStatus, Scope, Statistic, Status, StatusReason, UploadJobStatus, WorkflowType } from "./enums";
2
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
+ }
3
340
  /**
4
341
  * @public
5
342
  */
@@ -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;
@@ -359,6 +369,7 @@ export declare var CreateIntegrationWorkflow$: StaticOperationSchema;
359
369
  export declare var CreateProfile$: StaticOperationSchema;
360
370
  export declare var CreateRecommender$: StaticOperationSchema;
361
371
  export declare var CreateRecommenderFilter$: StaticOperationSchema;
372
+ export declare var CreateRecommenderSchema$: StaticOperationSchema;
362
373
  export declare var CreateSegmentDefinition$: StaticOperationSchema;
363
374
  export declare var CreateSegmentEstimate$: StaticOperationSchema;
364
375
  export declare var CreateSegmentSnapshot$: StaticOperationSchema;
@@ -376,6 +387,7 @@ export declare var DeleteProfileObject$: StaticOperationSchema;
376
387
  export declare var DeleteProfileObjectType$: StaticOperationSchema;
377
388
  export declare var DeleteRecommender$: StaticOperationSchema;
378
389
  export declare var DeleteRecommenderFilter$: StaticOperationSchema;
390
+ export declare var DeleteRecommenderSchema$: StaticOperationSchema;
379
391
  export declare var DeleteSegmentDefinition$: StaticOperationSchema;
380
392
  export declare var DeleteWorkflow$: StaticOperationSchema;
381
393
  export declare var DetectProfileObjectType$: StaticOperationSchema;
@@ -397,6 +409,7 @@ export declare var GetProfileObjectTypeTemplate$: StaticOperationSchema;
397
409
  export declare var GetProfileRecommendations$: StaticOperationSchema;
398
410
  export declare var GetRecommender$: StaticOperationSchema;
399
411
  export declare var GetRecommenderFilter$: StaticOperationSchema;
412
+ export declare var GetRecommenderSchema$: StaticOperationSchema;
400
413
  export declare var GetSegmentDefinition$: StaticOperationSchema;
401
414
  export declare var GetSegmentEstimate$: StaticOperationSchema;
402
415
  export declare var GetSegmentMembership$: StaticOperationSchema;
@@ -426,6 +439,7 @@ export declare var ListProfileObjectTypeTemplates$: StaticOperationSchema;
426
439
  export declare var ListRecommenderFilters$: StaticOperationSchema;
427
440
  export declare var ListRecommenderRecipes$: StaticOperationSchema;
428
441
  export declare var ListRecommenders$: StaticOperationSchema;
442
+ export declare var ListRecommenderSchemas$: StaticOperationSchema;
429
443
  export declare var ListRuleBasedMatches$: StaticOperationSchema;
430
444
  export declare var ListSegmentDefinitions$: StaticOperationSchema;
431
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<
@@ -92,6 +92,10 @@ import {
92
92
  CreateRecommenderFilterCommandInput,
93
93
  CreateRecommenderFilterCommandOutput,
94
94
  } from "./commands/CreateRecommenderFilterCommand";
95
+ import {
96
+ CreateRecommenderSchemaCommandInput,
97
+ CreateRecommenderSchemaCommandOutput,
98
+ } from "./commands/CreateRecommenderSchemaCommand";
95
99
  import {
96
100
  CreateSegmentDefinitionCommandInput,
97
101
  CreateSegmentDefinitionCommandOutput,
@@ -160,6 +164,10 @@ import {
160
164
  DeleteRecommenderFilterCommandInput,
161
165
  DeleteRecommenderFilterCommandOutput,
162
166
  } from "./commands/DeleteRecommenderFilterCommand";
167
+ import {
168
+ DeleteRecommenderSchemaCommandInput,
169
+ DeleteRecommenderSchemaCommandOutput,
170
+ } from "./commands/DeleteRecommenderSchemaCommand";
163
171
  import {
164
172
  DeleteSegmentDefinitionCommandInput,
165
173
  DeleteSegmentDefinitionCommandOutput,
@@ -244,6 +252,10 @@ import {
244
252
  GetRecommenderFilterCommandInput,
245
253
  GetRecommenderFilterCommandOutput,
246
254
  } from "./commands/GetRecommenderFilterCommand";
255
+ import {
256
+ GetRecommenderSchemaCommandInput,
257
+ GetRecommenderSchemaCommandOutput,
258
+ } from "./commands/GetRecommenderSchemaCommand";
247
259
  import {
248
260
  GetSegmentDefinitionCommandInput,
249
261
  GetSegmentDefinitionCommandOutput,
@@ -356,6 +368,10 @@ import {
356
368
  ListRecommenderRecipesCommandInput,
357
369
  ListRecommenderRecipesCommandOutput,
358
370
  } from "./commands/ListRecommenderRecipesCommand";
371
+ import {
372
+ ListRecommenderSchemasCommandInput,
373
+ ListRecommenderSchemasCommandOutput,
374
+ } from "./commands/ListRecommenderSchemasCommand";
359
375
  import {
360
376
  ListRecommendersCommandInput,
361
377
  ListRecommendersCommandOutput,
@@ -472,6 +488,7 @@ export type ServiceInputTypes =
472
488
  | CreateProfileCommandInput
473
489
  | CreateRecommenderCommandInput
474
490
  | CreateRecommenderFilterCommandInput
491
+ | CreateRecommenderSchemaCommandInput
475
492
  | CreateSegmentDefinitionCommandInput
476
493
  | CreateSegmentEstimateCommandInput
477
494
  | CreateSegmentSnapshotCommandInput
@@ -489,6 +506,7 @@ export type ServiceInputTypes =
489
506
  | DeleteProfileObjectTypeCommandInput
490
507
  | DeleteRecommenderCommandInput
491
508
  | DeleteRecommenderFilterCommandInput
509
+ | DeleteRecommenderSchemaCommandInput
492
510
  | DeleteSegmentDefinitionCommandInput
493
511
  | DeleteWorkflowCommandInput
494
512
  | DetectProfileObjectTypeCommandInput
@@ -510,6 +528,7 @@ export type ServiceInputTypes =
510
528
  | GetProfileRecommendationsCommandInput
511
529
  | GetRecommenderCommandInput
512
530
  | GetRecommenderFilterCommandInput
531
+ | GetRecommenderSchemaCommandInput
513
532
  | GetSegmentDefinitionCommandInput
514
533
  | GetSegmentEstimateCommandInput
515
534
  | GetSegmentMembershipCommandInput
@@ -538,6 +557,7 @@ export type ServiceInputTypes =
538
557
  | ListProfileObjectsCommandInput
539
558
  | ListRecommenderFiltersCommandInput
540
559
  | ListRecommenderRecipesCommandInput
560
+ | ListRecommenderSchemasCommandInput
541
561
  | ListRecommendersCommandInput
542
562
  | ListRuleBasedMatchesCommandInput
543
563
  | ListSegmentDefinitionsCommandInput
@@ -575,6 +595,7 @@ export type ServiceOutputTypes =
575
595
  | CreateProfileCommandOutput
576
596
  | CreateRecommenderCommandOutput
577
597
  | CreateRecommenderFilterCommandOutput
598
+ | CreateRecommenderSchemaCommandOutput
578
599
  | CreateSegmentDefinitionCommandOutput
579
600
  | CreateSegmentEstimateCommandOutput
580
601
  | CreateSegmentSnapshotCommandOutput
@@ -592,6 +613,7 @@ export type ServiceOutputTypes =
592
613
  | DeleteProfileObjectTypeCommandOutput
593
614
  | DeleteRecommenderCommandOutput
594
615
  | DeleteRecommenderFilterCommandOutput
616
+ | DeleteRecommenderSchemaCommandOutput
595
617
  | DeleteSegmentDefinitionCommandOutput
596
618
  | DeleteWorkflowCommandOutput
597
619
  | DetectProfileObjectTypeCommandOutput
@@ -613,6 +635,7 @@ export type ServiceOutputTypes =
613
635
  | GetProfileRecommendationsCommandOutput
614
636
  | GetRecommenderCommandOutput
615
637
  | GetRecommenderFilterCommandOutput
638
+ | GetRecommenderSchemaCommandOutput
616
639
  | GetSegmentDefinitionCommandOutput
617
640
  | GetSegmentEstimateCommandOutput
618
641
  | GetSegmentMembershipCommandOutput
@@ -641,6 +664,7 @@ export type ServiceOutputTypes =
641
664
  | ListProfileObjectsCommandOutput
642
665
  | ListRecommenderFiltersCommandOutput
643
666
  | ListRecommenderRecipesCommandOutput
667
+ | ListRecommenderSchemasCommandOutput
644
668
  | ListRecommendersCommandOutput
645
669
  | ListRuleBasedMatchesCommandOutput
646
670
  | ListSegmentDefinitionsCommandOutput