@aws-sdk/client-customer-profiles 3.50.0 → 3.51.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 (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/CustomerProfiles.d.ts +170 -0
  3. package/dist-types/ts3.4/CustomerProfilesClient.d.ts +106 -0
  4. package/dist-types/ts3.4/commands/AddProfileKeyCommand.d.ts +17 -0
  5. package/dist-types/ts3.4/commands/CreateDomainCommand.d.ts +17 -0
  6. package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +17 -0
  7. package/dist-types/ts3.4/commands/DeleteDomainCommand.d.ts +17 -0
  8. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +17 -0
  9. package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +17 -0
  10. package/dist-types/ts3.4/commands/DeleteProfileKeyCommand.d.ts +17 -0
  11. package/dist-types/ts3.4/commands/DeleteProfileObjectCommand.d.ts +17 -0
  12. package/dist-types/ts3.4/commands/DeleteProfileObjectTypeCommand.d.ts +17 -0
  13. package/dist-types/ts3.4/commands/GetAutoMergingPreviewCommand.d.ts +17 -0
  14. package/dist-types/ts3.4/commands/GetDomainCommand.d.ts +17 -0
  15. package/dist-types/ts3.4/commands/GetIdentityResolutionJobCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/GetIntegrationCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetMatchesCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/GetProfileObjectTypeCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/GetProfileObjectTypeTemplateCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/ListAccountIntegrationsCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/ListDomainsCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/ListIdentityResolutionJobsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/ListIntegrationsCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/ListProfileObjectTypeTemplatesCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListProfileObjectTypesCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListProfileObjectsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/MergeProfilesCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/PutIntegrationCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/PutProfileObjectCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/PutProfileObjectTypeCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/SearchProfilesCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateDomainCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +33 -0
  38. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  39. package/dist-types/ts3.4/index.d.ts +4 -0
  40. package/dist-types/ts3.4/models/index.d.ts +1 -0
  41. package/dist-types/ts3.4/models/models_0.d.ts +1845 -0
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +101 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  47. package/package.json +8 -8
@@ -0,0 +1,1845 @@
1
+ import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
2
+
3
+ export interface AccessDeniedException extends __SmithyException, $MetadataBearer {
4
+ name: "AccessDeniedException";
5
+ $fault: "client";
6
+ Message?: string;
7
+ }
8
+ export interface AddProfileKeyRequest {
9
+
10
+ ProfileId: string | undefined;
11
+
12
+ KeyName: string | undefined;
13
+
14
+ Values: string[] | undefined;
15
+
16
+ DomainName: string | undefined;
17
+ }
18
+ export declare namespace AddProfileKeyRequest {
19
+
20
+ const filterSensitiveLog: (obj: AddProfileKeyRequest) => any;
21
+ }
22
+ export interface AddProfileKeyResponse {
23
+
24
+ KeyName?: string;
25
+
26
+ Values?: string[];
27
+ }
28
+ export declare namespace AddProfileKeyResponse {
29
+
30
+ const filterSensitiveLog: (obj: AddProfileKeyResponse) => any;
31
+ }
32
+
33
+ export interface BadRequestException extends __SmithyException, $MetadataBearer {
34
+ name: "BadRequestException";
35
+ $fault: "client";
36
+ Message?: string;
37
+ }
38
+
39
+ export interface InternalServerException extends __SmithyException, $MetadataBearer {
40
+ name: "InternalServerException";
41
+ $fault: "server";
42
+ Message?: string;
43
+ }
44
+
45
+ export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
46
+ name: "ResourceNotFoundException";
47
+ $fault: "client";
48
+ Message?: string;
49
+ }
50
+
51
+ export interface ThrottlingException extends __SmithyException, $MetadataBearer {
52
+ name: "ThrottlingException";
53
+ $fault: "client";
54
+ Message?: string;
55
+ }
56
+
57
+ export interface Address {
58
+
59
+ Address1?: string;
60
+
61
+ Address2?: string;
62
+
63
+ Address3?: string;
64
+
65
+ Address4?: string;
66
+
67
+ City?: string;
68
+
69
+ County?: string;
70
+
71
+ State?: string;
72
+
73
+ Province?: string;
74
+
75
+ Country?: string;
76
+
77
+ PostalCode?: string;
78
+ }
79
+ export declare namespace Address {
80
+
81
+ const filterSensitiveLog: (obj: Address) => any;
82
+ }
83
+ export declare enum ConflictResolvingModel {
84
+ RECENCY = "RECENCY",
85
+ SOURCE = "SOURCE"
86
+ }
87
+
88
+ export interface ConflictResolution {
89
+
90
+ ConflictResolvingModel: ConflictResolvingModel | string | undefined;
91
+
92
+ SourceName?: string;
93
+ }
94
+ export declare namespace ConflictResolution {
95
+
96
+ const filterSensitiveLog: (obj: ConflictResolution) => any;
97
+ }
98
+
99
+ export interface Consolidation {
100
+
101
+ MatchingAttributesList: string[][] | undefined;
102
+ }
103
+ export declare namespace Consolidation {
104
+
105
+ const filterSensitiveLog: (obj: Consolidation) => any;
106
+ }
107
+
108
+ export interface AutoMerging {
109
+
110
+ Enabled: boolean | undefined;
111
+
112
+ Consolidation?: Consolidation;
113
+
114
+ ConflictResolution?: ConflictResolution;
115
+ }
116
+ export declare namespace AutoMerging {
117
+
118
+ const filterSensitiveLog: (obj: AutoMerging) => any;
119
+ }
120
+ export declare enum MarketoConnectorOperator {
121
+ ADDITION = "ADDITION",
122
+ BETWEEN = "BETWEEN",
123
+ DIVISION = "DIVISION",
124
+ GREATER_THAN = "GREATER_THAN",
125
+ LESS_THAN = "LESS_THAN",
126
+ MASK_ALL = "MASK_ALL",
127
+ MASK_FIRST_N = "MASK_FIRST_N",
128
+ MASK_LAST_N = "MASK_LAST_N",
129
+ MULTIPLICATION = "MULTIPLICATION",
130
+ NO_OP = "NO_OP",
131
+ PROJECTION = "PROJECTION",
132
+ SUBTRACTION = "SUBTRACTION",
133
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
134
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
135
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
136
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
137
+ }
138
+ export declare enum S3ConnectorOperator {
139
+ ADDITION = "ADDITION",
140
+ BETWEEN = "BETWEEN",
141
+ DIVISION = "DIVISION",
142
+ EQUAL_TO = "EQUAL_TO",
143
+ GREATER_THAN = "GREATER_THAN",
144
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
145
+ LESS_THAN = "LESS_THAN",
146
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
147
+ MASK_ALL = "MASK_ALL",
148
+ MASK_FIRST_N = "MASK_FIRST_N",
149
+ MASK_LAST_N = "MASK_LAST_N",
150
+ MULTIPLICATION = "MULTIPLICATION",
151
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
152
+ NO_OP = "NO_OP",
153
+ PROJECTION = "PROJECTION",
154
+ SUBTRACTION = "SUBTRACTION",
155
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
156
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
157
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
158
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
159
+ }
160
+ export declare enum SalesforceConnectorOperator {
161
+ ADDITION = "ADDITION",
162
+ BETWEEN = "BETWEEN",
163
+ CONTAINS = "CONTAINS",
164
+ DIVISION = "DIVISION",
165
+ EQUAL_TO = "EQUAL_TO",
166
+ GREATER_THAN = "GREATER_THAN",
167
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
168
+ LESS_THAN = "LESS_THAN",
169
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
170
+ MASK_ALL = "MASK_ALL",
171
+ MASK_FIRST_N = "MASK_FIRST_N",
172
+ MASK_LAST_N = "MASK_LAST_N",
173
+ MULTIPLICATION = "MULTIPLICATION",
174
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
175
+ NO_OP = "NO_OP",
176
+ PROJECTION = "PROJECTION",
177
+ SUBTRACTION = "SUBTRACTION",
178
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
179
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
180
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
181
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
182
+ }
183
+ export declare enum ServiceNowConnectorOperator {
184
+ ADDITION = "ADDITION",
185
+ BETWEEN = "BETWEEN",
186
+ CONTAINS = "CONTAINS",
187
+ DIVISION = "DIVISION",
188
+ EQUAL_TO = "EQUAL_TO",
189
+ GREATER_THAN = "GREATER_THAN",
190
+ GREATER_THAN_OR_EQUAL_TO = "GREATER_THAN_OR_EQUAL_TO",
191
+ LESS_THAN = "LESS_THAN",
192
+ LESS_THAN_OR_EQUAL_TO = "LESS_THAN_OR_EQUAL_TO",
193
+ MASK_ALL = "MASK_ALL",
194
+ MASK_FIRST_N = "MASK_FIRST_N",
195
+ MASK_LAST_N = "MASK_LAST_N",
196
+ MULTIPLICATION = "MULTIPLICATION",
197
+ NOT_EQUAL_TO = "NOT_EQUAL_TO",
198
+ NO_OP = "NO_OP",
199
+ PROJECTION = "PROJECTION",
200
+ SUBTRACTION = "SUBTRACTION",
201
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
202
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
203
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
204
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
205
+ }
206
+ export declare enum ZendeskConnectorOperator {
207
+ ADDITION = "ADDITION",
208
+ DIVISION = "DIVISION",
209
+ GREATER_THAN = "GREATER_THAN",
210
+ MASK_ALL = "MASK_ALL",
211
+ MASK_FIRST_N = "MASK_FIRST_N",
212
+ MASK_LAST_N = "MASK_LAST_N",
213
+ MULTIPLICATION = "MULTIPLICATION",
214
+ NO_OP = "NO_OP",
215
+ PROJECTION = "PROJECTION",
216
+ SUBTRACTION = "SUBTRACTION",
217
+ VALIDATE_NON_NEGATIVE = "VALIDATE_NON_NEGATIVE",
218
+ VALIDATE_NON_NULL = "VALIDATE_NON_NULL",
219
+ VALIDATE_NON_ZERO = "VALIDATE_NON_ZERO",
220
+ VALIDATE_NUMERIC = "VALIDATE_NUMERIC"
221
+ }
222
+
223
+ export interface ConnectorOperator {
224
+
225
+ Marketo?: MarketoConnectorOperator | string;
226
+
227
+ S3?: S3ConnectorOperator | string;
228
+
229
+ Salesforce?: SalesforceConnectorOperator | string;
230
+
231
+ ServiceNow?: ServiceNowConnectorOperator | string;
232
+
233
+ Zendesk?: ZendeskConnectorOperator | string;
234
+ }
235
+ export declare namespace ConnectorOperator {
236
+
237
+ const filterSensitiveLog: (obj: ConnectorOperator) => any;
238
+ }
239
+
240
+ export interface S3ExportingConfig {
241
+
242
+ S3BucketName: string | undefined;
243
+
244
+ S3KeyName?: string;
245
+ }
246
+ export declare namespace S3ExportingConfig {
247
+
248
+ const filterSensitiveLog: (obj: S3ExportingConfig) => any;
249
+ }
250
+
251
+ export interface ExportingConfig {
252
+
253
+ S3Exporting?: S3ExportingConfig;
254
+ }
255
+ export declare namespace ExportingConfig {
256
+
257
+ const filterSensitiveLog: (obj: ExportingConfig) => any;
258
+ }
259
+ export declare enum JobScheduleDayOfTheWeek {
260
+ FRIDAY = "FRIDAY",
261
+ MONDAY = "MONDAY",
262
+ SATURDAY = "SATURDAY",
263
+ SUNDAY = "SUNDAY",
264
+ THURSDAY = "THURSDAY",
265
+ TUESDAY = "TUESDAY",
266
+ WEDNESDAY = "WEDNESDAY"
267
+ }
268
+
269
+ export interface JobSchedule {
270
+
271
+ DayOfTheWeek: JobScheduleDayOfTheWeek | string | undefined;
272
+
273
+ Time: string | undefined;
274
+ }
275
+ export declare namespace JobSchedule {
276
+
277
+ const filterSensitiveLog: (obj: JobSchedule) => any;
278
+ }
279
+
280
+ export interface MatchingRequest {
281
+
282
+ Enabled: boolean | undefined;
283
+
284
+ JobSchedule?: JobSchedule;
285
+
286
+ AutoMerging?: AutoMerging;
287
+
288
+ ExportingConfig?: ExportingConfig;
289
+ }
290
+ export declare namespace MatchingRequest {
291
+
292
+ const filterSensitiveLog: (obj: MatchingRequest) => any;
293
+ }
294
+ export interface CreateDomainRequest {
295
+
296
+ DomainName: string | undefined;
297
+
298
+ DefaultExpirationDays: number | undefined;
299
+
300
+ DefaultEncryptionKey?: string;
301
+
302
+ DeadLetterQueueUrl?: string;
303
+
304
+ Matching?: MatchingRequest;
305
+
306
+ Tags?: {
307
+ [key: string]: string;
308
+ };
309
+ }
310
+ export declare namespace CreateDomainRequest {
311
+
312
+ const filterSensitiveLog: (obj: CreateDomainRequest) => any;
313
+ }
314
+
315
+ export interface MatchingResponse {
316
+
317
+ Enabled?: boolean;
318
+
319
+ JobSchedule?: JobSchedule;
320
+
321
+ AutoMerging?: AutoMerging;
322
+
323
+ ExportingConfig?: ExportingConfig;
324
+ }
325
+ export declare namespace MatchingResponse {
326
+
327
+ const filterSensitiveLog: (obj: MatchingResponse) => any;
328
+ }
329
+ export interface CreateDomainResponse {
330
+
331
+ DomainName: string | undefined;
332
+
333
+ DefaultExpirationDays: number | undefined;
334
+
335
+ DefaultEncryptionKey?: string;
336
+
337
+ DeadLetterQueueUrl?: string;
338
+
339
+ Matching?: MatchingResponse;
340
+
341
+ CreatedAt: Date | undefined;
342
+
343
+ LastUpdatedAt: Date | undefined;
344
+
345
+ Tags?: {
346
+ [key: string]: string;
347
+ };
348
+ }
349
+ export declare namespace CreateDomainResponse {
350
+
351
+ const filterSensitiveLog: (obj: CreateDomainResponse) => any;
352
+ }
353
+ export declare enum Gender {
354
+ FEMALE = "FEMALE",
355
+ MALE = "MALE",
356
+ UNSPECIFIED = "UNSPECIFIED"
357
+ }
358
+ export declare enum PartyType {
359
+ BUSINESS = "BUSINESS",
360
+ INDIVIDUAL = "INDIVIDUAL",
361
+ OTHER = "OTHER"
362
+ }
363
+ export interface CreateProfileRequest {
364
+
365
+ DomainName: string | undefined;
366
+
367
+ AccountNumber?: string;
368
+
369
+ AdditionalInformation?: string;
370
+
371
+ PartyType?: PartyType | string;
372
+
373
+ BusinessName?: string;
374
+
375
+ FirstName?: string;
376
+
377
+ MiddleName?: string;
378
+
379
+ LastName?: string;
380
+
381
+ BirthDate?: string;
382
+
383
+ Gender?: Gender | string;
384
+
385
+ PhoneNumber?: string;
386
+
387
+ MobilePhoneNumber?: string;
388
+
389
+ HomePhoneNumber?: string;
390
+
391
+ BusinessPhoneNumber?: string;
392
+
393
+ EmailAddress?: string;
394
+
395
+ PersonalEmailAddress?: string;
396
+
397
+ BusinessEmailAddress?: string;
398
+
399
+ Address?: Address;
400
+
401
+ ShippingAddress?: Address;
402
+
403
+ MailingAddress?: Address;
404
+
405
+ BillingAddress?: Address;
406
+
407
+ Attributes?: {
408
+ [key: string]: string;
409
+ };
410
+ }
411
+ export declare namespace CreateProfileRequest {
412
+
413
+ const filterSensitiveLog: (obj: CreateProfileRequest) => any;
414
+ }
415
+ export interface CreateProfileResponse {
416
+
417
+ ProfileId: string | undefined;
418
+ }
419
+ export declare namespace CreateProfileResponse {
420
+
421
+ const filterSensitiveLog: (obj: CreateProfileResponse) => any;
422
+ }
423
+ export interface DeleteDomainRequest {
424
+
425
+ DomainName: string | undefined;
426
+ }
427
+ export declare namespace DeleteDomainRequest {
428
+
429
+ const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
430
+ }
431
+ export interface DeleteDomainResponse {
432
+
433
+ Message: string | undefined;
434
+ }
435
+ export declare namespace DeleteDomainResponse {
436
+
437
+ const filterSensitiveLog: (obj: DeleteDomainResponse) => any;
438
+ }
439
+ export interface DeleteIntegrationRequest {
440
+
441
+ DomainName: string | undefined;
442
+
443
+ Uri: string | undefined;
444
+ }
445
+ export declare namespace DeleteIntegrationRequest {
446
+
447
+ const filterSensitiveLog: (obj: DeleteIntegrationRequest) => any;
448
+ }
449
+ export interface DeleteIntegrationResponse {
450
+
451
+ Message: string | undefined;
452
+ }
453
+ export declare namespace DeleteIntegrationResponse {
454
+
455
+ const filterSensitiveLog: (obj: DeleteIntegrationResponse) => any;
456
+ }
457
+ export interface DeleteProfileRequest {
458
+
459
+ ProfileId: string | undefined;
460
+
461
+ DomainName: string | undefined;
462
+ }
463
+ export declare namespace DeleteProfileRequest {
464
+
465
+ const filterSensitiveLog: (obj: DeleteProfileRequest) => any;
466
+ }
467
+ export interface DeleteProfileResponse {
468
+
469
+ Message?: string;
470
+ }
471
+ export declare namespace DeleteProfileResponse {
472
+
473
+ const filterSensitiveLog: (obj: DeleteProfileResponse) => any;
474
+ }
475
+ export interface DeleteProfileKeyRequest {
476
+
477
+ ProfileId: string | undefined;
478
+
479
+ KeyName: string | undefined;
480
+
481
+ Values: string[] | undefined;
482
+
483
+ DomainName: string | undefined;
484
+ }
485
+ export declare namespace DeleteProfileKeyRequest {
486
+
487
+ const filterSensitiveLog: (obj: DeleteProfileKeyRequest) => any;
488
+ }
489
+ export interface DeleteProfileKeyResponse {
490
+
491
+ Message?: string;
492
+ }
493
+ export declare namespace DeleteProfileKeyResponse {
494
+
495
+ const filterSensitiveLog: (obj: DeleteProfileKeyResponse) => any;
496
+ }
497
+ export interface DeleteProfileObjectRequest {
498
+
499
+ ProfileId: string | undefined;
500
+
501
+ ProfileObjectUniqueKey: string | undefined;
502
+
503
+ ObjectTypeName: string | undefined;
504
+
505
+ DomainName: string | undefined;
506
+ }
507
+ export declare namespace DeleteProfileObjectRequest {
508
+
509
+ const filterSensitiveLog: (obj: DeleteProfileObjectRequest) => any;
510
+ }
511
+ export interface DeleteProfileObjectResponse {
512
+
513
+ Message?: string;
514
+ }
515
+ export declare namespace DeleteProfileObjectResponse {
516
+
517
+ const filterSensitiveLog: (obj: DeleteProfileObjectResponse) => any;
518
+ }
519
+ export interface DeleteProfileObjectTypeRequest {
520
+
521
+ DomainName: string | undefined;
522
+
523
+ ObjectTypeName: string | undefined;
524
+ }
525
+ export declare namespace DeleteProfileObjectTypeRequest {
526
+
527
+ const filterSensitiveLog: (obj: DeleteProfileObjectTypeRequest) => any;
528
+ }
529
+ export interface DeleteProfileObjectTypeResponse {
530
+
531
+ Message: string | undefined;
532
+ }
533
+ export declare namespace DeleteProfileObjectTypeResponse {
534
+
535
+ const filterSensitiveLog: (obj: DeleteProfileObjectTypeResponse) => any;
536
+ }
537
+ export interface GetAutoMergingPreviewRequest {
538
+
539
+ DomainName: string | undefined;
540
+
541
+ Consolidation: Consolidation | undefined;
542
+
543
+ ConflictResolution: ConflictResolution | undefined;
544
+ }
545
+ export declare namespace GetAutoMergingPreviewRequest {
546
+
547
+ const filterSensitiveLog: (obj: GetAutoMergingPreviewRequest) => any;
548
+ }
549
+ export interface GetAutoMergingPreviewResponse {
550
+
551
+ DomainName: string | undefined;
552
+
553
+ NumberOfMatchesInSample?: number;
554
+
555
+ NumberOfProfilesInSample?: number;
556
+
557
+ NumberOfProfilesWillBeMerged?: number;
558
+ }
559
+ export declare namespace GetAutoMergingPreviewResponse {
560
+
561
+ const filterSensitiveLog: (obj: GetAutoMergingPreviewResponse) => any;
562
+ }
563
+ export interface GetDomainRequest {
564
+
565
+ DomainName: string | undefined;
566
+ }
567
+ export declare namespace GetDomainRequest {
568
+
569
+ const filterSensitiveLog: (obj: GetDomainRequest) => any;
570
+ }
571
+
572
+ export interface DomainStats {
573
+
574
+ ProfileCount?: number;
575
+
576
+ MeteringProfileCount?: number;
577
+
578
+ ObjectCount?: number;
579
+
580
+ TotalSize?: number;
581
+ }
582
+ export declare namespace DomainStats {
583
+
584
+ const filterSensitiveLog: (obj: DomainStats) => any;
585
+ }
586
+ export interface GetDomainResponse {
587
+
588
+ DomainName: string | undefined;
589
+
590
+ DefaultExpirationDays?: number;
591
+
592
+ DefaultEncryptionKey?: string;
593
+
594
+ DeadLetterQueueUrl?: string;
595
+
596
+ Stats?: DomainStats;
597
+
598
+ Matching?: MatchingResponse;
599
+
600
+ CreatedAt: Date | undefined;
601
+
602
+ LastUpdatedAt: Date | undefined;
603
+
604
+ Tags?: {
605
+ [key: string]: string;
606
+ };
607
+ }
608
+ export declare namespace GetDomainResponse {
609
+
610
+ const filterSensitiveLog: (obj: GetDomainResponse) => any;
611
+ }
612
+ export interface GetIdentityResolutionJobRequest {
613
+
614
+ DomainName: string | undefined;
615
+
616
+ JobId: string | undefined;
617
+ }
618
+ export declare namespace GetIdentityResolutionJobRequest {
619
+
620
+ const filterSensitiveLog: (obj: GetIdentityResolutionJobRequest) => any;
621
+ }
622
+
623
+ export interface S3ExportingLocation {
624
+
625
+ S3BucketName?: string;
626
+
627
+ S3KeyName?: string;
628
+ }
629
+ export declare namespace S3ExportingLocation {
630
+
631
+ const filterSensitiveLog: (obj: S3ExportingLocation) => any;
632
+ }
633
+
634
+ export interface ExportingLocation {
635
+
636
+ S3Exporting?: S3ExportingLocation;
637
+ }
638
+ export declare namespace ExportingLocation {
639
+
640
+ const filterSensitiveLog: (obj: ExportingLocation) => any;
641
+ }
642
+
643
+ export interface JobStats {
644
+
645
+ NumberOfProfilesReviewed?: number;
646
+
647
+ NumberOfMatchesFound?: number;
648
+
649
+ NumberOfMergesDone?: number;
650
+ }
651
+ export declare namespace JobStats {
652
+
653
+ const filterSensitiveLog: (obj: JobStats) => any;
654
+ }
655
+ export declare enum IdentityResolutionJobStatus {
656
+ COMPLETED = "COMPLETED",
657
+ FAILED = "FAILED",
658
+ FIND_MATCHING = "FIND_MATCHING",
659
+ MERGING = "MERGING",
660
+ PARTIAL_SUCCESS = "PARTIAL_SUCCESS",
661
+ PENDING = "PENDING",
662
+ PREPROCESSING = "PREPROCESSING"
663
+ }
664
+ export interface GetIdentityResolutionJobResponse {
665
+
666
+ DomainName?: string;
667
+
668
+ JobId?: string;
669
+
670
+ Status?: IdentityResolutionJobStatus | string;
671
+
672
+ Message?: string;
673
+
674
+ JobStartTime?: Date;
675
+
676
+ JobEndTime?: Date;
677
+
678
+ LastUpdatedAt?: Date;
679
+
680
+ JobExpirationTime?: Date;
681
+
682
+ AutoMerging?: AutoMerging;
683
+
684
+ ExportingLocation?: ExportingLocation;
685
+
686
+ JobStats?: JobStats;
687
+ }
688
+ export declare namespace GetIdentityResolutionJobResponse {
689
+
690
+ const filterSensitiveLog: (obj: GetIdentityResolutionJobResponse) => any;
691
+ }
692
+ export interface GetIntegrationRequest {
693
+
694
+ DomainName: string | undefined;
695
+
696
+ Uri: string | undefined;
697
+ }
698
+ export declare namespace GetIntegrationRequest {
699
+
700
+ const filterSensitiveLog: (obj: GetIntegrationRequest) => any;
701
+ }
702
+ export interface GetIntegrationResponse {
703
+
704
+ DomainName: string | undefined;
705
+
706
+ Uri: string | undefined;
707
+
708
+ ObjectTypeName?: string;
709
+
710
+ CreatedAt: Date | undefined;
711
+
712
+ LastUpdatedAt: Date | undefined;
713
+
714
+ Tags?: {
715
+ [key: string]: string;
716
+ };
717
+
718
+ ObjectTypeNames?: {
719
+ [key: string]: string;
720
+ };
721
+ }
722
+ export declare namespace GetIntegrationResponse {
723
+
724
+ const filterSensitiveLog: (obj: GetIntegrationResponse) => any;
725
+ }
726
+ export interface GetMatchesRequest {
727
+
728
+ NextToken?: string;
729
+
730
+ MaxResults?: number;
731
+
732
+ DomainName: string | undefined;
733
+ }
734
+ export declare namespace GetMatchesRequest {
735
+
736
+ const filterSensitiveLog: (obj: GetMatchesRequest) => any;
737
+ }
738
+
739
+ export interface MatchItem {
740
+
741
+ MatchId?: string;
742
+
743
+ ProfileIds?: string[];
744
+
745
+ ConfidenceScore?: number;
746
+ }
747
+ export declare namespace MatchItem {
748
+
749
+ const filterSensitiveLog: (obj: MatchItem) => any;
750
+ }
751
+ export interface GetMatchesResponse {
752
+
753
+ NextToken?: string;
754
+
755
+ MatchGenerationDate?: Date;
756
+
757
+ PotentialMatches?: number;
758
+
759
+ Matches?: MatchItem[];
760
+ }
761
+ export declare namespace GetMatchesResponse {
762
+
763
+ const filterSensitiveLog: (obj: GetMatchesResponse) => any;
764
+ }
765
+ export interface GetProfileObjectTypeRequest {
766
+
767
+ DomainName: string | undefined;
768
+
769
+ ObjectTypeName: string | undefined;
770
+ }
771
+ export declare namespace GetProfileObjectTypeRequest {
772
+
773
+ const filterSensitiveLog: (obj: GetProfileObjectTypeRequest) => any;
774
+ }
775
+ export declare enum FieldContentType {
776
+ EMAIL_ADDRESS = "EMAIL_ADDRESS",
777
+ NAME = "NAME",
778
+ NUMBER = "NUMBER",
779
+ PHONE_NUMBER = "PHONE_NUMBER",
780
+ STRING = "STRING"
781
+ }
782
+
783
+ export interface ObjectTypeField {
784
+
785
+ Source?: string;
786
+
787
+ Target?: string;
788
+
789
+ ContentType?: FieldContentType | string;
790
+ }
791
+ export declare namespace ObjectTypeField {
792
+
793
+ const filterSensitiveLog: (obj: ObjectTypeField) => any;
794
+ }
795
+ export declare enum StandardIdentifier {
796
+ ASSET = "ASSET",
797
+ CASE = "CASE",
798
+ LOOKUP_ONLY = "LOOKUP_ONLY",
799
+ NEW_ONLY = "NEW_ONLY",
800
+ ORDER = "ORDER",
801
+ PROFILE = "PROFILE",
802
+ SECONDARY = "SECONDARY",
803
+ UNIQUE = "UNIQUE"
804
+ }
805
+
806
+ export interface ObjectTypeKey {
807
+
808
+ StandardIdentifiers?: (StandardIdentifier | string)[];
809
+
810
+ FieldNames?: string[];
811
+ }
812
+ export declare namespace ObjectTypeKey {
813
+
814
+ const filterSensitiveLog: (obj: ObjectTypeKey) => any;
815
+ }
816
+ export interface GetProfileObjectTypeResponse {
817
+
818
+ ObjectTypeName: string | undefined;
819
+
820
+ Description: string | undefined;
821
+
822
+ TemplateId?: string;
823
+
824
+ ExpirationDays?: number;
825
+
826
+ EncryptionKey?: string;
827
+
828
+ AllowProfileCreation?: boolean;
829
+
830
+ SourceLastUpdatedTimestampFormat?: string;
831
+
832
+ Fields?: {
833
+ [key: string]: ObjectTypeField;
834
+ };
835
+
836
+ Keys?: {
837
+ [key: string]: ObjectTypeKey[];
838
+ };
839
+
840
+ CreatedAt?: Date;
841
+
842
+ LastUpdatedAt?: Date;
843
+
844
+ Tags?: {
845
+ [key: string]: string;
846
+ };
847
+ }
848
+ export declare namespace GetProfileObjectTypeResponse {
849
+
850
+ const filterSensitiveLog: (obj: GetProfileObjectTypeResponse) => any;
851
+ }
852
+ export interface GetProfileObjectTypeTemplateRequest {
853
+
854
+ TemplateId: string | undefined;
855
+ }
856
+ export declare namespace GetProfileObjectTypeTemplateRequest {
857
+
858
+ const filterSensitiveLog: (obj: GetProfileObjectTypeTemplateRequest) => any;
859
+ }
860
+ export interface GetProfileObjectTypeTemplateResponse {
861
+
862
+ TemplateId?: string;
863
+
864
+ SourceName?: string;
865
+
866
+ SourceObject?: string;
867
+
868
+ AllowProfileCreation?: boolean;
869
+
870
+ SourceLastUpdatedTimestampFormat?: string;
871
+
872
+ Fields?: {
873
+ [key: string]: ObjectTypeField;
874
+ };
875
+
876
+ Keys?: {
877
+ [key: string]: ObjectTypeKey[];
878
+ };
879
+ }
880
+ export declare namespace GetProfileObjectTypeTemplateResponse {
881
+
882
+ const filterSensitiveLog: (obj: GetProfileObjectTypeTemplateResponse) => any;
883
+ }
884
+ export interface ListAccountIntegrationsRequest {
885
+
886
+ Uri: string | undefined;
887
+
888
+ NextToken?: string;
889
+
890
+ MaxResults?: number;
891
+ }
892
+ export declare namespace ListAccountIntegrationsRequest {
893
+
894
+ const filterSensitiveLog: (obj: ListAccountIntegrationsRequest) => any;
895
+ }
896
+
897
+ export interface ListIntegrationItem {
898
+
899
+ DomainName: string | undefined;
900
+
901
+ Uri: string | undefined;
902
+
903
+ ObjectTypeName?: string;
904
+
905
+ CreatedAt: Date | undefined;
906
+
907
+ LastUpdatedAt: Date | undefined;
908
+
909
+ Tags?: {
910
+ [key: string]: string;
911
+ };
912
+
913
+ ObjectTypeNames?: {
914
+ [key: string]: string;
915
+ };
916
+ }
917
+ export declare namespace ListIntegrationItem {
918
+
919
+ const filterSensitiveLog: (obj: ListIntegrationItem) => any;
920
+ }
921
+ export interface ListAccountIntegrationsResponse {
922
+
923
+ Items?: ListIntegrationItem[];
924
+
925
+ NextToken?: string;
926
+ }
927
+ export declare namespace ListAccountIntegrationsResponse {
928
+
929
+ const filterSensitiveLog: (obj: ListAccountIntegrationsResponse) => any;
930
+ }
931
+ export interface ListDomainsRequest {
932
+
933
+ NextToken?: string;
934
+
935
+ MaxResults?: number;
936
+ }
937
+ export declare namespace ListDomainsRequest {
938
+
939
+ const filterSensitiveLog: (obj: ListDomainsRequest) => any;
940
+ }
941
+
942
+ export interface ListDomainItem {
943
+
944
+ DomainName: string | undefined;
945
+
946
+ CreatedAt: Date | undefined;
947
+
948
+ LastUpdatedAt: Date | undefined;
949
+
950
+ Tags?: {
951
+ [key: string]: string;
952
+ };
953
+ }
954
+ export declare namespace ListDomainItem {
955
+
956
+ const filterSensitiveLog: (obj: ListDomainItem) => any;
957
+ }
958
+ export interface ListDomainsResponse {
959
+
960
+ Items?: ListDomainItem[];
961
+
962
+ NextToken?: string;
963
+ }
964
+ export declare namespace ListDomainsResponse {
965
+
966
+ const filterSensitiveLog: (obj: ListDomainsResponse) => any;
967
+ }
968
+ export interface ListIdentityResolutionJobsRequest {
969
+
970
+ DomainName: string | undefined;
971
+
972
+ NextToken?: string;
973
+
974
+ MaxResults?: number;
975
+ }
976
+ export declare namespace ListIdentityResolutionJobsRequest {
977
+
978
+ const filterSensitiveLog: (obj: ListIdentityResolutionJobsRequest) => any;
979
+ }
980
+
981
+ export interface IdentityResolutionJob {
982
+
983
+ DomainName?: string;
984
+
985
+ JobId?: string;
986
+
987
+ Status?: IdentityResolutionJobStatus | string;
988
+
989
+ JobStartTime?: Date;
990
+
991
+ JobEndTime?: Date;
992
+
993
+ JobStats?: JobStats;
994
+
995
+ ExportingLocation?: ExportingLocation;
996
+
997
+ Message?: string;
998
+ }
999
+ export declare namespace IdentityResolutionJob {
1000
+
1001
+ const filterSensitiveLog: (obj: IdentityResolutionJob) => any;
1002
+ }
1003
+ export interface ListIdentityResolutionJobsResponse {
1004
+
1005
+ IdentityResolutionJobsList?: IdentityResolutionJob[];
1006
+
1007
+ NextToken?: string;
1008
+ }
1009
+ export declare namespace ListIdentityResolutionJobsResponse {
1010
+
1011
+ const filterSensitiveLog: (obj: ListIdentityResolutionJobsResponse) => any;
1012
+ }
1013
+ export interface ListIntegrationsRequest {
1014
+
1015
+ DomainName: string | undefined;
1016
+
1017
+ NextToken?: string;
1018
+
1019
+ MaxResults?: number;
1020
+ }
1021
+ export declare namespace ListIntegrationsRequest {
1022
+
1023
+ const filterSensitiveLog: (obj: ListIntegrationsRequest) => any;
1024
+ }
1025
+ export interface ListIntegrationsResponse {
1026
+
1027
+ Items?: ListIntegrationItem[];
1028
+
1029
+ NextToken?: string;
1030
+ }
1031
+ export declare namespace ListIntegrationsResponse {
1032
+
1033
+ const filterSensitiveLog: (obj: ListIntegrationsResponse) => any;
1034
+ }
1035
+
1036
+ export interface ObjectFilter {
1037
+
1038
+ KeyName: string | undefined;
1039
+
1040
+ Values: string[] | undefined;
1041
+ }
1042
+ export declare namespace ObjectFilter {
1043
+
1044
+ const filterSensitiveLog: (obj: ObjectFilter) => any;
1045
+ }
1046
+ export interface ListProfileObjectsRequest {
1047
+
1048
+ NextToken?: string;
1049
+
1050
+ MaxResults?: number;
1051
+
1052
+ DomainName: string | undefined;
1053
+
1054
+ ObjectTypeName: string | undefined;
1055
+
1056
+ ProfileId: string | undefined;
1057
+
1058
+ ObjectFilter?: ObjectFilter;
1059
+ }
1060
+ export declare namespace ListProfileObjectsRequest {
1061
+
1062
+ const filterSensitiveLog: (obj: ListProfileObjectsRequest) => any;
1063
+ }
1064
+
1065
+ export interface ListProfileObjectsItem {
1066
+
1067
+ ObjectTypeName?: string;
1068
+
1069
+ ProfileObjectUniqueKey?: string;
1070
+
1071
+ Object?: string;
1072
+ }
1073
+ export declare namespace ListProfileObjectsItem {
1074
+
1075
+ const filterSensitiveLog: (obj: ListProfileObjectsItem) => any;
1076
+ }
1077
+ export interface ListProfileObjectsResponse {
1078
+
1079
+ Items?: ListProfileObjectsItem[];
1080
+
1081
+ NextToken?: string;
1082
+ }
1083
+ export declare namespace ListProfileObjectsResponse {
1084
+
1085
+ const filterSensitiveLog: (obj: ListProfileObjectsResponse) => any;
1086
+ }
1087
+ export interface ListProfileObjectTypesRequest {
1088
+
1089
+ DomainName: string | undefined;
1090
+
1091
+ NextToken?: string;
1092
+
1093
+ MaxResults?: number;
1094
+ }
1095
+ export declare namespace ListProfileObjectTypesRequest {
1096
+
1097
+ const filterSensitiveLog: (obj: ListProfileObjectTypesRequest) => any;
1098
+ }
1099
+
1100
+ export interface ListProfileObjectTypeItem {
1101
+
1102
+ ObjectTypeName: string | undefined;
1103
+
1104
+ Description: string | undefined;
1105
+
1106
+ CreatedAt?: Date;
1107
+
1108
+ LastUpdatedAt?: Date;
1109
+
1110
+ Tags?: {
1111
+ [key: string]: string;
1112
+ };
1113
+ }
1114
+ export declare namespace ListProfileObjectTypeItem {
1115
+
1116
+ const filterSensitiveLog: (obj: ListProfileObjectTypeItem) => any;
1117
+ }
1118
+ export interface ListProfileObjectTypesResponse {
1119
+
1120
+ Items?: ListProfileObjectTypeItem[];
1121
+
1122
+ NextToken?: string;
1123
+ }
1124
+ export declare namespace ListProfileObjectTypesResponse {
1125
+
1126
+ const filterSensitiveLog: (obj: ListProfileObjectTypesResponse) => any;
1127
+ }
1128
+ export interface ListProfileObjectTypeTemplatesRequest {
1129
+
1130
+ NextToken?: string;
1131
+
1132
+ MaxResults?: number;
1133
+ }
1134
+ export declare namespace ListProfileObjectTypeTemplatesRequest {
1135
+
1136
+ const filterSensitiveLog: (obj: ListProfileObjectTypeTemplatesRequest) => any;
1137
+ }
1138
+
1139
+ export interface ListProfileObjectTypeTemplateItem {
1140
+
1141
+ TemplateId?: string;
1142
+
1143
+ SourceName?: string;
1144
+
1145
+ SourceObject?: string;
1146
+ }
1147
+ export declare namespace ListProfileObjectTypeTemplateItem {
1148
+
1149
+ const filterSensitiveLog: (obj: ListProfileObjectTypeTemplateItem) => any;
1150
+ }
1151
+ export interface ListProfileObjectTypeTemplatesResponse {
1152
+
1153
+ Items?: ListProfileObjectTypeTemplateItem[];
1154
+
1155
+ NextToken?: string;
1156
+ }
1157
+ export declare namespace ListProfileObjectTypeTemplatesResponse {
1158
+
1159
+ const filterSensitiveLog: (obj: ListProfileObjectTypeTemplatesResponse) => any;
1160
+ }
1161
+ export interface ListTagsForResourceRequest {
1162
+
1163
+ resourceArn: string | undefined;
1164
+ }
1165
+ export declare namespace ListTagsForResourceRequest {
1166
+
1167
+ const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
1168
+ }
1169
+ export interface ListTagsForResourceResponse {
1170
+
1171
+ tags?: {
1172
+ [key: string]: string;
1173
+ };
1174
+ }
1175
+ export declare namespace ListTagsForResourceResponse {
1176
+
1177
+ const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
1178
+ }
1179
+
1180
+ export interface FieldSourceProfileIds {
1181
+
1182
+ AccountNumber?: string;
1183
+
1184
+ AdditionalInformation?: string;
1185
+
1186
+ PartyType?: string;
1187
+
1188
+ BusinessName?: string;
1189
+
1190
+ FirstName?: string;
1191
+
1192
+ MiddleName?: string;
1193
+
1194
+ LastName?: string;
1195
+
1196
+ BirthDate?: string;
1197
+
1198
+ Gender?: string;
1199
+
1200
+ PhoneNumber?: string;
1201
+
1202
+ MobilePhoneNumber?: string;
1203
+
1204
+ HomePhoneNumber?: string;
1205
+
1206
+ BusinessPhoneNumber?: string;
1207
+
1208
+ EmailAddress?: string;
1209
+
1210
+ PersonalEmailAddress?: string;
1211
+
1212
+ BusinessEmailAddress?: string;
1213
+
1214
+ Address?: string;
1215
+
1216
+ ShippingAddress?: string;
1217
+
1218
+ MailingAddress?: string;
1219
+
1220
+ BillingAddress?: string;
1221
+
1222
+ Attributes?: {
1223
+ [key: string]: string;
1224
+ };
1225
+ }
1226
+ export declare namespace FieldSourceProfileIds {
1227
+
1228
+ const filterSensitiveLog: (obj: FieldSourceProfileIds) => any;
1229
+ }
1230
+ export interface MergeProfilesRequest {
1231
+
1232
+ DomainName: string | undefined;
1233
+
1234
+ MainProfileId: string | undefined;
1235
+
1236
+ ProfileIdsToBeMerged: string[] | undefined;
1237
+
1238
+ FieldSourceProfileIds?: FieldSourceProfileIds;
1239
+ }
1240
+ export declare namespace MergeProfilesRequest {
1241
+
1242
+ const filterSensitiveLog: (obj: MergeProfilesRequest) => any;
1243
+ }
1244
+ export interface MergeProfilesResponse {
1245
+
1246
+ Message?: string;
1247
+ }
1248
+ export declare namespace MergeProfilesResponse {
1249
+
1250
+ const filterSensitiveLog: (obj: MergeProfilesResponse) => any;
1251
+ }
1252
+ export declare enum SourceConnectorType {
1253
+ MARKETO = "Marketo",
1254
+ S3 = "S3",
1255
+ SALESFORCE = "Salesforce",
1256
+ SERVICENOW = "Servicenow",
1257
+ ZENDESK = "Zendesk"
1258
+ }
1259
+
1260
+ export interface IncrementalPullConfig {
1261
+
1262
+ DatetimeTypeFieldName?: string;
1263
+ }
1264
+ export declare namespace IncrementalPullConfig {
1265
+
1266
+ const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
1267
+ }
1268
+
1269
+ export interface MarketoSourceProperties {
1270
+
1271
+ Object: string | undefined;
1272
+ }
1273
+ export declare namespace MarketoSourceProperties {
1274
+
1275
+ const filterSensitiveLog: (obj: MarketoSourceProperties) => any;
1276
+ }
1277
+
1278
+ export interface S3SourceProperties {
1279
+
1280
+ BucketName: string | undefined;
1281
+
1282
+ BucketPrefix?: string;
1283
+ }
1284
+ export declare namespace S3SourceProperties {
1285
+
1286
+ const filterSensitiveLog: (obj: S3SourceProperties) => any;
1287
+ }
1288
+
1289
+ export interface SalesforceSourceProperties {
1290
+
1291
+ Object: string | undefined;
1292
+
1293
+ EnableDynamicFieldUpdate?: boolean;
1294
+
1295
+ IncludeDeletedRecords?: boolean;
1296
+ }
1297
+ export declare namespace SalesforceSourceProperties {
1298
+
1299
+ const filterSensitiveLog: (obj: SalesforceSourceProperties) => any;
1300
+ }
1301
+
1302
+ export interface ServiceNowSourceProperties {
1303
+
1304
+ Object: string | undefined;
1305
+ }
1306
+ export declare namespace ServiceNowSourceProperties {
1307
+
1308
+ const filterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
1309
+ }
1310
+
1311
+ export interface ZendeskSourceProperties {
1312
+
1313
+ Object: string | undefined;
1314
+ }
1315
+ export declare namespace ZendeskSourceProperties {
1316
+
1317
+ const filterSensitiveLog: (obj: ZendeskSourceProperties) => any;
1318
+ }
1319
+
1320
+ export interface SourceConnectorProperties {
1321
+
1322
+ Marketo?: MarketoSourceProperties;
1323
+
1324
+ S3?: S3SourceProperties;
1325
+
1326
+ Salesforce?: SalesforceSourceProperties;
1327
+
1328
+ ServiceNow?: ServiceNowSourceProperties;
1329
+
1330
+ Zendesk?: ZendeskSourceProperties;
1331
+ }
1332
+ export declare namespace SourceConnectorProperties {
1333
+
1334
+ const filterSensitiveLog: (obj: SourceConnectorProperties) => any;
1335
+ }
1336
+
1337
+ export interface SourceFlowConfig {
1338
+
1339
+ ConnectorProfileName?: string;
1340
+
1341
+ ConnectorType: SourceConnectorType | string | undefined;
1342
+
1343
+ IncrementalPullConfig?: IncrementalPullConfig;
1344
+
1345
+ SourceConnectorProperties: SourceConnectorProperties | undefined;
1346
+ }
1347
+ export declare namespace SourceFlowConfig {
1348
+
1349
+ const filterSensitiveLog: (obj: SourceFlowConfig) => any;
1350
+ }
1351
+ export declare enum OperatorPropertiesKeys {
1352
+ CONCAT_FORMAT = "CONCAT_FORMAT",
1353
+ DATA_TYPE = "DATA_TYPE",
1354
+ DESTINATION_DATA_TYPE = "DESTINATION_DATA_TYPE",
1355
+ LOWER_BOUND = "LOWER_BOUND",
1356
+ MASK_LENGTH = "MASK_LENGTH",
1357
+ MASK_VALUE = "MASK_VALUE",
1358
+ MATH_OPERATION_FIELDS_ORDER = "MATH_OPERATION_FIELDS_ORDER",
1359
+ SOURCE_DATA_TYPE = "SOURCE_DATA_TYPE",
1360
+ SUBFIELD_CATEGORY_MAP = "SUBFIELD_CATEGORY_MAP",
1361
+ TRUNCATE_LENGTH = "TRUNCATE_LENGTH",
1362
+ UPPER_BOUND = "UPPER_BOUND",
1363
+ VALIDATION_ACTION = "VALIDATION_ACTION",
1364
+ VALUE = "VALUE",
1365
+ VALUES = "VALUES"
1366
+ }
1367
+ export declare enum TaskType {
1368
+ ARITHMETIC = "Arithmetic",
1369
+ FILTER = "Filter",
1370
+ MAP = "Map",
1371
+ MASK = "Mask",
1372
+ MERGE = "Merge",
1373
+ TRUNCATE = "Truncate",
1374
+ VALIDATE = "Validate"
1375
+ }
1376
+
1377
+ export interface Task {
1378
+
1379
+ ConnectorOperator?: ConnectorOperator;
1380
+
1381
+ DestinationField?: string;
1382
+
1383
+ SourceFields: string[] | undefined;
1384
+
1385
+ TaskProperties?: {
1386
+ [key: string]: string;
1387
+ };
1388
+
1389
+ TaskType: TaskType | string | undefined;
1390
+ }
1391
+ export declare namespace Task {
1392
+
1393
+ const filterSensitiveLog: (obj: Task) => any;
1394
+ }
1395
+ export declare enum DataPullMode {
1396
+ COMPLETE = "Complete",
1397
+ INCREMENTAL = "Incremental"
1398
+ }
1399
+
1400
+ export interface ScheduledTriggerProperties {
1401
+
1402
+ ScheduleExpression: string | undefined;
1403
+
1404
+ DataPullMode?: DataPullMode | string;
1405
+
1406
+ ScheduleStartTime?: Date;
1407
+
1408
+ ScheduleEndTime?: Date;
1409
+
1410
+ Timezone?: string;
1411
+
1412
+ ScheduleOffset?: number;
1413
+
1414
+ FirstExecutionFrom?: Date;
1415
+ }
1416
+ export declare namespace ScheduledTriggerProperties {
1417
+
1418
+ const filterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
1419
+ }
1420
+
1421
+ export interface TriggerProperties {
1422
+
1423
+ Scheduled?: ScheduledTriggerProperties;
1424
+ }
1425
+ export declare namespace TriggerProperties {
1426
+
1427
+ const filterSensitiveLog: (obj: TriggerProperties) => any;
1428
+ }
1429
+ export declare enum TriggerType {
1430
+ EVENT = "Event",
1431
+ ONDEMAND = "OnDemand",
1432
+ SCHEDULED = "Scheduled"
1433
+ }
1434
+
1435
+ export interface TriggerConfig {
1436
+
1437
+ TriggerType: TriggerType | string | undefined;
1438
+
1439
+ TriggerProperties?: TriggerProperties;
1440
+ }
1441
+ export declare namespace TriggerConfig {
1442
+
1443
+ const filterSensitiveLog: (obj: TriggerConfig) => any;
1444
+ }
1445
+
1446
+ export interface FlowDefinition {
1447
+
1448
+ Description?: string;
1449
+
1450
+ FlowName: string | undefined;
1451
+
1452
+ KmsArn: string | undefined;
1453
+
1454
+ SourceFlowConfig: SourceFlowConfig | undefined;
1455
+
1456
+ Tasks: Task[] | undefined;
1457
+
1458
+ TriggerConfig: TriggerConfig | undefined;
1459
+ }
1460
+ export declare namespace FlowDefinition {
1461
+
1462
+ const filterSensitiveLog: (obj: FlowDefinition) => any;
1463
+ }
1464
+ export interface PutIntegrationRequest {
1465
+
1466
+ DomainName: string | undefined;
1467
+
1468
+ Uri?: string;
1469
+
1470
+ ObjectTypeName?: string;
1471
+
1472
+ Tags?: {
1473
+ [key: string]: string;
1474
+ };
1475
+
1476
+ FlowDefinition?: FlowDefinition;
1477
+
1478
+ ObjectTypeNames?: {
1479
+ [key: string]: string;
1480
+ };
1481
+ }
1482
+ export declare namespace PutIntegrationRequest {
1483
+
1484
+ const filterSensitiveLog: (obj: PutIntegrationRequest) => any;
1485
+ }
1486
+ export interface PutIntegrationResponse {
1487
+
1488
+ DomainName: string | undefined;
1489
+
1490
+ Uri: string | undefined;
1491
+
1492
+ ObjectTypeName?: string;
1493
+
1494
+ CreatedAt: Date | undefined;
1495
+
1496
+ LastUpdatedAt: Date | undefined;
1497
+
1498
+ Tags?: {
1499
+ [key: string]: string;
1500
+ };
1501
+
1502
+ ObjectTypeNames?: {
1503
+ [key: string]: string;
1504
+ };
1505
+ }
1506
+ export declare namespace PutIntegrationResponse {
1507
+
1508
+ const filterSensitiveLog: (obj: PutIntegrationResponse) => any;
1509
+ }
1510
+ export interface PutProfileObjectRequest {
1511
+
1512
+ ObjectTypeName: string | undefined;
1513
+
1514
+ Object: string | undefined;
1515
+
1516
+ DomainName: string | undefined;
1517
+ }
1518
+ export declare namespace PutProfileObjectRequest {
1519
+
1520
+ const filterSensitiveLog: (obj: PutProfileObjectRequest) => any;
1521
+ }
1522
+ export interface PutProfileObjectResponse {
1523
+
1524
+ ProfileObjectUniqueKey?: string;
1525
+ }
1526
+ export declare namespace PutProfileObjectResponse {
1527
+
1528
+ const filterSensitiveLog: (obj: PutProfileObjectResponse) => any;
1529
+ }
1530
+ export interface PutProfileObjectTypeRequest {
1531
+
1532
+ DomainName: string | undefined;
1533
+
1534
+ ObjectTypeName: string | undefined;
1535
+
1536
+ Description: string | undefined;
1537
+
1538
+ TemplateId?: string;
1539
+
1540
+ ExpirationDays?: number;
1541
+
1542
+ EncryptionKey?: string;
1543
+
1544
+ AllowProfileCreation?: boolean;
1545
+
1546
+ SourceLastUpdatedTimestampFormat?: string;
1547
+
1548
+ Fields?: {
1549
+ [key: string]: ObjectTypeField;
1550
+ };
1551
+
1552
+ Keys?: {
1553
+ [key: string]: ObjectTypeKey[];
1554
+ };
1555
+
1556
+ Tags?: {
1557
+ [key: string]: string;
1558
+ };
1559
+ }
1560
+ export declare namespace PutProfileObjectTypeRequest {
1561
+
1562
+ const filterSensitiveLog: (obj: PutProfileObjectTypeRequest) => any;
1563
+ }
1564
+ export interface PutProfileObjectTypeResponse {
1565
+
1566
+ ObjectTypeName: string | undefined;
1567
+
1568
+ Description: string | undefined;
1569
+
1570
+ TemplateId?: string;
1571
+
1572
+ ExpirationDays?: number;
1573
+
1574
+ EncryptionKey?: string;
1575
+
1576
+ AllowProfileCreation?: boolean;
1577
+
1578
+ SourceLastUpdatedTimestampFormat?: string;
1579
+
1580
+ Fields?: {
1581
+ [key: string]: ObjectTypeField;
1582
+ };
1583
+
1584
+ Keys?: {
1585
+ [key: string]: ObjectTypeKey[];
1586
+ };
1587
+
1588
+ CreatedAt?: Date;
1589
+
1590
+ LastUpdatedAt?: Date;
1591
+
1592
+ Tags?: {
1593
+ [key: string]: string;
1594
+ };
1595
+ }
1596
+ export declare namespace PutProfileObjectTypeResponse {
1597
+
1598
+ const filterSensitiveLog: (obj: PutProfileObjectTypeResponse) => any;
1599
+ }
1600
+ export interface SearchProfilesRequest {
1601
+
1602
+ NextToken?: string;
1603
+
1604
+ MaxResults?: number;
1605
+
1606
+ DomainName: string | undefined;
1607
+
1608
+ KeyName: string | undefined;
1609
+
1610
+ Values: string[] | undefined;
1611
+ }
1612
+ export declare namespace SearchProfilesRequest {
1613
+
1614
+ const filterSensitiveLog: (obj: SearchProfilesRequest) => any;
1615
+ }
1616
+
1617
+ export interface Profile {
1618
+
1619
+ ProfileId?: string;
1620
+
1621
+ AccountNumber?: string;
1622
+
1623
+ AdditionalInformation?: string;
1624
+
1625
+ PartyType?: PartyType | string;
1626
+
1627
+ BusinessName?: string;
1628
+
1629
+ FirstName?: string;
1630
+
1631
+ MiddleName?: string;
1632
+
1633
+ LastName?: string;
1634
+
1635
+ BirthDate?: string;
1636
+
1637
+ Gender?: Gender | string;
1638
+
1639
+ PhoneNumber?: string;
1640
+
1641
+ MobilePhoneNumber?: string;
1642
+
1643
+ HomePhoneNumber?: string;
1644
+
1645
+ BusinessPhoneNumber?: string;
1646
+
1647
+ EmailAddress?: string;
1648
+
1649
+ PersonalEmailAddress?: string;
1650
+
1651
+ BusinessEmailAddress?: string;
1652
+
1653
+ Address?: Address;
1654
+
1655
+ ShippingAddress?: Address;
1656
+
1657
+ MailingAddress?: Address;
1658
+
1659
+ BillingAddress?: Address;
1660
+
1661
+ Attributes?: {
1662
+ [key: string]: string;
1663
+ };
1664
+ }
1665
+ export declare namespace Profile {
1666
+
1667
+ const filterSensitiveLog: (obj: Profile) => any;
1668
+ }
1669
+ export interface SearchProfilesResponse {
1670
+
1671
+ Items?: Profile[];
1672
+
1673
+ NextToken?: string;
1674
+ }
1675
+ export declare namespace SearchProfilesResponse {
1676
+
1677
+ const filterSensitiveLog: (obj: SearchProfilesResponse) => any;
1678
+ }
1679
+ export interface TagResourceRequest {
1680
+
1681
+ resourceArn: string | undefined;
1682
+
1683
+ tags: {
1684
+ [key: string]: string;
1685
+ } | undefined;
1686
+ }
1687
+ export declare namespace TagResourceRequest {
1688
+
1689
+ const filterSensitiveLog: (obj: TagResourceRequest) => any;
1690
+ }
1691
+ export interface TagResourceResponse {
1692
+ }
1693
+ export declare namespace TagResourceResponse {
1694
+
1695
+ const filterSensitiveLog: (obj: TagResourceResponse) => any;
1696
+ }
1697
+ export interface UntagResourceRequest {
1698
+
1699
+ resourceArn: string | undefined;
1700
+
1701
+ tagKeys: string[] | undefined;
1702
+ }
1703
+ export declare namespace UntagResourceRequest {
1704
+
1705
+ const filterSensitiveLog: (obj: UntagResourceRequest) => any;
1706
+ }
1707
+ export interface UntagResourceResponse {
1708
+ }
1709
+ export declare namespace UntagResourceResponse {
1710
+
1711
+ const filterSensitiveLog: (obj: UntagResourceResponse) => any;
1712
+ }
1713
+ export interface UpdateDomainRequest {
1714
+
1715
+ DomainName: string | undefined;
1716
+
1717
+ DefaultExpirationDays?: number;
1718
+
1719
+ DefaultEncryptionKey?: string;
1720
+
1721
+ DeadLetterQueueUrl?: string;
1722
+
1723
+ Matching?: MatchingRequest;
1724
+
1725
+ Tags?: {
1726
+ [key: string]: string;
1727
+ };
1728
+ }
1729
+ export declare namespace UpdateDomainRequest {
1730
+
1731
+ const filterSensitiveLog: (obj: UpdateDomainRequest) => any;
1732
+ }
1733
+ export interface UpdateDomainResponse {
1734
+
1735
+ DomainName: string | undefined;
1736
+
1737
+ DefaultExpirationDays?: number;
1738
+
1739
+ DefaultEncryptionKey?: string;
1740
+
1741
+ DeadLetterQueueUrl?: string;
1742
+
1743
+ Matching?: MatchingResponse;
1744
+
1745
+ CreatedAt: Date | undefined;
1746
+
1747
+ LastUpdatedAt: Date | undefined;
1748
+
1749
+ Tags?: {
1750
+ [key: string]: string;
1751
+ };
1752
+ }
1753
+ export declare namespace UpdateDomainResponse {
1754
+
1755
+ const filterSensitiveLog: (obj: UpdateDomainResponse) => any;
1756
+ }
1757
+
1758
+ export interface UpdateAddress {
1759
+
1760
+ Address1?: string;
1761
+
1762
+ Address2?: string;
1763
+
1764
+ Address3?: string;
1765
+
1766
+ Address4?: string;
1767
+
1768
+ City?: string;
1769
+
1770
+ County?: string;
1771
+
1772
+ State?: string;
1773
+
1774
+ Province?: string;
1775
+
1776
+ Country?: string;
1777
+
1778
+ PostalCode?: string;
1779
+ }
1780
+ export declare namespace UpdateAddress {
1781
+
1782
+ const filterSensitiveLog: (obj: UpdateAddress) => any;
1783
+ }
1784
+ export interface UpdateProfileRequest {
1785
+
1786
+ DomainName: string | undefined;
1787
+
1788
+ ProfileId: string | undefined;
1789
+
1790
+ AdditionalInformation?: string;
1791
+
1792
+ AccountNumber?: string;
1793
+
1794
+ PartyType?: PartyType | string;
1795
+
1796
+ BusinessName?: string;
1797
+
1798
+ FirstName?: string;
1799
+
1800
+ MiddleName?: string;
1801
+
1802
+ LastName?: string;
1803
+
1804
+ BirthDate?: string;
1805
+
1806
+ Gender?: Gender | string;
1807
+
1808
+ PhoneNumber?: string;
1809
+
1810
+ MobilePhoneNumber?: string;
1811
+
1812
+ HomePhoneNumber?: string;
1813
+
1814
+ BusinessPhoneNumber?: string;
1815
+
1816
+ EmailAddress?: string;
1817
+
1818
+ PersonalEmailAddress?: string;
1819
+
1820
+ BusinessEmailAddress?: string;
1821
+
1822
+ Address?: UpdateAddress;
1823
+
1824
+ ShippingAddress?: UpdateAddress;
1825
+
1826
+ MailingAddress?: UpdateAddress;
1827
+
1828
+ BillingAddress?: UpdateAddress;
1829
+
1830
+ Attributes?: {
1831
+ [key: string]: string;
1832
+ };
1833
+ }
1834
+ export declare namespace UpdateProfileRequest {
1835
+
1836
+ const filterSensitiveLog: (obj: UpdateProfileRequest) => any;
1837
+ }
1838
+ export interface UpdateProfileResponse {
1839
+
1840
+ ProfileId: string | undefined;
1841
+ }
1842
+ export declare namespace UpdateProfileResponse {
1843
+
1844
+ const filterSensitiveLog: (obj: UpdateProfileResponse) => any;
1845
+ }