@aws-sdk/client-customer-profiles 3.342.0 → 3.344.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 (52) hide show
  1. package/README.md +56 -0
  2. package/dist-cjs/CustomerProfiles.js +14 -0
  3. package/dist-cjs/commands/CreateCalculatedAttributeDefinitionCommand.js +46 -0
  4. package/dist-cjs/commands/DeleteCalculatedAttributeDefinitionCommand.js +46 -0
  5. package/dist-cjs/commands/GetCalculatedAttributeDefinitionCommand.js +46 -0
  6. package/dist-cjs/commands/GetCalculatedAttributeForProfileCommand.js +46 -0
  7. package/dist-cjs/commands/ListCalculatedAttributeDefinitionsCommand.js +46 -0
  8. package/dist-cjs/commands/ListCalculatedAttributesForProfileCommand.js +46 -0
  9. package/dist-cjs/commands/UpdateCalculatedAttributeDefinitionCommand.js +46 -0
  10. package/dist-cjs/commands/index.js +7 -0
  11. package/dist-cjs/endpoint/ruleset.js +3 -3
  12. package/dist-cjs/models/models_0.js +20 -1
  13. package/dist-cjs/protocols/Aws_restJson1.js +527 -2
  14. package/dist-es/CustomerProfiles.js +14 -0
  15. package/dist-es/commands/CreateCalculatedAttributeDefinitionCommand.js +42 -0
  16. package/dist-es/commands/DeleteCalculatedAttributeDefinitionCommand.js +42 -0
  17. package/dist-es/commands/GetCalculatedAttributeDefinitionCommand.js +42 -0
  18. package/dist-es/commands/GetCalculatedAttributeForProfileCommand.js +42 -0
  19. package/dist-es/commands/ListCalculatedAttributeDefinitionsCommand.js +42 -0
  20. package/dist-es/commands/ListCalculatedAttributesForProfileCommand.js +42 -0
  21. package/dist-es/commands/UpdateCalculatedAttributeDefinitionCommand.js +42 -0
  22. package/dist-es/commands/index.js +7 -0
  23. package/dist-es/endpoint/ruleset.js +3 -3
  24. package/dist-es/models/models_0.js +19 -0
  25. package/dist-es/protocols/Aws_restJson1.js +511 -0
  26. package/dist-types/CustomerProfiles.d.ts +49 -0
  27. package/dist-types/CustomerProfilesClient.d.ts +9 -2
  28. package/dist-types/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +146 -0
  29. package/dist-types/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +89 -0
  30. package/dist-types/commands/GetCalculatedAttributeDefinitionCommand.d.ts +116 -0
  31. package/dist-types/commands/GetCalculatedAttributeForProfileCommand.d.ts +93 -0
  32. package/dist-types/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +102 -0
  33. package/dist-types/commands/ListCalculatedAttributesForProfileCommand.d.ts +99 -0
  34. package/dist-types/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +131 -0
  35. package/dist-types/commands/index.d.ts +7 -0
  36. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  37. package/dist-types/models/models_0.d.ts +491 -8
  38. package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
  39. package/dist-types/ts3.4/CustomerProfiles.d.ts +149 -0
  40. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +42 -0
  41. package/dist-types/ts3.4/commands/CreateCalculatedAttributeDefinitionCommand.d.ts +42 -0
  42. package/dist-types/ts3.4/commands/DeleteCalculatedAttributeDefinitionCommand.d.ts +42 -0
  43. package/dist-types/ts3.4/commands/GetCalculatedAttributeDefinitionCommand.d.ts +42 -0
  44. package/dist-types/ts3.4/commands/GetCalculatedAttributeForProfileCommand.d.ts +42 -0
  45. package/dist-types/ts3.4/commands/ListCalculatedAttributeDefinitionsCommand.d.ts +42 -0
  46. package/dist-types/ts3.4/commands/ListCalculatedAttributesForProfileCommand.d.ts +42 -0
  47. package/dist-types/ts3.4/commands/UpdateCalculatedAttributeDefinitionCommand.d.ts +42 -0
  48. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  49. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  50. package/dist-types/ts3.4/models/models_0.d.ts +145 -0
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
  52. package/package.json +6 -6
@@ -1,9 +1,11 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { AddProfileKeyCommandInput, AddProfileKeyCommandOutput } from "../commands/AddProfileKeyCommand";
4
+ import { CreateCalculatedAttributeDefinitionCommandInput, CreateCalculatedAttributeDefinitionCommandOutput } from "../commands/CreateCalculatedAttributeDefinitionCommand";
4
5
  import { CreateDomainCommandInput, CreateDomainCommandOutput } from "../commands/CreateDomainCommand";
5
6
  import { CreateIntegrationWorkflowCommandInput, CreateIntegrationWorkflowCommandOutput } from "../commands/CreateIntegrationWorkflowCommand";
6
7
  import { CreateProfileCommandInput, CreateProfileCommandOutput } from "../commands/CreateProfileCommand";
8
+ import { DeleteCalculatedAttributeDefinitionCommandInput, DeleteCalculatedAttributeDefinitionCommandOutput } from "../commands/DeleteCalculatedAttributeDefinitionCommand";
7
9
  import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "../commands/DeleteDomainCommand";
8
10
  import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "../commands/DeleteIntegrationCommand";
9
11
  import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "../commands/DeleteProfileCommand";
@@ -12,6 +14,8 @@ import { DeleteProfileObjectCommandInput, DeleteProfileObjectCommandOutput } fro
12
14
  import { DeleteProfileObjectTypeCommandInput, DeleteProfileObjectTypeCommandOutput } from "../commands/DeleteProfileObjectTypeCommand";
13
15
  import { DeleteWorkflowCommandInput, DeleteWorkflowCommandOutput } from "../commands/DeleteWorkflowCommand";
14
16
  import { GetAutoMergingPreviewCommandInput, GetAutoMergingPreviewCommandOutput } from "../commands/GetAutoMergingPreviewCommand";
17
+ import { GetCalculatedAttributeDefinitionCommandInput, GetCalculatedAttributeDefinitionCommandOutput } from "../commands/GetCalculatedAttributeDefinitionCommand";
18
+ import { GetCalculatedAttributeForProfileCommandInput, GetCalculatedAttributeForProfileCommandOutput } from "../commands/GetCalculatedAttributeForProfileCommand";
15
19
  import { GetDomainCommandInput, GetDomainCommandOutput } from "../commands/GetDomainCommand";
16
20
  import { GetIdentityResolutionJobCommandInput, GetIdentityResolutionJobCommandOutput } from "../commands/GetIdentityResolutionJobCommand";
17
21
  import { GetIntegrationCommandInput, GetIntegrationCommandOutput } from "../commands/GetIntegrationCommand";
@@ -21,6 +25,8 @@ import { GetProfileObjectTypeTemplateCommandInput, GetProfileObjectTypeTemplateC
21
25
  import { GetWorkflowCommandInput, GetWorkflowCommandOutput } from "../commands/GetWorkflowCommand";
22
26
  import { GetWorkflowStepsCommandInput, GetWorkflowStepsCommandOutput } from "../commands/GetWorkflowStepsCommand";
23
27
  import { ListAccountIntegrationsCommandInput, ListAccountIntegrationsCommandOutput } from "../commands/ListAccountIntegrationsCommand";
28
+ import { ListCalculatedAttributeDefinitionsCommandInput, ListCalculatedAttributeDefinitionsCommandOutput } from "../commands/ListCalculatedAttributeDefinitionsCommand";
29
+ import { ListCalculatedAttributesForProfileCommandInput, ListCalculatedAttributesForProfileCommandOutput } from "../commands/ListCalculatedAttributesForProfileCommand";
24
30
  import { ListDomainsCommandInput, ListDomainsCommandOutput } from "../commands/ListDomainsCommand";
25
31
  import { ListIdentityResolutionJobsCommandInput, ListIdentityResolutionJobsCommandOutput } from "../commands/ListIdentityResolutionJobsCommand";
26
32
  import { ListIntegrationsCommandInput, ListIntegrationsCommandOutput } from "../commands/ListIntegrationsCommand";
@@ -36,12 +42,17 @@ import { PutProfileObjectTypeCommandInput, PutProfileObjectTypeCommandOutput } f
36
42
  import { SearchProfilesCommandInput, SearchProfilesCommandOutput } from "../commands/SearchProfilesCommand";
37
43
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
38
44
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
45
+ import { UpdateCalculatedAttributeDefinitionCommandInput, UpdateCalculatedAttributeDefinitionCommandOutput } from "../commands/UpdateCalculatedAttributeDefinitionCommand";
39
46
  import { UpdateDomainCommandInput, UpdateDomainCommandOutput } from "../commands/UpdateDomainCommand";
40
47
  import { UpdateProfileCommandInput, UpdateProfileCommandOutput } from "../commands/UpdateProfileCommand";
41
48
  /**
42
49
  * serializeAws_restJson1AddProfileKeyCommand
43
50
  */
44
51
  export declare const se_AddProfileKeyCommand: (input: AddProfileKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ /**
53
+ * serializeAws_restJson1CreateCalculatedAttributeDefinitionCommand
54
+ */
55
+ export declare const se_CreateCalculatedAttributeDefinitionCommand: (input: CreateCalculatedAttributeDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
56
  /**
46
57
  * serializeAws_restJson1CreateDomainCommand
47
58
  */
@@ -54,6 +65,10 @@ export declare const se_CreateIntegrationWorkflowCommand: (input: CreateIntegrat
54
65
  * serializeAws_restJson1CreateProfileCommand
55
66
  */
56
67
  export declare const se_CreateProfileCommand: (input: CreateProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ /**
69
+ * serializeAws_restJson1DeleteCalculatedAttributeDefinitionCommand
70
+ */
71
+ export declare const se_DeleteCalculatedAttributeDefinitionCommand: (input: DeleteCalculatedAttributeDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
72
  /**
58
73
  * serializeAws_restJson1DeleteDomainCommand
59
74
  */
@@ -86,6 +101,14 @@ export declare const se_DeleteWorkflowCommand: (input: DeleteWorkflowCommandInpu
86
101
  * serializeAws_restJson1GetAutoMergingPreviewCommand
87
102
  */
88
103
  export declare const se_GetAutoMergingPreviewCommand: (input: GetAutoMergingPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
104
+ /**
105
+ * serializeAws_restJson1GetCalculatedAttributeDefinitionCommand
106
+ */
107
+ export declare const se_GetCalculatedAttributeDefinitionCommand: (input: GetCalculatedAttributeDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
108
+ /**
109
+ * serializeAws_restJson1GetCalculatedAttributeForProfileCommand
110
+ */
111
+ export declare const se_GetCalculatedAttributeForProfileCommand: (input: GetCalculatedAttributeForProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
89
112
  /**
90
113
  * serializeAws_restJson1GetDomainCommand
91
114
  */
@@ -122,6 +145,14 @@ export declare const se_GetWorkflowStepsCommand: (input: GetWorkflowStepsCommand
122
145
  * serializeAws_restJson1ListAccountIntegrationsCommand
123
146
  */
124
147
  export declare const se_ListAccountIntegrationsCommand: (input: ListAccountIntegrationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
148
+ /**
149
+ * serializeAws_restJson1ListCalculatedAttributeDefinitionsCommand
150
+ */
151
+ export declare const se_ListCalculatedAttributeDefinitionsCommand: (input: ListCalculatedAttributeDefinitionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
152
+ /**
153
+ * serializeAws_restJson1ListCalculatedAttributesForProfileCommand
154
+ */
155
+ export declare const se_ListCalculatedAttributesForProfileCommand: (input: ListCalculatedAttributesForProfileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
125
156
  /**
126
157
  * serializeAws_restJson1ListDomainsCommand
127
158
  */
@@ -182,6 +213,10 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
182
213
  * serializeAws_restJson1UntagResourceCommand
183
214
  */
184
215
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
216
+ /**
217
+ * serializeAws_restJson1UpdateCalculatedAttributeDefinitionCommand
218
+ */
219
+ export declare const se_UpdateCalculatedAttributeDefinitionCommand: (input: UpdateCalculatedAttributeDefinitionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
185
220
  /**
186
221
  * serializeAws_restJson1UpdateDomainCommand
187
222
  */
@@ -194,6 +229,10 @@ export declare const se_UpdateProfileCommand: (input: UpdateProfileCommandInput,
194
229
  * deserializeAws_restJson1AddProfileKeyCommand
195
230
  */
196
231
  export declare const de_AddProfileKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddProfileKeyCommandOutput>;
232
+ /**
233
+ * deserializeAws_restJson1CreateCalculatedAttributeDefinitionCommand
234
+ */
235
+ export declare const de_CreateCalculatedAttributeDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCalculatedAttributeDefinitionCommandOutput>;
197
236
  /**
198
237
  * deserializeAws_restJson1CreateDomainCommand
199
238
  */
@@ -206,6 +245,10 @@ export declare const de_CreateIntegrationWorkflowCommand: (output: __HttpRespons
206
245
  * deserializeAws_restJson1CreateProfileCommand
207
246
  */
208
247
  export declare const de_CreateProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateProfileCommandOutput>;
248
+ /**
249
+ * deserializeAws_restJson1DeleteCalculatedAttributeDefinitionCommand
250
+ */
251
+ export declare const de_DeleteCalculatedAttributeDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCalculatedAttributeDefinitionCommandOutput>;
209
252
  /**
210
253
  * deserializeAws_restJson1DeleteDomainCommand
211
254
  */
@@ -238,6 +281,14 @@ export declare const de_DeleteWorkflowCommand: (output: __HttpResponse, context:
238
281
  * deserializeAws_restJson1GetAutoMergingPreviewCommand
239
282
  */
240
283
  export declare const de_GetAutoMergingPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAutoMergingPreviewCommandOutput>;
284
+ /**
285
+ * deserializeAws_restJson1GetCalculatedAttributeDefinitionCommand
286
+ */
287
+ export declare const de_GetCalculatedAttributeDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCalculatedAttributeDefinitionCommandOutput>;
288
+ /**
289
+ * deserializeAws_restJson1GetCalculatedAttributeForProfileCommand
290
+ */
291
+ export declare const de_GetCalculatedAttributeForProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCalculatedAttributeForProfileCommandOutput>;
241
292
  /**
242
293
  * deserializeAws_restJson1GetDomainCommand
243
294
  */
@@ -274,6 +325,14 @@ export declare const de_GetWorkflowStepsCommand: (output: __HttpResponse, contex
274
325
  * deserializeAws_restJson1ListAccountIntegrationsCommand
275
326
  */
276
327
  export declare const de_ListAccountIntegrationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccountIntegrationsCommandOutput>;
328
+ /**
329
+ * deserializeAws_restJson1ListCalculatedAttributeDefinitionsCommand
330
+ */
331
+ export declare const de_ListCalculatedAttributeDefinitionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCalculatedAttributeDefinitionsCommandOutput>;
332
+ /**
333
+ * deserializeAws_restJson1ListCalculatedAttributesForProfileCommand
334
+ */
335
+ export declare const de_ListCalculatedAttributesForProfileCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCalculatedAttributesForProfileCommandOutput>;
277
336
  /**
278
337
  * deserializeAws_restJson1ListDomainsCommand
279
338
  */
@@ -334,6 +393,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
334
393
  * deserializeAws_restJson1UntagResourceCommand
335
394
  */
336
395
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
396
+ /**
397
+ * deserializeAws_restJson1UpdateCalculatedAttributeDefinitionCommand
398
+ */
399
+ export declare const de_UpdateCalculatedAttributeDefinitionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCalculatedAttributeDefinitionCommandOutput>;
337
400
  /**
338
401
  * deserializeAws_restJson1UpdateDomainCommand
339
402
  */
@@ -3,6 +3,10 @@ import {
3
3
  AddProfileKeyCommandInput,
4
4
  AddProfileKeyCommandOutput,
5
5
  } from "./commands/AddProfileKeyCommand";
6
+ import {
7
+ CreateCalculatedAttributeDefinitionCommandInput,
8
+ CreateCalculatedAttributeDefinitionCommandOutput,
9
+ } from "./commands/CreateCalculatedAttributeDefinitionCommand";
6
10
  import {
7
11
  CreateDomainCommandInput,
8
12
  CreateDomainCommandOutput,
@@ -15,6 +19,10 @@ import {
15
19
  CreateProfileCommandInput,
16
20
  CreateProfileCommandOutput,
17
21
  } from "./commands/CreateProfileCommand";
22
+ import {
23
+ DeleteCalculatedAttributeDefinitionCommandInput,
24
+ DeleteCalculatedAttributeDefinitionCommandOutput,
25
+ } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
18
26
  import {
19
27
  DeleteDomainCommandInput,
20
28
  DeleteDomainCommandOutput,
@@ -47,6 +55,14 @@ import {
47
55
  GetAutoMergingPreviewCommandInput,
48
56
  GetAutoMergingPreviewCommandOutput,
49
57
  } from "./commands/GetAutoMergingPreviewCommand";
58
+ import {
59
+ GetCalculatedAttributeDefinitionCommandInput,
60
+ GetCalculatedAttributeDefinitionCommandOutput,
61
+ } from "./commands/GetCalculatedAttributeDefinitionCommand";
62
+ import {
63
+ GetCalculatedAttributeForProfileCommandInput,
64
+ GetCalculatedAttributeForProfileCommandOutput,
65
+ } from "./commands/GetCalculatedAttributeForProfileCommand";
50
66
  import {
51
67
  GetDomainCommandInput,
52
68
  GetDomainCommandOutput,
@@ -83,6 +99,14 @@ import {
83
99
  ListAccountIntegrationsCommandInput,
84
100
  ListAccountIntegrationsCommandOutput,
85
101
  } from "./commands/ListAccountIntegrationsCommand";
102
+ import {
103
+ ListCalculatedAttributeDefinitionsCommandInput,
104
+ ListCalculatedAttributeDefinitionsCommandOutput,
105
+ } from "./commands/ListCalculatedAttributeDefinitionsCommand";
106
+ import {
107
+ ListCalculatedAttributesForProfileCommandInput,
108
+ ListCalculatedAttributesForProfileCommandOutput,
109
+ } from "./commands/ListCalculatedAttributesForProfileCommand";
86
110
  import {
87
111
  ListDomainsCommandInput,
88
112
  ListDomainsCommandOutput,
@@ -143,6 +167,10 @@ import {
143
167
  UntagResourceCommandInput,
144
168
  UntagResourceCommandOutput,
145
169
  } from "./commands/UntagResourceCommand";
170
+ import {
171
+ UpdateCalculatedAttributeDefinitionCommandInput,
172
+ UpdateCalculatedAttributeDefinitionCommandOutput,
173
+ } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
146
174
  import {
147
175
  UpdateDomainCommandInput,
148
176
  UpdateDomainCommandOutput,
@@ -166,6 +194,25 @@ export interface CustomerProfiles {
166
194
  options: __HttpHandlerOptions,
167
195
  cb: (err: any, data?: AddProfileKeyCommandOutput) => void
168
196
  ): void;
197
+ createCalculatedAttributeDefinition(
198
+ args: CreateCalculatedAttributeDefinitionCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<CreateCalculatedAttributeDefinitionCommandOutput>;
201
+ createCalculatedAttributeDefinition(
202
+ args: CreateCalculatedAttributeDefinitionCommandInput,
203
+ cb: (
204
+ err: any,
205
+ data?: CreateCalculatedAttributeDefinitionCommandOutput
206
+ ) => void
207
+ ): void;
208
+ createCalculatedAttributeDefinition(
209
+ args: CreateCalculatedAttributeDefinitionCommandInput,
210
+ options: __HttpHandlerOptions,
211
+ cb: (
212
+ err: any,
213
+ data?: CreateCalculatedAttributeDefinitionCommandOutput
214
+ ) => void
215
+ ): void;
169
216
  createDomain(
170
217
  args: CreateDomainCommandInput,
171
218
  options?: __HttpHandlerOptions
@@ -205,6 +252,25 @@ export interface CustomerProfiles {
205
252
  options: __HttpHandlerOptions,
206
253
  cb: (err: any, data?: CreateProfileCommandOutput) => void
207
254
  ): void;
255
+ deleteCalculatedAttributeDefinition(
256
+ args: DeleteCalculatedAttributeDefinitionCommandInput,
257
+ options?: __HttpHandlerOptions
258
+ ): Promise<DeleteCalculatedAttributeDefinitionCommandOutput>;
259
+ deleteCalculatedAttributeDefinition(
260
+ args: DeleteCalculatedAttributeDefinitionCommandInput,
261
+ cb: (
262
+ err: any,
263
+ data?: DeleteCalculatedAttributeDefinitionCommandOutput
264
+ ) => void
265
+ ): void;
266
+ deleteCalculatedAttributeDefinition(
267
+ args: DeleteCalculatedAttributeDefinitionCommandInput,
268
+ options: __HttpHandlerOptions,
269
+ cb: (
270
+ err: any,
271
+ data?: DeleteCalculatedAttributeDefinitionCommandOutput
272
+ ) => void
273
+ ): void;
208
274
  deleteDomain(
209
275
  args: DeleteDomainCommandInput,
210
276
  options?: __HttpHandlerOptions
@@ -309,6 +375,32 @@ export interface CustomerProfiles {
309
375
  options: __HttpHandlerOptions,
310
376
  cb: (err: any, data?: GetAutoMergingPreviewCommandOutput) => void
311
377
  ): void;
378
+ getCalculatedAttributeDefinition(
379
+ args: GetCalculatedAttributeDefinitionCommandInput,
380
+ options?: __HttpHandlerOptions
381
+ ): Promise<GetCalculatedAttributeDefinitionCommandOutput>;
382
+ getCalculatedAttributeDefinition(
383
+ args: GetCalculatedAttributeDefinitionCommandInput,
384
+ cb: (err: any, data?: GetCalculatedAttributeDefinitionCommandOutput) => void
385
+ ): void;
386
+ getCalculatedAttributeDefinition(
387
+ args: GetCalculatedAttributeDefinitionCommandInput,
388
+ options: __HttpHandlerOptions,
389
+ cb: (err: any, data?: GetCalculatedAttributeDefinitionCommandOutput) => void
390
+ ): void;
391
+ getCalculatedAttributeForProfile(
392
+ args: GetCalculatedAttributeForProfileCommandInput,
393
+ options?: __HttpHandlerOptions
394
+ ): Promise<GetCalculatedAttributeForProfileCommandOutput>;
395
+ getCalculatedAttributeForProfile(
396
+ args: GetCalculatedAttributeForProfileCommandInput,
397
+ cb: (err: any, data?: GetCalculatedAttributeForProfileCommandOutput) => void
398
+ ): void;
399
+ getCalculatedAttributeForProfile(
400
+ args: GetCalculatedAttributeForProfileCommandInput,
401
+ options: __HttpHandlerOptions,
402
+ cb: (err: any, data?: GetCalculatedAttributeForProfileCommandOutput) => void
403
+ ): void;
312
404
  getDomain(
313
405
  args: GetDomainCommandInput,
314
406
  options?: __HttpHandlerOptions
@@ -426,6 +518,44 @@ export interface CustomerProfiles {
426
518
  options: __HttpHandlerOptions,
427
519
  cb: (err: any, data?: ListAccountIntegrationsCommandOutput) => void
428
520
  ): void;
521
+ listCalculatedAttributeDefinitions(
522
+ args: ListCalculatedAttributeDefinitionsCommandInput,
523
+ options?: __HttpHandlerOptions
524
+ ): Promise<ListCalculatedAttributeDefinitionsCommandOutput>;
525
+ listCalculatedAttributeDefinitions(
526
+ args: ListCalculatedAttributeDefinitionsCommandInput,
527
+ cb: (
528
+ err: any,
529
+ data?: ListCalculatedAttributeDefinitionsCommandOutput
530
+ ) => void
531
+ ): void;
532
+ listCalculatedAttributeDefinitions(
533
+ args: ListCalculatedAttributeDefinitionsCommandInput,
534
+ options: __HttpHandlerOptions,
535
+ cb: (
536
+ err: any,
537
+ data?: ListCalculatedAttributeDefinitionsCommandOutput
538
+ ) => void
539
+ ): void;
540
+ listCalculatedAttributesForProfile(
541
+ args: ListCalculatedAttributesForProfileCommandInput,
542
+ options?: __HttpHandlerOptions
543
+ ): Promise<ListCalculatedAttributesForProfileCommandOutput>;
544
+ listCalculatedAttributesForProfile(
545
+ args: ListCalculatedAttributesForProfileCommandInput,
546
+ cb: (
547
+ err: any,
548
+ data?: ListCalculatedAttributesForProfileCommandOutput
549
+ ) => void
550
+ ): void;
551
+ listCalculatedAttributesForProfile(
552
+ args: ListCalculatedAttributesForProfileCommandInput,
553
+ options: __HttpHandlerOptions,
554
+ cb: (
555
+ err: any,
556
+ data?: ListCalculatedAttributesForProfileCommandOutput
557
+ ) => void
558
+ ): void;
429
559
  listDomains(
430
560
  args: ListDomainsCommandInput,
431
561
  options?: __HttpHandlerOptions
@@ -621,6 +751,25 @@ export interface CustomerProfiles {
621
751
  options: __HttpHandlerOptions,
622
752
  cb: (err: any, data?: UntagResourceCommandOutput) => void
623
753
  ): void;
754
+ updateCalculatedAttributeDefinition(
755
+ args: UpdateCalculatedAttributeDefinitionCommandInput,
756
+ options?: __HttpHandlerOptions
757
+ ): Promise<UpdateCalculatedAttributeDefinitionCommandOutput>;
758
+ updateCalculatedAttributeDefinition(
759
+ args: UpdateCalculatedAttributeDefinitionCommandInput,
760
+ cb: (
761
+ err: any,
762
+ data?: UpdateCalculatedAttributeDefinitionCommandOutput
763
+ ) => void
764
+ ): void;
765
+ updateCalculatedAttributeDefinition(
766
+ args: UpdateCalculatedAttributeDefinitionCommandInput,
767
+ options: __HttpHandlerOptions,
768
+ cb: (
769
+ err: any,
770
+ data?: UpdateCalculatedAttributeDefinitionCommandOutput
771
+ ) => void
772
+ ): void;
624
773
  updateDomain(
625
774
  args: UpdateDomainCommandInput,
626
775
  options?: __HttpHandlerOptions
@@ -50,6 +50,10 @@ import {
50
50
  AddProfileKeyCommandInput,
51
51
  AddProfileKeyCommandOutput,
52
52
  } from "./commands/AddProfileKeyCommand";
53
+ import {
54
+ CreateCalculatedAttributeDefinitionCommandInput,
55
+ CreateCalculatedAttributeDefinitionCommandOutput,
56
+ } from "./commands/CreateCalculatedAttributeDefinitionCommand";
53
57
  import {
54
58
  CreateDomainCommandInput,
55
59
  CreateDomainCommandOutput,
@@ -62,6 +66,10 @@ import {
62
66
  CreateProfileCommandInput,
63
67
  CreateProfileCommandOutput,
64
68
  } from "./commands/CreateProfileCommand";
69
+ import {
70
+ DeleteCalculatedAttributeDefinitionCommandInput,
71
+ DeleteCalculatedAttributeDefinitionCommandOutput,
72
+ } from "./commands/DeleteCalculatedAttributeDefinitionCommand";
65
73
  import {
66
74
  DeleteDomainCommandInput,
67
75
  DeleteDomainCommandOutput,
@@ -94,6 +102,14 @@ import {
94
102
  GetAutoMergingPreviewCommandInput,
95
103
  GetAutoMergingPreviewCommandOutput,
96
104
  } from "./commands/GetAutoMergingPreviewCommand";
105
+ import {
106
+ GetCalculatedAttributeDefinitionCommandInput,
107
+ GetCalculatedAttributeDefinitionCommandOutput,
108
+ } from "./commands/GetCalculatedAttributeDefinitionCommand";
109
+ import {
110
+ GetCalculatedAttributeForProfileCommandInput,
111
+ GetCalculatedAttributeForProfileCommandOutput,
112
+ } from "./commands/GetCalculatedAttributeForProfileCommand";
97
113
  import {
98
114
  GetDomainCommandInput,
99
115
  GetDomainCommandOutput,
@@ -130,6 +146,14 @@ import {
130
146
  ListAccountIntegrationsCommandInput,
131
147
  ListAccountIntegrationsCommandOutput,
132
148
  } from "./commands/ListAccountIntegrationsCommand";
149
+ import {
150
+ ListCalculatedAttributeDefinitionsCommandInput,
151
+ ListCalculatedAttributeDefinitionsCommandOutput,
152
+ } from "./commands/ListCalculatedAttributeDefinitionsCommand";
153
+ import {
154
+ ListCalculatedAttributesForProfileCommandInput,
155
+ ListCalculatedAttributesForProfileCommandOutput,
156
+ } from "./commands/ListCalculatedAttributesForProfileCommand";
133
157
  import {
134
158
  ListDomainsCommandInput,
135
159
  ListDomainsCommandOutput,
@@ -190,6 +214,10 @@ import {
190
214
  UntagResourceCommandInput,
191
215
  UntagResourceCommandOutput,
192
216
  } from "./commands/UntagResourceCommand";
217
+ import {
218
+ UpdateCalculatedAttributeDefinitionCommandInput,
219
+ UpdateCalculatedAttributeDefinitionCommandOutput,
220
+ } from "./commands/UpdateCalculatedAttributeDefinitionCommand";
193
221
  import {
194
222
  UpdateDomainCommandInput,
195
223
  UpdateDomainCommandOutput,
@@ -206,9 +234,11 @@ import {
206
234
  export { __Client };
207
235
  export type ServiceInputTypes =
208
236
  | AddProfileKeyCommandInput
237
+ | CreateCalculatedAttributeDefinitionCommandInput
209
238
  | CreateDomainCommandInput
210
239
  | CreateIntegrationWorkflowCommandInput
211
240
  | CreateProfileCommandInput
241
+ | DeleteCalculatedAttributeDefinitionCommandInput
212
242
  | DeleteDomainCommandInput
213
243
  | DeleteIntegrationCommandInput
214
244
  | DeleteProfileCommandInput
@@ -217,6 +247,8 @@ export type ServiceInputTypes =
217
247
  | DeleteProfileObjectTypeCommandInput
218
248
  | DeleteWorkflowCommandInput
219
249
  | GetAutoMergingPreviewCommandInput
250
+ | GetCalculatedAttributeDefinitionCommandInput
251
+ | GetCalculatedAttributeForProfileCommandInput
220
252
  | GetDomainCommandInput
221
253
  | GetIdentityResolutionJobCommandInput
222
254
  | GetIntegrationCommandInput
@@ -226,6 +258,8 @@ export type ServiceInputTypes =
226
258
  | GetWorkflowCommandInput
227
259
  | GetWorkflowStepsCommandInput
228
260
  | ListAccountIntegrationsCommandInput
261
+ | ListCalculatedAttributeDefinitionsCommandInput
262
+ | ListCalculatedAttributesForProfileCommandInput
229
263
  | ListDomainsCommandInput
230
264
  | ListIdentityResolutionJobsCommandInput
231
265
  | ListIntegrationsCommandInput
@@ -241,13 +275,16 @@ export type ServiceInputTypes =
241
275
  | SearchProfilesCommandInput
242
276
  | TagResourceCommandInput
243
277
  | UntagResourceCommandInput
278
+ | UpdateCalculatedAttributeDefinitionCommandInput
244
279
  | UpdateDomainCommandInput
245
280
  | UpdateProfileCommandInput;
246
281
  export type ServiceOutputTypes =
247
282
  | AddProfileKeyCommandOutput
283
+ | CreateCalculatedAttributeDefinitionCommandOutput
248
284
  | CreateDomainCommandOutput
249
285
  | CreateIntegrationWorkflowCommandOutput
250
286
  | CreateProfileCommandOutput
287
+ | DeleteCalculatedAttributeDefinitionCommandOutput
251
288
  | DeleteDomainCommandOutput
252
289
  | DeleteIntegrationCommandOutput
253
290
  | DeleteProfileCommandOutput
@@ -256,6 +293,8 @@ export type ServiceOutputTypes =
256
293
  | DeleteProfileObjectTypeCommandOutput
257
294
  | DeleteWorkflowCommandOutput
258
295
  | GetAutoMergingPreviewCommandOutput
296
+ | GetCalculatedAttributeDefinitionCommandOutput
297
+ | GetCalculatedAttributeForProfileCommandOutput
259
298
  | GetDomainCommandOutput
260
299
  | GetIdentityResolutionJobCommandOutput
261
300
  | GetIntegrationCommandOutput
@@ -265,6 +304,8 @@ export type ServiceOutputTypes =
265
304
  | GetWorkflowCommandOutput
266
305
  | GetWorkflowStepsCommandOutput
267
306
  | ListAccountIntegrationsCommandOutput
307
+ | ListCalculatedAttributeDefinitionsCommandOutput
308
+ | ListCalculatedAttributesForProfileCommandOutput
268
309
  | ListDomainsCommandOutput
269
310
  | ListIdentityResolutionJobsCommandOutput
270
311
  | ListIntegrationsCommandOutput
@@ -280,6 +321,7 @@ export type ServiceOutputTypes =
280
321
  | SearchProfilesCommandOutput
281
322
  | TagResourceCommandOutput
282
323
  | UntagResourceCommandOutput
324
+ | UpdateCalculatedAttributeDefinitionCommandOutput
283
325
  | UpdateDomainCommandOutput
284
326
  | UpdateProfileCommandOutput;
285
327
  export interface ClientDefaults
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ CreateCalculatedAttributeDefinitionRequest,
16
+ CreateCalculatedAttributeDefinitionResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateCalculatedAttributeDefinitionCommandInput
20
+ extends CreateCalculatedAttributeDefinitionRequest {}
21
+ export interface CreateCalculatedAttributeDefinitionCommandOutput
22
+ extends CreateCalculatedAttributeDefinitionResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateCalculatedAttributeDefinitionCommand extends $Command<
25
+ CreateCalculatedAttributeDefinitionCommandInput,
26
+ CreateCalculatedAttributeDefinitionCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: CreateCalculatedAttributeDefinitionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateCalculatedAttributeDefinitionCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateCalculatedAttributeDefinitionCommandInput,
38
+ CreateCalculatedAttributeDefinitionCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ DeleteCalculatedAttributeDefinitionRequest,
16
+ DeleteCalculatedAttributeDefinitionResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteCalculatedAttributeDefinitionCommandInput
20
+ extends DeleteCalculatedAttributeDefinitionRequest {}
21
+ export interface DeleteCalculatedAttributeDefinitionCommandOutput
22
+ extends DeleteCalculatedAttributeDefinitionResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeleteCalculatedAttributeDefinitionCommand extends $Command<
25
+ DeleteCalculatedAttributeDefinitionCommandInput,
26
+ DeleteCalculatedAttributeDefinitionCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteCalculatedAttributeDefinitionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteCalculatedAttributeDefinitionCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteCalculatedAttributeDefinitionCommandInput,
38
+ DeleteCalculatedAttributeDefinitionCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ GetCalculatedAttributeDefinitionRequest,
16
+ GetCalculatedAttributeDefinitionResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetCalculatedAttributeDefinitionCommandInput
20
+ extends GetCalculatedAttributeDefinitionRequest {}
21
+ export interface GetCalculatedAttributeDefinitionCommandOutput
22
+ extends GetCalculatedAttributeDefinitionResponse,
23
+ __MetadataBearer {}
24
+ export declare class GetCalculatedAttributeDefinitionCommand extends $Command<
25
+ GetCalculatedAttributeDefinitionCommandInput,
26
+ GetCalculatedAttributeDefinitionCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: GetCalculatedAttributeDefinitionCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetCalculatedAttributeDefinitionCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetCalculatedAttributeDefinitionCommandInput,
38
+ GetCalculatedAttributeDefinitionCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ CustomerProfilesClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../CustomerProfilesClient";
14
+ import {
15
+ GetCalculatedAttributeForProfileRequest,
16
+ GetCalculatedAttributeForProfileResponse,
17
+ } from "../models/models_0";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetCalculatedAttributeForProfileCommandInput
20
+ extends GetCalculatedAttributeForProfileRequest {}
21
+ export interface GetCalculatedAttributeForProfileCommandOutput
22
+ extends GetCalculatedAttributeForProfileResponse,
23
+ __MetadataBearer {}
24
+ export declare class GetCalculatedAttributeForProfileCommand extends $Command<
25
+ GetCalculatedAttributeForProfileCommandInput,
26
+ GetCalculatedAttributeForProfileCommandOutput,
27
+ CustomerProfilesClientResolvedConfig
28
+ > {
29
+ readonly input: GetCalculatedAttributeForProfileCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetCalculatedAttributeForProfileCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: CustomerProfilesClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetCalculatedAttributeForProfileCommandInput,
38
+ GetCalculatedAttributeForProfileCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }