@@ -17,6 +17,11 @@ import {
17
17
CreateDomainCommandInput ,
18
18
CreateDomainCommandOutput ,
19
19
} from "./commands/CreateDomainCommand" ;
20
+ import {
21
+ CreateEventStreamCommand ,
22
+ CreateEventStreamCommandInput ,
23
+ CreateEventStreamCommandOutput ,
24
+ } from "./commands/CreateEventStreamCommand" ;
20
25
import {
21
26
CreateIntegrationWorkflowCommand ,
22
27
CreateIntegrationWorkflowCommandInput ,
@@ -37,6 +42,11 @@ import {
37
42
DeleteDomainCommandInput ,
38
43
DeleteDomainCommandOutput ,
39
44
} from "./commands/DeleteDomainCommand" ;
45
+ import {
46
+ DeleteEventStreamCommand ,
47
+ DeleteEventStreamCommandInput ,
48
+ DeleteEventStreamCommandOutput ,
49
+ } from "./commands/DeleteEventStreamCommand" ;
40
50
import {
41
51
DeleteIntegrationCommand ,
42
52
DeleteIntegrationCommandInput ,
@@ -83,6 +93,11 @@ import {
83
93
GetCalculatedAttributeForProfileCommandOutput ,
84
94
} from "./commands/GetCalculatedAttributeForProfileCommand" ;
85
95
import { GetDomainCommand , GetDomainCommandInput , GetDomainCommandOutput } from "./commands/GetDomainCommand" ;
96
+ import {
97
+ GetEventStreamCommand ,
98
+ GetEventStreamCommandInput ,
99
+ GetEventStreamCommandOutput ,
100
+ } from "./commands/GetEventStreamCommand" ;
86
101
import {
87
102
GetIdentityResolutionJobCommand ,
88
103
GetIdentityResolutionJobCommandInput ,
@@ -126,6 +141,11 @@ import {
126
141
ListCalculatedAttributesForProfileCommandOutput ,
127
142
} from "./commands/ListCalculatedAttributesForProfileCommand" ;
128
143
import { ListDomainsCommand , ListDomainsCommandInput , ListDomainsCommandOutput } from "./commands/ListDomainsCommand" ;
144
+ import {
145
+ ListEventStreamsCommand ,
146
+ ListEventStreamsCommandInput ,
147
+ ListEventStreamsCommandOutput ,
148
+ } from "./commands/ListEventStreamsCommand" ;
129
149
import {
130
150
ListIdentityResolutionJobsCommand ,
131
151
ListIdentityResolutionJobsCommandInput ,
@@ -213,10 +233,12 @@ const commands = {
213
233
AddProfileKeyCommand,
214
234
CreateCalculatedAttributeDefinitionCommand,
215
235
CreateDomainCommand,
236
+ CreateEventStreamCommand,
216
237
CreateIntegrationWorkflowCommand,
217
238
CreateProfileCommand,
218
239
DeleteCalculatedAttributeDefinitionCommand,
219
240
DeleteDomainCommand,
241
+ DeleteEventStreamCommand,
220
242
DeleteIntegrationCommand,
221
243
DeleteProfileCommand,
222
244
DeleteProfileKeyCommand,
@@ -227,6 +249,7 @@ const commands = {
227
249
GetCalculatedAttributeDefinitionCommand,
228
250
GetCalculatedAttributeForProfileCommand,
229
251
GetDomainCommand,
252
+ GetEventStreamCommand,
230
253
GetIdentityResolutionJobCommand,
231
254
GetIntegrationCommand,
232
255
GetMatchesCommand,
@@ -238,6 +261,7 @@ const commands = {
238
261
ListCalculatedAttributeDefinitionsCommand,
239
262
ListCalculatedAttributesForProfileCommand,
240
263
ListDomainsCommand,
264
+ ListEventStreamsCommand,
241
265
ListIdentityResolutionJobsCommand,
242
266
ListIntegrationsCommand,
243
267
ListProfileObjectsCommand,
@@ -297,6 +321,23 @@ export interface CustomerProfiles {
297
321
cb : ( err : any , data ?: CreateDomainCommandOutput ) => void
298
322
) : void ;
299
323
324
+ /**
325
+ * @see {@link CreateEventStreamCommand }
326
+ */
327
+ createEventStream (
328
+ args : CreateEventStreamCommandInput ,
329
+ options ?: __HttpHandlerOptions
330
+ ) : Promise < CreateEventStreamCommandOutput > ;
331
+ createEventStream (
332
+ args : CreateEventStreamCommandInput ,
333
+ cb : ( err : any , data ?: CreateEventStreamCommandOutput ) => void
334
+ ) : void ;
335
+ createEventStream (
336
+ args : CreateEventStreamCommandInput ,
337
+ options : __HttpHandlerOptions ,
338
+ cb : ( err : any , data ?: CreateEventStreamCommandOutput ) => void
339
+ ) : void ;
340
+
300
341
/**
301
342
* @see {@link CreateIntegrationWorkflowCommand }
302
343
*/
@@ -353,6 +394,23 @@ export interface CustomerProfiles {
353
394
cb : ( err : any , data ?: DeleteDomainCommandOutput ) => void
354
395
) : void ;
355
396
397
+ /**
398
+ * @see {@link DeleteEventStreamCommand }
399
+ */
400
+ deleteEventStream (
401
+ args : DeleteEventStreamCommandInput ,
402
+ options ?: __HttpHandlerOptions
403
+ ) : Promise < DeleteEventStreamCommandOutput > ;
404
+ deleteEventStream (
405
+ args : DeleteEventStreamCommandInput ,
406
+ cb : ( err : any , data ?: DeleteEventStreamCommandOutput ) => void
407
+ ) : void ;
408
+ deleteEventStream (
409
+ args : DeleteEventStreamCommandInput ,
410
+ options : __HttpHandlerOptions ,
411
+ cb : ( err : any , data ?: DeleteEventStreamCommandOutput ) => void
412
+ ) : void ;
413
+
356
414
/**
357
415
* @see {@link DeleteIntegrationCommand }
358
416
*/
@@ -508,6 +566,20 @@ export interface CustomerProfiles {
508
566
cb : ( err : any , data ?: GetDomainCommandOutput ) => void
509
567
) : void ;
510
568
569
+ /**
570
+ * @see {@link GetEventStreamCommand }
571
+ */
572
+ getEventStream (
573
+ args : GetEventStreamCommandInput ,
574
+ options ?: __HttpHandlerOptions
575
+ ) : Promise < GetEventStreamCommandOutput > ;
576
+ getEventStream ( args : GetEventStreamCommandInput , cb : ( err : any , data ?: GetEventStreamCommandOutput ) => void ) : void ;
577
+ getEventStream (
578
+ args : GetEventStreamCommandInput ,
579
+ options : __HttpHandlerOptions ,
580
+ cb : ( err : any , data ?: GetEventStreamCommandOutput ) => void
581
+ ) : void ;
582
+
511
583
/**
512
584
* @see {@link GetIdentityResolutionJobCommand }
513
585
*/
@@ -674,6 +746,23 @@ export interface CustomerProfiles {
674
746
cb : ( err : any , data ?: ListDomainsCommandOutput ) => void
675
747
) : void ;
676
748
749
+ /**
750
+ * @see {@link ListEventStreamsCommand }
751
+ */
752
+ listEventStreams (
753
+ args : ListEventStreamsCommandInput ,
754
+ options ?: __HttpHandlerOptions
755
+ ) : Promise < ListEventStreamsCommandOutput > ;
756
+ listEventStreams (
757
+ args : ListEventStreamsCommandInput ,
758
+ cb : ( err : any , data ?: ListEventStreamsCommandOutput ) => void
759
+ ) : void ;
760
+ listEventStreams (
761
+ args : ListEventStreamsCommandInput ,
762
+ options : __HttpHandlerOptions ,
763
+ cb : ( err : any , data ?: ListEventStreamsCommandOutput ) => void
764
+ ) : void ;
765
+
677
766
/**
678
767
* @see {@link ListIdentityResolutionJobsCommand }
679
768
*/
0 commit comments