@@ -32,6 +32,11 @@ import {
32
32
CreateEventStreamCommandInput ,
33
33
CreateEventStreamCommandOutput ,
34
34
} from "./commands/CreateEventStreamCommand" ;
35
+ import {
36
+ CreateEventTriggerCommand ,
37
+ CreateEventTriggerCommandInput ,
38
+ CreateEventTriggerCommandOutput ,
39
+ } from "./commands/CreateEventTriggerCommand" ;
35
40
import {
36
41
CreateIntegrationWorkflowCommand ,
37
42
CreateIntegrationWorkflowCommandInput ,
@@ -72,6 +77,11 @@ import {
72
77
DeleteEventStreamCommandInput ,
73
78
DeleteEventStreamCommandOutput ,
74
79
} from "./commands/DeleteEventStreamCommand" ;
80
+ import {
81
+ DeleteEventTriggerCommand ,
82
+ DeleteEventTriggerCommandInput ,
83
+ DeleteEventTriggerCommandOutput ,
84
+ } from "./commands/DeleteEventTriggerCommand" ;
75
85
import {
76
86
DeleteIntegrationCommand ,
77
87
DeleteIntegrationCommandInput ,
@@ -133,6 +143,11 @@ import {
133
143
GetEventStreamCommandInput ,
134
144
GetEventStreamCommandOutput ,
135
145
} from "./commands/GetEventStreamCommand" ;
146
+ import {
147
+ GetEventTriggerCommand ,
148
+ GetEventTriggerCommandInput ,
149
+ GetEventTriggerCommandOutput ,
150
+ } from "./commands/GetEventTriggerCommand" ;
136
151
import {
137
152
GetIdentityResolutionJobCommand ,
138
153
GetIdentityResolutionJobCommandInput ,
@@ -206,6 +221,11 @@ import {
206
221
ListEventStreamsCommandInput ,
207
222
ListEventStreamsCommandOutput ,
208
223
} from "./commands/ListEventStreamsCommand" ;
224
+ import {
225
+ ListEventTriggersCommand ,
226
+ ListEventTriggersCommandInput ,
227
+ ListEventTriggersCommandOutput ,
228
+ } from "./commands/ListEventTriggersCommand" ;
209
229
import {
210
230
ListIdentityResolutionJobsCommand ,
211
231
ListIdentityResolutionJobsCommandInput ,
@@ -302,6 +322,11 @@ import {
302
322
UpdateDomainCommandInput ,
303
323
UpdateDomainCommandOutput ,
304
324
} from "./commands/UpdateDomainCommand" ;
325
+ import {
326
+ UpdateEventTriggerCommand ,
327
+ UpdateEventTriggerCommandInput ,
328
+ UpdateEventTriggerCommandOutput ,
329
+ } from "./commands/UpdateEventTriggerCommand" ;
305
330
import {
306
331
UpdateProfileCommand ,
307
332
UpdateProfileCommandInput ,
@@ -316,6 +341,7 @@ const commands = {
316
341
CreateCalculatedAttributeDefinitionCommand,
317
342
CreateDomainCommand,
318
343
CreateEventStreamCommand,
344
+ CreateEventTriggerCommand,
319
345
CreateIntegrationWorkflowCommand,
320
346
CreateProfileCommand,
321
347
CreateSegmentDefinitionCommand,
@@ -324,6 +350,7 @@ const commands = {
324
350
DeleteCalculatedAttributeDefinitionCommand,
325
351
DeleteDomainCommand,
326
352
DeleteEventStreamCommand,
353
+ DeleteEventTriggerCommand,
327
354
DeleteIntegrationCommand,
328
355
DeleteProfileCommand,
329
356
DeleteProfileKeyCommand,
@@ -337,6 +364,7 @@ const commands = {
337
364
GetCalculatedAttributeForProfileCommand,
338
365
GetDomainCommand,
339
366
GetEventStreamCommand,
367
+ GetEventTriggerCommand,
340
368
GetIdentityResolutionJobCommand,
341
369
GetIntegrationCommand,
342
370
GetMatchesCommand,
@@ -354,6 +382,7 @@ const commands = {
354
382
ListCalculatedAttributesForProfileCommand,
355
383
ListDomainsCommand,
356
384
ListEventStreamsCommand,
385
+ ListEventTriggersCommand,
357
386
ListIdentityResolutionJobsCommand,
358
387
ListIntegrationsCommand,
359
388
ListObjectTypeAttributesCommand,
@@ -374,6 +403,7 @@ const commands = {
374
403
UntagResourceCommand,
375
404
UpdateCalculatedAttributeDefinitionCommand,
376
405
UpdateDomainCommand,
406
+ UpdateEventTriggerCommand,
377
407
UpdateProfileCommand,
378
408
} ;
379
409
@@ -465,6 +495,23 @@ export interface CustomerProfiles {
465
495
cb : ( err : any , data ?: CreateEventStreamCommandOutput ) => void
466
496
) : void ;
467
497
498
+ /**
499
+ * @see {@link CreateEventTriggerCommand }
500
+ */
501
+ createEventTrigger (
502
+ args : CreateEventTriggerCommandInput ,
503
+ options ?: __HttpHandlerOptions
504
+ ) : Promise < CreateEventTriggerCommandOutput > ;
505
+ createEventTrigger (
506
+ args : CreateEventTriggerCommandInput ,
507
+ cb : ( err : any , data ?: CreateEventTriggerCommandOutput ) => void
508
+ ) : void ;
509
+ createEventTrigger (
510
+ args : CreateEventTriggerCommandInput ,
511
+ options : __HttpHandlerOptions ,
512
+ cb : ( err : any , data ?: CreateEventTriggerCommandOutput ) => void
513
+ ) : void ;
514
+
468
515
/**
469
516
* @see {@link CreateIntegrationWorkflowCommand }
470
517
*/
@@ -589,6 +636,23 @@ export interface CustomerProfiles {
589
636
cb : ( err : any , data ?: DeleteEventStreamCommandOutput ) => void
590
637
) : void ;
591
638
639
+ /**
640
+ * @see {@link DeleteEventTriggerCommand }
641
+ */
642
+ deleteEventTrigger (
643
+ args : DeleteEventTriggerCommandInput ,
644
+ options ?: __HttpHandlerOptions
645
+ ) : Promise < DeleteEventTriggerCommandOutput > ;
646
+ deleteEventTrigger (
647
+ args : DeleteEventTriggerCommandInput ,
648
+ cb : ( err : any , data ?: DeleteEventTriggerCommandOutput ) => void
649
+ ) : void ;
650
+ deleteEventTrigger (
651
+ args : DeleteEventTriggerCommandInput ,
652
+ options : __HttpHandlerOptions ,
653
+ cb : ( err : any , data ?: DeleteEventTriggerCommandOutput ) => void
654
+ ) : void ;
655
+
592
656
/**
593
657
* @see {@link DeleteIntegrationCommand }
594
658
*/
@@ -792,6 +856,20 @@ export interface CustomerProfiles {
792
856
cb : ( err : any , data ?: GetEventStreamCommandOutput ) => void
793
857
) : void ;
794
858
859
+ /**
860
+ * @see {@link GetEventTriggerCommand }
861
+ */
862
+ getEventTrigger (
863
+ args : GetEventTriggerCommandInput ,
864
+ options ?: __HttpHandlerOptions
865
+ ) : Promise < GetEventTriggerCommandOutput > ;
866
+ getEventTrigger ( args : GetEventTriggerCommandInput , cb : ( err : any , data ?: GetEventTriggerCommandOutput ) => void ) : void ;
867
+ getEventTrigger (
868
+ args : GetEventTriggerCommandInput ,
869
+ options : __HttpHandlerOptions ,
870
+ cb : ( err : any , data ?: GetEventTriggerCommandOutput ) => void
871
+ ) : void ;
872
+
795
873
/**
796
874
* @see {@link GetIdentityResolutionJobCommand }
797
875
*/
@@ -1061,6 +1139,23 @@ export interface CustomerProfiles {
1061
1139
cb : ( err : any , data ?: ListEventStreamsCommandOutput ) => void
1062
1140
) : void ;
1063
1141
1142
+ /**
1143
+ * @see {@link ListEventTriggersCommand }
1144
+ */
1145
+ listEventTriggers (
1146
+ args : ListEventTriggersCommandInput ,
1147
+ options ?: __HttpHandlerOptions
1148
+ ) : Promise < ListEventTriggersCommandOutput > ;
1149
+ listEventTriggers (
1150
+ args : ListEventTriggersCommandInput ,
1151
+ cb : ( err : any , data ?: ListEventTriggersCommandOutput ) => void
1152
+ ) : void ;
1153
+ listEventTriggers (
1154
+ args : ListEventTriggersCommandInput ,
1155
+ options : __HttpHandlerOptions ,
1156
+ cb : ( err : any , data ?: ListEventTriggersCommandOutput ) => void
1157
+ ) : void ;
1158
+
1064
1159
/**
1065
1160
* @see {@link ListIdentityResolutionJobsCommand }
1066
1161
*/
@@ -1366,6 +1461,23 @@ export interface CustomerProfiles {
1366
1461
cb : ( err : any , data ?: UpdateDomainCommandOutput ) => void
1367
1462
) : void ;
1368
1463
1464
+ /**
1465
+ * @see {@link UpdateEventTriggerCommand }
1466
+ */
1467
+ updateEventTrigger (
1468
+ args : UpdateEventTriggerCommandInput ,
1469
+ options ?: __HttpHandlerOptions
1470
+ ) : Promise < UpdateEventTriggerCommandOutput > ;
1471
+ updateEventTrigger (
1472
+ args : UpdateEventTriggerCommandInput ,
1473
+ cb : ( err : any , data ?: UpdateEventTriggerCommandOutput ) => void
1474
+ ) : void ;
1475
+ updateEventTrigger (
1476
+ args : UpdateEventTriggerCommandInput ,
1477
+ options : __HttpHandlerOptions ,
1478
+ cb : ( err : any , data ?: UpdateEventTriggerCommandOutput ) => void
1479
+ ) : void ;
1480
+
1369
1481
/**
1370
1482
* @see {@link UpdateProfileCommand }
1371
1483
*/
0 commit comments