Skip to content

Commit 5263022

Browse files
author
awstools
committed
feat(client-customer-profiles): This release introduces event stream related APIs.
1 parent 83514db commit 5263022

15 files changed

+2105
-0
lines changed

clients/client-customer-profiles/README.md

+32
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,14 @@ CreateDomain
232232

233233
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/createdomaincommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/createdomaincommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/createdomaincommandoutput.html)
234234

235+
</details>
236+
<details>
237+
<summary>
238+
CreateEventStream
239+
</summary>
240+
241+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/createeventstreamcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/createeventstreamcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/createeventstreamcommandoutput.html)
242+
235243
</details>
236244
<details>
237245
<summary>
@@ -264,6 +272,14 @@ DeleteDomain
264272

265273
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/deletedomaincommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/deletedomaincommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/deletedomaincommandoutput.html)
266274

275+
</details>
276+
<details>
277+
<summary>
278+
DeleteEventStream
279+
</summary>
280+
281+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/deleteeventstreamcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/deleteeventstreamcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/deleteeventstreamcommandoutput.html)
282+
267283
</details>
268284
<details>
269285
<summary>
@@ -344,6 +360,14 @@ GetDomain
344360

345361
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/getdomaincommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/getdomaincommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/getdomaincommandoutput.html)
346362

363+
</details>
364+
<details>
365+
<summary>
366+
GetEventStream
367+
</summary>
368+
369+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/geteventstreamcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/geteventstreamcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/geteventstreamcommandoutput.html)
370+
347371
</details>
348372
<details>
349373
<summary>
@@ -432,6 +456,14 @@ ListDomains
432456

433457
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/listdomainscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/listdomainscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/listdomainscommandoutput.html)
434458

459+
</details>
460+
<details>
461+
<summary>
462+
ListEventStreams
463+
</summary>
464+
465+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/classes/listeventstreamscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/listeventstreamscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-customer-profiles/interfaces/listeventstreamscommandoutput.html)
466+
435467
</details>
436468
<details>
437469
<summary>

clients/client-customer-profiles/src/CustomerProfiles.ts

+89
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ import {
1717
CreateDomainCommandInput,
1818
CreateDomainCommandOutput,
1919
} from "./commands/CreateDomainCommand";
20+
import {
21+
CreateEventStreamCommand,
22+
CreateEventStreamCommandInput,
23+
CreateEventStreamCommandOutput,
24+
} from "./commands/CreateEventStreamCommand";
2025
import {
2126
CreateIntegrationWorkflowCommand,
2227
CreateIntegrationWorkflowCommandInput,
@@ -37,6 +42,11 @@ import {
3742
DeleteDomainCommandInput,
3843
DeleteDomainCommandOutput,
3944
} from "./commands/DeleteDomainCommand";
45+
import {
46+
DeleteEventStreamCommand,
47+
DeleteEventStreamCommandInput,
48+
DeleteEventStreamCommandOutput,
49+
} from "./commands/DeleteEventStreamCommand";
4050
import {
4151
DeleteIntegrationCommand,
4252
DeleteIntegrationCommandInput,
@@ -83,6 +93,11 @@ import {
8393
GetCalculatedAttributeForProfileCommandOutput,
8494
} from "./commands/GetCalculatedAttributeForProfileCommand";
8595
import { GetDomainCommand, GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
96+
import {
97+
GetEventStreamCommand,
98+
GetEventStreamCommandInput,
99+
GetEventStreamCommandOutput,
100+
} from "./commands/GetEventStreamCommand";
86101
import {
87102
GetIdentityResolutionJobCommand,
88103
GetIdentityResolutionJobCommandInput,
@@ -126,6 +141,11 @@ import {
126141
ListCalculatedAttributesForProfileCommandOutput,
127142
} from "./commands/ListCalculatedAttributesForProfileCommand";
128143
import { ListDomainsCommand, ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
144+
import {
145+
ListEventStreamsCommand,
146+
ListEventStreamsCommandInput,
147+
ListEventStreamsCommandOutput,
148+
} from "./commands/ListEventStreamsCommand";
129149
import {
130150
ListIdentityResolutionJobsCommand,
131151
ListIdentityResolutionJobsCommandInput,
@@ -213,10 +233,12 @@ const commands = {
213233
AddProfileKeyCommand,
214234
CreateCalculatedAttributeDefinitionCommand,
215235
CreateDomainCommand,
236+
CreateEventStreamCommand,
216237
CreateIntegrationWorkflowCommand,
217238
CreateProfileCommand,
218239
DeleteCalculatedAttributeDefinitionCommand,
219240
DeleteDomainCommand,
241+
DeleteEventStreamCommand,
220242
DeleteIntegrationCommand,
221243
DeleteProfileCommand,
222244
DeleteProfileKeyCommand,
@@ -227,6 +249,7 @@ const commands = {
227249
GetCalculatedAttributeDefinitionCommand,
228250
GetCalculatedAttributeForProfileCommand,
229251
GetDomainCommand,
252+
GetEventStreamCommand,
230253
GetIdentityResolutionJobCommand,
231254
GetIntegrationCommand,
232255
GetMatchesCommand,
@@ -238,6 +261,7 @@ const commands = {
238261
ListCalculatedAttributeDefinitionsCommand,
239262
ListCalculatedAttributesForProfileCommand,
240263
ListDomainsCommand,
264+
ListEventStreamsCommand,
241265
ListIdentityResolutionJobsCommand,
242266
ListIntegrationsCommand,
243267
ListProfileObjectsCommand,
@@ -297,6 +321,23 @@ export interface CustomerProfiles {
297321
cb: (err: any, data?: CreateDomainCommandOutput) => void
298322
): void;
299323

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+
300341
/**
301342
* @see {@link CreateIntegrationWorkflowCommand}
302343
*/
@@ -353,6 +394,23 @@ export interface CustomerProfiles {
353394
cb: (err: any, data?: DeleteDomainCommandOutput) => void
354395
): void;
355396

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+
356414
/**
357415
* @see {@link DeleteIntegrationCommand}
358416
*/
@@ -508,6 +566,20 @@ export interface CustomerProfiles {
508566
cb: (err: any, data?: GetDomainCommandOutput) => void
509567
): void;
510568

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+
511583
/**
512584
* @see {@link GetIdentityResolutionJobCommand}
513585
*/
@@ -674,6 +746,23 @@ export interface CustomerProfiles {
674746
cb: (err: any, data?: ListDomainsCommandOutput) => void
675747
): void;
676748

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+
677766
/**
678767
* @see {@link ListIdentityResolutionJobsCommand}
679768
*/

clients/client-customer-profiles/src/CustomerProfilesClient.ts

+12
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ import {
5757
CreateCalculatedAttributeDefinitionCommandOutput,
5858
} from "./commands/CreateCalculatedAttributeDefinitionCommand";
5959
import { CreateDomainCommandInput, CreateDomainCommandOutput } from "./commands/CreateDomainCommand";
60+
import { CreateEventStreamCommandInput, CreateEventStreamCommandOutput } from "./commands/CreateEventStreamCommand";
6061
import {
6162
CreateIntegrationWorkflowCommandInput,
6263
CreateIntegrationWorkflowCommandOutput,
@@ -67,6 +68,7 @@ import {
6768
DeleteCalculatedAttributeDefinitionCommandOutput,
6869
} from "./commands/DeleteCalculatedAttributeDefinitionCommand";
6970
import { DeleteDomainCommandInput, DeleteDomainCommandOutput } from "./commands/DeleteDomainCommand";
71+
import { DeleteEventStreamCommandInput, DeleteEventStreamCommandOutput } from "./commands/DeleteEventStreamCommand";
7072
import { DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput } from "./commands/DeleteIntegrationCommand";
7173
import { DeleteProfileCommandInput, DeleteProfileCommandOutput } from "./commands/DeleteProfileCommand";
7274
import { DeleteProfileKeyCommandInput, DeleteProfileKeyCommandOutput } from "./commands/DeleteProfileKeyCommand";
@@ -92,6 +94,7 @@ import {
9294
GetCalculatedAttributeForProfileCommandOutput,
9395
} from "./commands/GetCalculatedAttributeForProfileCommand";
9496
import { GetDomainCommandInput, GetDomainCommandOutput } from "./commands/GetDomainCommand";
97+
import { GetEventStreamCommandInput, GetEventStreamCommandOutput } from "./commands/GetEventStreamCommand";
9598
import {
9699
GetIdentityResolutionJobCommandInput,
97100
GetIdentityResolutionJobCommandOutput,
@@ -121,6 +124,7 @@ import {
121124
ListCalculatedAttributesForProfileCommandOutput,
122125
} from "./commands/ListCalculatedAttributesForProfileCommand";
123126
import { ListDomainsCommandInput, ListDomainsCommandOutput } from "./commands/ListDomainsCommand";
127+
import { ListEventStreamsCommandInput, ListEventStreamsCommandOutput } from "./commands/ListEventStreamsCommand";
124128
import {
125129
ListIdentityResolutionJobsCommandInput,
126130
ListIdentityResolutionJobsCommandOutput,
@@ -173,10 +177,12 @@ export type ServiceInputTypes =
173177
| AddProfileKeyCommandInput
174178
| CreateCalculatedAttributeDefinitionCommandInput
175179
| CreateDomainCommandInput
180+
| CreateEventStreamCommandInput
176181
| CreateIntegrationWorkflowCommandInput
177182
| CreateProfileCommandInput
178183
| DeleteCalculatedAttributeDefinitionCommandInput
179184
| DeleteDomainCommandInput
185+
| DeleteEventStreamCommandInput
180186
| DeleteIntegrationCommandInput
181187
| DeleteProfileCommandInput
182188
| DeleteProfileKeyCommandInput
@@ -187,6 +193,7 @@ export type ServiceInputTypes =
187193
| GetCalculatedAttributeDefinitionCommandInput
188194
| GetCalculatedAttributeForProfileCommandInput
189195
| GetDomainCommandInput
196+
| GetEventStreamCommandInput
190197
| GetIdentityResolutionJobCommandInput
191198
| GetIntegrationCommandInput
192199
| GetMatchesCommandInput
@@ -198,6 +205,7 @@ export type ServiceInputTypes =
198205
| ListCalculatedAttributeDefinitionsCommandInput
199206
| ListCalculatedAttributesForProfileCommandInput
200207
| ListDomainsCommandInput
208+
| ListEventStreamsCommandInput
201209
| ListIdentityResolutionJobsCommandInput
202210
| ListIntegrationsCommandInput
203211
| ListProfileObjectTypeTemplatesCommandInput
@@ -223,10 +231,12 @@ export type ServiceOutputTypes =
223231
| AddProfileKeyCommandOutput
224232
| CreateCalculatedAttributeDefinitionCommandOutput
225233
| CreateDomainCommandOutput
234+
| CreateEventStreamCommandOutput
226235
| CreateIntegrationWorkflowCommandOutput
227236
| CreateProfileCommandOutput
228237
| DeleteCalculatedAttributeDefinitionCommandOutput
229238
| DeleteDomainCommandOutput
239+
| DeleteEventStreamCommandOutput
230240
| DeleteIntegrationCommandOutput
231241
| DeleteProfileCommandOutput
232242
| DeleteProfileKeyCommandOutput
@@ -237,6 +247,7 @@ export type ServiceOutputTypes =
237247
| GetCalculatedAttributeDefinitionCommandOutput
238248
| GetCalculatedAttributeForProfileCommandOutput
239249
| GetDomainCommandOutput
250+
| GetEventStreamCommandOutput
240251
| GetIdentityResolutionJobCommandOutput
241252
| GetIntegrationCommandOutput
242253
| GetMatchesCommandOutput
@@ -248,6 +259,7 @@ export type ServiceOutputTypes =
248259
| ListCalculatedAttributeDefinitionsCommandOutput
249260
| ListCalculatedAttributesForProfileCommandOutput
250261
| ListDomainsCommandOutput
262+
| ListEventStreamsCommandOutput
251263
| ListIdentityResolutionJobsCommandOutput
252264
| ListIntegrationsCommandOutput
253265
| ListProfileObjectTypeTemplatesCommandOutput

0 commit comments

Comments
 (0)