@@ -7,6 +7,11 @@ import {
7
7
AddProfileKeyCommandInput ,
8
8
AddProfileKeyCommandOutput ,
9
9
} from "./commands/AddProfileKeyCommand" ;
10
+ import {
11
+ CreateCalculatedAttributeDefinitionCommand ,
12
+ CreateCalculatedAttributeDefinitionCommandInput ,
13
+ CreateCalculatedAttributeDefinitionCommandOutput ,
14
+ } from "./commands/CreateCalculatedAttributeDefinitionCommand" ;
10
15
import {
11
16
CreateDomainCommand ,
12
17
CreateDomainCommandInput ,
@@ -22,6 +27,11 @@ import {
22
27
CreateProfileCommandInput ,
23
28
CreateProfileCommandOutput ,
24
29
} from "./commands/CreateProfileCommand" ;
30
+ import {
31
+ DeleteCalculatedAttributeDefinitionCommand ,
32
+ DeleteCalculatedAttributeDefinitionCommandInput ,
33
+ DeleteCalculatedAttributeDefinitionCommandOutput ,
34
+ } from "./commands/DeleteCalculatedAttributeDefinitionCommand" ;
25
35
import {
26
36
DeleteDomainCommand ,
27
37
DeleteDomainCommandInput ,
@@ -62,6 +72,16 @@ import {
62
72
GetAutoMergingPreviewCommandInput ,
63
73
GetAutoMergingPreviewCommandOutput ,
64
74
} from "./commands/GetAutoMergingPreviewCommand" ;
75
+ import {
76
+ GetCalculatedAttributeDefinitionCommand ,
77
+ GetCalculatedAttributeDefinitionCommandInput ,
78
+ GetCalculatedAttributeDefinitionCommandOutput ,
79
+ } from "./commands/GetCalculatedAttributeDefinitionCommand" ;
80
+ import {
81
+ GetCalculatedAttributeForProfileCommand ,
82
+ GetCalculatedAttributeForProfileCommandInput ,
83
+ GetCalculatedAttributeForProfileCommandOutput ,
84
+ } from "./commands/GetCalculatedAttributeForProfileCommand" ;
65
85
import { GetDomainCommand , GetDomainCommandInput , GetDomainCommandOutput } from "./commands/GetDomainCommand" ;
66
86
import {
67
87
GetIdentityResolutionJobCommand ,
@@ -95,6 +115,16 @@ import {
95
115
ListAccountIntegrationsCommandInput ,
96
116
ListAccountIntegrationsCommandOutput ,
97
117
} from "./commands/ListAccountIntegrationsCommand" ;
118
+ import {
119
+ ListCalculatedAttributeDefinitionsCommand ,
120
+ ListCalculatedAttributeDefinitionsCommandInput ,
121
+ ListCalculatedAttributeDefinitionsCommandOutput ,
122
+ } from "./commands/ListCalculatedAttributeDefinitionsCommand" ;
123
+ import {
124
+ ListCalculatedAttributesForProfileCommand ,
125
+ ListCalculatedAttributesForProfileCommandInput ,
126
+ ListCalculatedAttributesForProfileCommandOutput ,
127
+ } from "./commands/ListCalculatedAttributesForProfileCommand" ;
98
128
import { ListDomainsCommand , ListDomainsCommandInput , ListDomainsCommandOutput } from "./commands/ListDomainsCommand" ;
99
129
import {
100
130
ListIdentityResolutionJobsCommand ,
@@ -162,6 +192,11 @@ import {
162
192
UntagResourceCommandInput ,
163
193
UntagResourceCommandOutput ,
164
194
} from "./commands/UntagResourceCommand" ;
195
+ import {
196
+ UpdateCalculatedAttributeDefinitionCommand ,
197
+ UpdateCalculatedAttributeDefinitionCommandInput ,
198
+ UpdateCalculatedAttributeDefinitionCommandOutput ,
199
+ } from "./commands/UpdateCalculatedAttributeDefinitionCommand" ;
165
200
import {
166
201
UpdateDomainCommand ,
167
202
UpdateDomainCommandInput ,
@@ -176,9 +211,11 @@ import { CustomerProfilesClient, CustomerProfilesClientConfig } from "./Customer
176
211
177
212
const commands = {
178
213
AddProfileKeyCommand,
214
+ CreateCalculatedAttributeDefinitionCommand,
179
215
CreateDomainCommand,
180
216
CreateIntegrationWorkflowCommand,
181
217
CreateProfileCommand,
218
+ DeleteCalculatedAttributeDefinitionCommand,
182
219
DeleteDomainCommand,
183
220
DeleteIntegrationCommand,
184
221
DeleteProfileCommand,
@@ -187,6 +224,8 @@ const commands = {
187
224
DeleteProfileObjectTypeCommand,
188
225
DeleteWorkflowCommand,
189
226
GetAutoMergingPreviewCommand,
227
+ GetCalculatedAttributeDefinitionCommand,
228
+ GetCalculatedAttributeForProfileCommand,
190
229
GetDomainCommand,
191
230
GetIdentityResolutionJobCommand,
192
231
GetIntegrationCommand,
@@ -196,6 +235,8 @@ const commands = {
196
235
GetWorkflowCommand,
197
236
GetWorkflowStepsCommand,
198
237
ListAccountIntegrationsCommand,
238
+ ListCalculatedAttributeDefinitionsCommand,
239
+ ListCalculatedAttributesForProfileCommand,
199
240
ListDomainsCommand,
200
241
ListIdentityResolutionJobsCommand,
201
242
ListIntegrationsCommand,
@@ -211,6 +252,7 @@ const commands = {
211
252
SearchProfilesCommand,
212
253
TagResourceCommand,
213
254
UntagResourceCommand,
255
+ UpdateCalculatedAttributeDefinitionCommand,
214
256
UpdateDomainCommand,
215
257
UpdateProfileCommand,
216
258
} ;
@@ -227,6 +269,23 @@ export interface CustomerProfiles {
227
269
cb : ( err : any , data ?: AddProfileKeyCommandOutput ) => void
228
270
) : void ;
229
271
272
+ /**
273
+ * @see {@link CreateCalculatedAttributeDefinitionCommand }
274
+ */
275
+ createCalculatedAttributeDefinition (
276
+ args : CreateCalculatedAttributeDefinitionCommandInput ,
277
+ options ?: __HttpHandlerOptions
278
+ ) : Promise < CreateCalculatedAttributeDefinitionCommandOutput > ;
279
+ createCalculatedAttributeDefinition (
280
+ args : CreateCalculatedAttributeDefinitionCommandInput ,
281
+ cb : ( err : any , data ?: CreateCalculatedAttributeDefinitionCommandOutput ) => void
282
+ ) : void ;
283
+ createCalculatedAttributeDefinition (
284
+ args : CreateCalculatedAttributeDefinitionCommandInput ,
285
+ options : __HttpHandlerOptions ,
286
+ cb : ( err : any , data ?: CreateCalculatedAttributeDefinitionCommandOutput ) => void
287
+ ) : void ;
288
+
230
289
/**
231
290
* @see {@link CreateDomainCommand }
232
291
*/
@@ -266,6 +325,23 @@ export interface CustomerProfiles {
266
325
cb : ( err : any , data ?: CreateProfileCommandOutput ) => void
267
326
) : void ;
268
327
328
+ /**
329
+ * @see {@link DeleteCalculatedAttributeDefinitionCommand }
330
+ */
331
+ deleteCalculatedAttributeDefinition (
332
+ args : DeleteCalculatedAttributeDefinitionCommandInput ,
333
+ options ?: __HttpHandlerOptions
334
+ ) : Promise < DeleteCalculatedAttributeDefinitionCommandOutput > ;
335
+ deleteCalculatedAttributeDefinition (
336
+ args : DeleteCalculatedAttributeDefinitionCommandInput ,
337
+ cb : ( err : any , data ?: DeleteCalculatedAttributeDefinitionCommandOutput ) => void
338
+ ) : void ;
339
+ deleteCalculatedAttributeDefinition (
340
+ args : DeleteCalculatedAttributeDefinitionCommandInput ,
341
+ options : __HttpHandlerOptions ,
342
+ cb : ( err : any , data ?: DeleteCalculatedAttributeDefinitionCommandOutput ) => void
343
+ ) : void ;
344
+
269
345
/**
270
346
* @see {@link DeleteDomainCommand }
271
347
*/
@@ -387,6 +463,40 @@ export interface CustomerProfiles {
387
463
cb : ( err : any , data ?: GetAutoMergingPreviewCommandOutput ) => void
388
464
) : void ;
389
465
466
+ /**
467
+ * @see {@link GetCalculatedAttributeDefinitionCommand }
468
+ */
469
+ getCalculatedAttributeDefinition (
470
+ args : GetCalculatedAttributeDefinitionCommandInput ,
471
+ options ?: __HttpHandlerOptions
472
+ ) : Promise < GetCalculatedAttributeDefinitionCommandOutput > ;
473
+ getCalculatedAttributeDefinition (
474
+ args : GetCalculatedAttributeDefinitionCommandInput ,
475
+ cb : ( err : any , data ?: GetCalculatedAttributeDefinitionCommandOutput ) => void
476
+ ) : void ;
477
+ getCalculatedAttributeDefinition (
478
+ args : GetCalculatedAttributeDefinitionCommandInput ,
479
+ options : __HttpHandlerOptions ,
480
+ cb : ( err : any , data ?: GetCalculatedAttributeDefinitionCommandOutput ) => void
481
+ ) : void ;
482
+
483
+ /**
484
+ * @see {@link GetCalculatedAttributeForProfileCommand }
485
+ */
486
+ getCalculatedAttributeForProfile (
487
+ args : GetCalculatedAttributeForProfileCommandInput ,
488
+ options ?: __HttpHandlerOptions
489
+ ) : Promise < GetCalculatedAttributeForProfileCommandOutput > ;
490
+ getCalculatedAttributeForProfile (
491
+ args : GetCalculatedAttributeForProfileCommandInput ,
492
+ cb : ( err : any , data ?: GetCalculatedAttributeForProfileCommandOutput ) => void
493
+ ) : void ;
494
+ getCalculatedAttributeForProfile (
495
+ args : GetCalculatedAttributeForProfileCommandInput ,
496
+ options : __HttpHandlerOptions ,
497
+ cb : ( err : any , data ?: GetCalculatedAttributeForProfileCommandOutput ) => void
498
+ ) : void ;
499
+
390
500
/**
391
501
* @see {@link GetDomainCommand }
392
502
*/
@@ -519,6 +629,40 @@ export interface CustomerProfiles {
519
629
cb : ( err : any , data ?: ListAccountIntegrationsCommandOutput ) => void
520
630
) : void ;
521
631
632
+ /**
633
+ * @see {@link ListCalculatedAttributeDefinitionsCommand }
634
+ */
635
+ listCalculatedAttributeDefinitions (
636
+ args : ListCalculatedAttributeDefinitionsCommandInput ,
637
+ options ?: __HttpHandlerOptions
638
+ ) : Promise < ListCalculatedAttributeDefinitionsCommandOutput > ;
639
+ listCalculatedAttributeDefinitions (
640
+ args : ListCalculatedAttributeDefinitionsCommandInput ,
641
+ cb : ( err : any , data ?: ListCalculatedAttributeDefinitionsCommandOutput ) => void
642
+ ) : void ;
643
+ listCalculatedAttributeDefinitions (
644
+ args : ListCalculatedAttributeDefinitionsCommandInput ,
645
+ options : __HttpHandlerOptions ,
646
+ cb : ( err : any , data ?: ListCalculatedAttributeDefinitionsCommandOutput ) => void
647
+ ) : void ;
648
+
649
+ /**
650
+ * @see {@link ListCalculatedAttributesForProfileCommand }
651
+ */
652
+ listCalculatedAttributesForProfile (
653
+ args : ListCalculatedAttributesForProfileCommandInput ,
654
+ options ?: __HttpHandlerOptions
655
+ ) : Promise < ListCalculatedAttributesForProfileCommandOutput > ;
656
+ listCalculatedAttributesForProfile (
657
+ args : ListCalculatedAttributesForProfileCommandInput ,
658
+ cb : ( err : any , data ?: ListCalculatedAttributesForProfileCommandOutput ) => void
659
+ ) : void ;
660
+ listCalculatedAttributesForProfile (
661
+ args : ListCalculatedAttributesForProfileCommandInput ,
662
+ options : __HttpHandlerOptions ,
663
+ cb : ( err : any , data ?: ListCalculatedAttributesForProfileCommandOutput ) => void
664
+ ) : void ;
665
+
522
666
/**
523
667
* @see {@link ListDomainsCommand }
524
668
*/
@@ -738,6 +882,23 @@ export interface CustomerProfiles {
738
882
cb : ( err : any , data ?: UntagResourceCommandOutput ) => void
739
883
) : void ;
740
884
885
+ /**
886
+ * @see {@link UpdateCalculatedAttributeDefinitionCommand }
887
+ */
888
+ updateCalculatedAttributeDefinition (
889
+ args : UpdateCalculatedAttributeDefinitionCommandInput ,
890
+ options ?: __HttpHandlerOptions
891
+ ) : Promise < UpdateCalculatedAttributeDefinitionCommandOutput > ;
892
+ updateCalculatedAttributeDefinition (
893
+ args : UpdateCalculatedAttributeDefinitionCommandInput ,
894
+ cb : ( err : any , data ?: UpdateCalculatedAttributeDefinitionCommandOutput ) => void
895
+ ) : void ;
896
+ updateCalculatedAttributeDefinition (
897
+ args : UpdateCalculatedAttributeDefinitionCommandInput ,
898
+ options : __HttpHandlerOptions ,
899
+ cb : ( err : any , data ?: UpdateCalculatedAttributeDefinitionCommandOutput ) => void
900
+ ) : void ;
901
+
741
902
/**
742
903
* @see {@link UpdateDomainCommand }
743
904
*/
0 commit comments