@aws-sdk/client-customer-profiles 3.183.0 → 3.186.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.
- package/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/CustomerProfiles.js +161 -154
- package/dist-es/CustomerProfilesClient.js +28 -22
- package/dist-es/commands/AddProfileKeyCommand.js +28 -21
- package/dist-es/commands/CreateDomainCommand.js +28 -21
- package/dist-es/commands/CreateIntegrationWorkflowCommand.js +28 -21
- package/dist-es/commands/CreateProfileCommand.js +28 -21
- package/dist-es/commands/DeleteDomainCommand.js +28 -21
- package/dist-es/commands/DeleteIntegrationCommand.js +28 -21
- package/dist-es/commands/DeleteProfileCommand.js +28 -21
- package/dist-es/commands/DeleteProfileKeyCommand.js +28 -21
- package/dist-es/commands/DeleteProfileObjectCommand.js +28 -21
- package/dist-es/commands/DeleteProfileObjectTypeCommand.js +28 -21
- package/dist-es/commands/DeleteWorkflowCommand.js +28 -21
- package/dist-es/commands/GetAutoMergingPreviewCommand.js +28 -21
- package/dist-es/commands/GetDomainCommand.js +28 -21
- package/dist-es/commands/GetIdentityResolutionJobCommand.js +28 -21
- package/dist-es/commands/GetIntegrationCommand.js +28 -21
- package/dist-es/commands/GetMatchesCommand.js +28 -21
- package/dist-es/commands/GetProfileObjectTypeCommand.js +28 -21
- package/dist-es/commands/GetProfileObjectTypeTemplateCommand.js +28 -21
- package/dist-es/commands/GetWorkflowCommand.js +28 -21
- package/dist-es/commands/GetWorkflowStepsCommand.js +28 -21
- package/dist-es/commands/ListAccountIntegrationsCommand.js +28 -21
- package/dist-es/commands/ListDomainsCommand.js +28 -21
- package/dist-es/commands/ListIdentityResolutionJobsCommand.js +28 -21
- package/dist-es/commands/ListIntegrationsCommand.js +28 -21
- package/dist-es/commands/ListProfileObjectTypeTemplatesCommand.js +28 -21
- package/dist-es/commands/ListProfileObjectTypesCommand.js +28 -21
- package/dist-es/commands/ListProfileObjectsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListWorkflowsCommand.js +28 -21
- package/dist-es/commands/MergeProfilesCommand.js +28 -21
- package/dist-es/commands/PutIntegrationCommand.js +28 -21
- package/dist-es/commands/PutProfileObjectCommand.js +28 -21
- package/dist-es/commands/PutProfileObjectTypeCommand.js +28 -21
- package/dist-es/commands/SearchProfilesCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateDomainCommand.js +28 -21
- package/dist-es/commands/UpdateProfileCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CustomerProfilesServiceException.js +10 -5
- package/dist-es/models/models_0.js +187 -438
- package/dist-es/protocols/Aws_restJson1.js +4376 -3396
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,69 +1,70 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { CustomerProfilesServiceException as __BaseException } from "./CustomerProfilesServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
16
|
+
var BadRequestException = (function (_super) {
|
|
17
|
+
__extends(BadRequestException, _super);
|
|
18
|
+
function BadRequestException(opts) {
|
|
19
|
+
var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
|
|
20
|
+
_this.name = "BadRequestException";
|
|
21
|
+
_this.$fault = "client";
|
|
22
|
+
Object.setPrototypeOf(_this, BadRequestException.prototype);
|
|
23
|
+
_this.Message = opts.Message;
|
|
24
|
+
return _this;
|
|
26
25
|
}
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
26
|
+
return BadRequestException;
|
|
27
|
+
}(__BaseException));
|
|
28
|
+
export { BadRequestException };
|
|
29
|
+
var InternalServerException = (function (_super) {
|
|
30
|
+
__extends(InternalServerException, _super);
|
|
31
|
+
function InternalServerException(opts) {
|
|
32
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
33
|
+
_this.name = "InternalServerException";
|
|
34
|
+
_this.$fault = "server";
|
|
35
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
36
|
+
_this.Message = opts.Message;
|
|
37
|
+
return _this;
|
|
39
38
|
}
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
39
|
+
return InternalServerException;
|
|
40
|
+
}(__BaseException));
|
|
41
|
+
export { InternalServerException };
|
|
42
|
+
var ResourceNotFoundException = (function (_super) {
|
|
43
|
+
__extends(ResourceNotFoundException, _super);
|
|
44
|
+
function ResourceNotFoundException(opts) {
|
|
45
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
46
|
+
_this.name = "ResourceNotFoundException";
|
|
47
|
+
_this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
49
|
+
_this.Message = opts.Message;
|
|
50
|
+
return _this;
|
|
52
51
|
}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
52
|
+
return ResourceNotFoundException;
|
|
53
|
+
}(__BaseException));
|
|
54
|
+
export { ResourceNotFoundException };
|
|
55
|
+
var ThrottlingException = (function (_super) {
|
|
56
|
+
__extends(ThrottlingException, _super);
|
|
57
|
+
function ThrottlingException(opts) {
|
|
58
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
59
|
+
_this.name = "ThrottlingException";
|
|
60
|
+
_this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
62
|
+
_this.Message = opts.Message;
|
|
63
|
+
return _this;
|
|
65
64
|
}
|
|
66
|
-
|
|
65
|
+
return ThrottlingException;
|
|
66
|
+
}(__BaseException));
|
|
67
|
+
export { ThrottlingException };
|
|
67
68
|
export var SourceConnectorType;
|
|
68
69
|
(function (SourceConnectorType) {
|
|
69
70
|
SourceConnectorType["MARKETO"] = "Marketo";
|
|
@@ -287,381 +288,129 @@ export var StandardIdentifier;
|
|
|
287
288
|
StandardIdentifier["SECONDARY"] = "SECONDARY";
|
|
288
289
|
StandardIdentifier["UNIQUE"] = "UNIQUE";
|
|
289
290
|
})(StandardIdentifier || (StandardIdentifier = {}));
|
|
290
|
-
export
|
|
291
|
-
|
|
292
|
-
});
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
});
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
});
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
});
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
});
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
});
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
});
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
});
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
});
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
});
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
});
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
});
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
});
|
|
329
|
-
export
|
|
330
|
-
|
|
331
|
-
});
|
|
332
|
-
export
|
|
333
|
-
|
|
334
|
-
});
|
|
335
|
-
export
|
|
336
|
-
|
|
337
|
-
});
|
|
338
|
-
export
|
|
339
|
-
|
|
340
|
-
});
|
|
341
|
-
export
|
|
342
|
-
|
|
343
|
-
});
|
|
344
|
-
export
|
|
345
|
-
|
|
346
|
-
});
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
});
|
|
350
|
-
export
|
|
351
|
-
|
|
352
|
-
});
|
|
353
|
-
export
|
|
354
|
-
|
|
355
|
-
});
|
|
356
|
-
export
|
|
357
|
-
|
|
358
|
-
});
|
|
359
|
-
export
|
|
360
|
-
|
|
361
|
-
});
|
|
362
|
-
export
|
|
363
|
-
|
|
364
|
-
});
|
|
365
|
-
export
|
|
366
|
-
|
|
367
|
-
});
|
|
368
|
-
export
|
|
369
|
-
|
|
370
|
-
});
|
|
371
|
-
export
|
|
372
|
-
|
|
373
|
-
});
|
|
374
|
-
export
|
|
375
|
-
|
|
376
|
-
});
|
|
377
|
-
export
|
|
378
|
-
|
|
379
|
-
});
|
|
380
|
-
export
|
|
381
|
-
|
|
382
|
-
});
|
|
383
|
-
export
|
|
384
|
-
|
|
385
|
-
});
|
|
386
|
-
export
|
|
387
|
-
|
|
388
|
-
});
|
|
389
|
-
export
|
|
390
|
-
|
|
391
|
-
});
|
|
392
|
-
export
|
|
393
|
-
|
|
394
|
-
});
|
|
395
|
-
export
|
|
396
|
-
|
|
397
|
-
});
|
|
398
|
-
export
|
|
399
|
-
|
|
400
|
-
});
|
|
401
|
-
export
|
|
402
|
-
|
|
403
|
-
});
|
|
404
|
-
export
|
|
405
|
-
|
|
406
|
-
});
|
|
407
|
-
export
|
|
408
|
-
|
|
409
|
-
});
|
|
410
|
-
export
|
|
411
|
-
|
|
412
|
-
});
|
|
413
|
-
export
|
|
414
|
-
|
|
415
|
-
});
|
|
416
|
-
export const DeleteProfileResponseFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const DeleteProfileKeyRequestFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const DeleteProfileKeyResponseFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const DeleteProfileObjectRequestFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
});
|
|
428
|
-
export const DeleteProfileObjectResponseFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
});
|
|
431
|
-
export const DeleteProfileObjectTypeRequestFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
});
|
|
434
|
-
export const DeleteProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
});
|
|
437
|
-
export const DeleteWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
438
|
-
...obj,
|
|
439
|
-
});
|
|
440
|
-
export const DeleteWorkflowResponseFilterSensitiveLog = (obj) => ({
|
|
441
|
-
...obj,
|
|
442
|
-
});
|
|
443
|
-
export const GetAutoMergingPreviewRequestFilterSensitiveLog = (obj) => ({
|
|
444
|
-
...obj,
|
|
445
|
-
});
|
|
446
|
-
export const GetAutoMergingPreviewResponseFilterSensitiveLog = (obj) => ({
|
|
447
|
-
...obj,
|
|
448
|
-
});
|
|
449
|
-
export const GetDomainRequestFilterSensitiveLog = (obj) => ({
|
|
450
|
-
...obj,
|
|
451
|
-
});
|
|
452
|
-
export const DomainStatsFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
});
|
|
455
|
-
export const GetDomainResponseFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
});
|
|
458
|
-
export const GetIdentityResolutionJobRequestFilterSensitiveLog = (obj) => ({
|
|
459
|
-
...obj,
|
|
460
|
-
});
|
|
461
|
-
export const S3ExportingLocationFilterSensitiveLog = (obj) => ({
|
|
462
|
-
...obj,
|
|
463
|
-
});
|
|
464
|
-
export const ExportingLocationFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
});
|
|
467
|
-
export const JobStatsFilterSensitiveLog = (obj) => ({
|
|
468
|
-
...obj,
|
|
469
|
-
});
|
|
470
|
-
export const GetIdentityResolutionJobResponseFilterSensitiveLog = (obj) => ({
|
|
471
|
-
...obj,
|
|
472
|
-
});
|
|
473
|
-
export const GetIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
474
|
-
...obj,
|
|
475
|
-
});
|
|
476
|
-
export const GetIntegrationResponseFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
});
|
|
479
|
-
export const GetMatchesRequestFilterSensitiveLog = (obj) => ({
|
|
480
|
-
...obj,
|
|
481
|
-
});
|
|
482
|
-
export const MatchItemFilterSensitiveLog = (obj) => ({
|
|
483
|
-
...obj,
|
|
484
|
-
});
|
|
485
|
-
export const GetMatchesResponseFilterSensitiveLog = (obj) => ({
|
|
486
|
-
...obj,
|
|
487
|
-
});
|
|
488
|
-
export const GetProfileObjectTypeRequestFilterSensitiveLog = (obj) => ({
|
|
489
|
-
...obj,
|
|
490
|
-
});
|
|
491
|
-
export const ObjectTypeFieldFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
});
|
|
494
|
-
export const ObjectTypeKeyFilterSensitiveLog = (obj) => ({
|
|
495
|
-
...obj,
|
|
496
|
-
});
|
|
497
|
-
export const GetProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
498
|
-
...obj,
|
|
499
|
-
});
|
|
500
|
-
export const GetProfileObjectTypeTemplateRequestFilterSensitiveLog = (obj) => ({
|
|
501
|
-
...obj,
|
|
502
|
-
});
|
|
503
|
-
export const GetProfileObjectTypeTemplateResponseFilterSensitiveLog = (obj) => ({
|
|
504
|
-
...obj,
|
|
505
|
-
});
|
|
506
|
-
export const GetWorkflowRequestFilterSensitiveLog = (obj) => ({
|
|
507
|
-
...obj,
|
|
508
|
-
});
|
|
509
|
-
export const WorkflowAttributesFilterSensitiveLog = (obj) => ({
|
|
510
|
-
...obj,
|
|
511
|
-
});
|
|
512
|
-
export const WorkflowMetricsFilterSensitiveLog = (obj) => ({
|
|
513
|
-
...obj,
|
|
514
|
-
});
|
|
515
|
-
export const GetWorkflowResponseFilterSensitiveLog = (obj) => ({
|
|
516
|
-
...obj,
|
|
517
|
-
});
|
|
518
|
-
export const GetWorkflowStepsRequestFilterSensitiveLog = (obj) => ({
|
|
519
|
-
...obj,
|
|
520
|
-
});
|
|
521
|
-
export const WorkflowStepItemFilterSensitiveLog = (obj) => ({
|
|
522
|
-
...obj,
|
|
523
|
-
});
|
|
524
|
-
export const GetWorkflowStepsResponseFilterSensitiveLog = (obj) => ({
|
|
525
|
-
...obj,
|
|
526
|
-
});
|
|
527
|
-
export const ListAccountIntegrationsRequestFilterSensitiveLog = (obj) => ({
|
|
528
|
-
...obj,
|
|
529
|
-
});
|
|
530
|
-
export const ListIntegrationItemFilterSensitiveLog = (obj) => ({
|
|
531
|
-
...obj,
|
|
532
|
-
});
|
|
533
|
-
export const ListAccountIntegrationsResponseFilterSensitiveLog = (obj) => ({
|
|
534
|
-
...obj,
|
|
535
|
-
});
|
|
536
|
-
export const ListDomainsRequestFilterSensitiveLog = (obj) => ({
|
|
537
|
-
...obj,
|
|
538
|
-
});
|
|
539
|
-
export const ListDomainItemFilterSensitiveLog = (obj) => ({
|
|
540
|
-
...obj,
|
|
541
|
-
});
|
|
542
|
-
export const ListDomainsResponseFilterSensitiveLog = (obj) => ({
|
|
543
|
-
...obj,
|
|
544
|
-
});
|
|
545
|
-
export const ListIdentityResolutionJobsRequestFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
});
|
|
548
|
-
export const IdentityResolutionJobFilterSensitiveLog = (obj) => ({
|
|
549
|
-
...obj,
|
|
550
|
-
});
|
|
551
|
-
export const ListIdentityResolutionJobsResponseFilterSensitiveLog = (obj) => ({
|
|
552
|
-
...obj,
|
|
553
|
-
});
|
|
554
|
-
export const ListIntegrationsRequestFilterSensitiveLog = (obj) => ({
|
|
555
|
-
...obj,
|
|
556
|
-
});
|
|
557
|
-
export const ListIntegrationsResponseFilterSensitiveLog = (obj) => ({
|
|
558
|
-
...obj,
|
|
559
|
-
});
|
|
560
|
-
export const ObjectFilterFilterSensitiveLog = (obj) => ({
|
|
561
|
-
...obj,
|
|
562
|
-
});
|
|
563
|
-
export const ListProfileObjectsRequestFilterSensitiveLog = (obj) => ({
|
|
564
|
-
...obj,
|
|
565
|
-
});
|
|
566
|
-
export const ListProfileObjectsItemFilterSensitiveLog = (obj) => ({
|
|
567
|
-
...obj,
|
|
568
|
-
});
|
|
569
|
-
export const ListProfileObjectsResponseFilterSensitiveLog = (obj) => ({
|
|
570
|
-
...obj,
|
|
571
|
-
});
|
|
572
|
-
export const ListProfileObjectTypesRequestFilterSensitiveLog = (obj) => ({
|
|
573
|
-
...obj,
|
|
574
|
-
});
|
|
575
|
-
export const ListProfileObjectTypeItemFilterSensitiveLog = (obj) => ({
|
|
576
|
-
...obj,
|
|
577
|
-
});
|
|
578
|
-
export const ListProfileObjectTypesResponseFilterSensitiveLog = (obj) => ({
|
|
579
|
-
...obj,
|
|
580
|
-
});
|
|
581
|
-
export const ListProfileObjectTypeTemplatesRequestFilterSensitiveLog = (obj) => ({
|
|
582
|
-
...obj,
|
|
583
|
-
});
|
|
584
|
-
export const ListProfileObjectTypeTemplateItemFilterSensitiveLog = (obj) => ({
|
|
585
|
-
...obj,
|
|
586
|
-
});
|
|
587
|
-
export const ListProfileObjectTypeTemplatesResponseFilterSensitiveLog = (obj) => ({
|
|
588
|
-
...obj,
|
|
589
|
-
});
|
|
590
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
591
|
-
...obj,
|
|
592
|
-
});
|
|
593
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
594
|
-
...obj,
|
|
595
|
-
});
|
|
596
|
-
export const ListWorkflowsRequestFilterSensitiveLog = (obj) => ({
|
|
597
|
-
...obj,
|
|
598
|
-
});
|
|
599
|
-
export const ListWorkflowsItemFilterSensitiveLog = (obj) => ({
|
|
600
|
-
...obj,
|
|
601
|
-
});
|
|
602
|
-
export const ListWorkflowsResponseFilterSensitiveLog = (obj) => ({
|
|
603
|
-
...obj,
|
|
604
|
-
});
|
|
605
|
-
export const FieldSourceProfileIdsFilterSensitiveLog = (obj) => ({
|
|
606
|
-
...obj,
|
|
607
|
-
});
|
|
608
|
-
export const MergeProfilesRequestFilterSensitiveLog = (obj) => ({
|
|
609
|
-
...obj,
|
|
610
|
-
});
|
|
611
|
-
export const MergeProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
612
|
-
...obj,
|
|
613
|
-
});
|
|
614
|
-
export const PutIntegrationRequestFilterSensitiveLog = (obj) => ({
|
|
615
|
-
...obj,
|
|
616
|
-
});
|
|
617
|
-
export const PutIntegrationResponseFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
});
|
|
620
|
-
export const PutProfileObjectRequestFilterSensitiveLog = (obj) => ({
|
|
621
|
-
...obj,
|
|
622
|
-
});
|
|
623
|
-
export const PutProfileObjectResponseFilterSensitiveLog = (obj) => ({
|
|
624
|
-
...obj,
|
|
625
|
-
});
|
|
626
|
-
export const PutProfileObjectTypeRequestFilterSensitiveLog = (obj) => ({
|
|
627
|
-
...obj,
|
|
628
|
-
});
|
|
629
|
-
export const PutProfileObjectTypeResponseFilterSensitiveLog = (obj) => ({
|
|
630
|
-
...obj,
|
|
631
|
-
});
|
|
632
|
-
export const SearchProfilesRequestFilterSensitiveLog = (obj) => ({
|
|
633
|
-
...obj,
|
|
634
|
-
});
|
|
635
|
-
export const ProfileFilterSensitiveLog = (obj) => ({
|
|
636
|
-
...obj,
|
|
637
|
-
});
|
|
638
|
-
export const SearchProfilesResponseFilterSensitiveLog = (obj) => ({
|
|
639
|
-
...obj,
|
|
640
|
-
});
|
|
641
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
642
|
-
...obj,
|
|
643
|
-
});
|
|
644
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
645
|
-
...obj,
|
|
646
|
-
});
|
|
647
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
648
|
-
...obj,
|
|
649
|
-
});
|
|
650
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
651
|
-
...obj,
|
|
652
|
-
});
|
|
653
|
-
export const UpdateDomainRequestFilterSensitiveLog = (obj) => ({
|
|
654
|
-
...obj,
|
|
655
|
-
});
|
|
656
|
-
export const UpdateDomainResponseFilterSensitiveLog = (obj) => ({
|
|
657
|
-
...obj,
|
|
658
|
-
});
|
|
659
|
-
export const UpdateAddressFilterSensitiveLog = (obj) => ({
|
|
660
|
-
...obj,
|
|
661
|
-
});
|
|
662
|
-
export const UpdateProfileRequestFilterSensitiveLog = (obj) => ({
|
|
663
|
-
...obj,
|
|
664
|
-
});
|
|
665
|
-
export const UpdateProfileResponseFilterSensitiveLog = (obj) => ({
|
|
666
|
-
...obj,
|
|
667
|
-
});
|
|
291
|
+
export var AddProfileKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var AddProfileKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var AddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var BatchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var IncrementalPullConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var MarketoSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var S3SourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var SalesforceSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var ServiceNowSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var ZendeskSourcePropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var SourceConnectorPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var SourceFlowConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var ConnectorOperatorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var TaskFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var ScheduledTriggerPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var TriggerPropertiesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var TriggerConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var FlowDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var AppflowIntegrationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var AppflowIntegrationWorkflowAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var AppflowIntegrationWorkflowMetricsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var AppflowIntegrationWorkflowStepFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var ConflictResolutionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var ConsolidationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var AutoMergingFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var S3ExportingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var ExportingConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var JobScheduleFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var MatchingRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var CreateDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var MatchingResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var CreateDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var IntegrationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var CreateIntegrationWorkflowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var CreateIntegrationWorkflowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var CreateProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var CreateProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var DeleteDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var DeleteDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var DeleteIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var DeleteIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
332
|
+
export var DeleteProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
|
+
export var DeleteProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
334
|
+
export var DeleteProfileKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
335
|
+
export var DeleteProfileKeyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
336
|
+
export var DeleteProfileObjectRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
337
|
+
export var DeleteProfileObjectResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
338
|
+
export var DeleteProfileObjectTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
339
|
+
export var DeleteProfileObjectTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
340
|
+
export var DeleteWorkflowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
341
|
+
export var DeleteWorkflowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
342
|
+
export var GetAutoMergingPreviewRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
343
|
+
export var GetAutoMergingPreviewResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
344
|
+
export var GetDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
345
|
+
export var DomainStatsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
346
|
+
export var GetDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
347
|
+
export var GetIdentityResolutionJobRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
348
|
+
export var S3ExportingLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
349
|
+
export var ExportingLocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
350
|
+
export var JobStatsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
351
|
+
export var GetIdentityResolutionJobResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
352
|
+
export var GetIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
353
|
+
export var GetIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
354
|
+
export var GetMatchesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
355
|
+
export var MatchItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
356
|
+
export var GetMatchesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
357
|
+
export var GetProfileObjectTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
358
|
+
export var ObjectTypeFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
359
|
+
export var ObjectTypeKeyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
360
|
+
export var GetProfileObjectTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
|
+
export var GetProfileObjectTypeTemplateRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
362
|
+
export var GetProfileObjectTypeTemplateResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
363
|
+
export var GetWorkflowRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
364
|
+
export var WorkflowAttributesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
365
|
+
export var WorkflowMetricsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
366
|
+
export var GetWorkflowResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
367
|
+
export var GetWorkflowStepsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
368
|
+
export var WorkflowStepItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
369
|
+
export var GetWorkflowStepsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
370
|
+
export var ListAccountIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
371
|
+
export var ListIntegrationItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
372
|
+
export var ListAccountIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
373
|
+
export var ListDomainsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
374
|
+
export var ListDomainItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
375
|
+
export var ListDomainsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
376
|
+
export var ListIdentityResolutionJobsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
377
|
+
export var IdentityResolutionJobFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
378
|
+
export var ListIdentityResolutionJobsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
379
|
+
export var ListIntegrationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
380
|
+
export var ListIntegrationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
381
|
+
export var ObjectFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
382
|
+
export var ListProfileObjectsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
383
|
+
export var ListProfileObjectsItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
384
|
+
export var ListProfileObjectsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
385
|
+
export var ListProfileObjectTypesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
386
|
+
export var ListProfileObjectTypeItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
387
|
+
export var ListProfileObjectTypesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
388
|
+
export var ListProfileObjectTypeTemplatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
389
|
+
export var ListProfileObjectTypeTemplateItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
|
+
export var ListProfileObjectTypeTemplatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
391
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
392
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
393
|
+
export var ListWorkflowsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
394
|
+
export var ListWorkflowsItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
395
|
+
export var ListWorkflowsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
396
|
+
export var FieldSourceProfileIdsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
397
|
+
export var MergeProfilesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
398
|
+
export var MergeProfilesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
399
|
+
export var PutIntegrationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
400
|
+
export var PutIntegrationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
401
|
+
export var PutProfileObjectRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
402
|
+
export var PutProfileObjectResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
403
|
+
export var PutProfileObjectTypeRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
404
|
+
export var PutProfileObjectTypeResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
405
|
+
export var SearchProfilesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
406
|
+
export var ProfileFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
407
|
+
export var SearchProfilesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
408
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
409
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
411
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
412
|
+
export var UpdateDomainRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
413
|
+
export var UpdateDomainResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
414
|
+
export var UpdateAddressFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
415
|
+
export var UpdateProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
416
|
+
export var UpdateProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|