@aws-sdk/client-customer-profiles 3.130.0 → 3.141.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 +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AddProfileKeyCommand.js +2 -2
- package/dist-cjs/commands/CreateDomainCommand.js +2 -2
- package/dist-cjs/commands/CreateIntegrationWorkflowCommand.js +2 -2
- package/dist-cjs/commands/CreateProfileCommand.js +2 -2
- package/dist-cjs/commands/DeleteDomainCommand.js +2 -2
- package/dist-cjs/commands/DeleteIntegrationCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfileCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfileKeyCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfileObjectCommand.js +2 -2
- package/dist-cjs/commands/DeleteProfileObjectTypeCommand.js +2 -2
- package/dist-cjs/commands/DeleteWorkflowCommand.js +2 -2
- package/dist-cjs/commands/GetAutoMergingPreviewCommand.js +2 -2
- package/dist-cjs/commands/GetDomainCommand.js +2 -2
- package/dist-cjs/commands/GetIdentityResolutionJobCommand.js +2 -2
- package/dist-cjs/commands/GetIntegrationCommand.js +2 -2
- package/dist-cjs/commands/GetMatchesCommand.js +2 -2
- package/dist-cjs/commands/GetProfileObjectTypeCommand.js +2 -2
- package/dist-cjs/commands/GetProfileObjectTypeTemplateCommand.js +2 -2
- package/dist-cjs/commands/GetWorkflowCommand.js +2 -2
- package/dist-cjs/commands/GetWorkflowStepsCommand.js +2 -2
- package/dist-cjs/commands/ListAccountIntegrationsCommand.js +2 -2
- package/dist-cjs/commands/ListDomainsCommand.js +2 -2
- package/dist-cjs/commands/ListIdentityResolutionJobsCommand.js +2 -2
- package/dist-cjs/commands/ListIntegrationsCommand.js +2 -2
- package/dist-cjs/commands/ListProfileObjectTypeTemplatesCommand.js +2 -2
- package/dist-cjs/commands/ListProfileObjectTypesCommand.js +2 -2
- package/dist-cjs/commands/ListProfileObjectsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/ListWorkflowsCommand.js +2 -2
- package/dist-cjs/commands/MergeProfilesCommand.js +2 -2
- package/dist-cjs/commands/PutIntegrationCommand.js +2 -2
- package/dist-cjs/commands/PutProfileObjectCommand.js +2 -2
- package/dist-cjs/commands/PutProfileObjectTypeCommand.js +2 -2
- package/dist-cjs/commands/SearchProfilesCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateDomainCommand.js +2 -2
- package/dist-cjs/commands/UpdateProfileCommand.js +2 -2
- package/dist-cjs/models/models_0.js +507 -759
- package/dist-es/commands/AddProfileKeyCommand.js +3 -3
- package/dist-es/commands/CreateDomainCommand.js +3 -3
- package/dist-es/commands/CreateIntegrationWorkflowCommand.js +3 -3
- package/dist-es/commands/CreateProfileCommand.js +3 -3
- package/dist-es/commands/DeleteDomainCommand.js +3 -3
- package/dist-es/commands/DeleteIntegrationCommand.js +3 -3
- package/dist-es/commands/DeleteProfileCommand.js +3 -3
- package/dist-es/commands/DeleteProfileKeyCommand.js +3 -3
- package/dist-es/commands/DeleteProfileObjectCommand.js +3 -3
- package/dist-es/commands/DeleteProfileObjectTypeCommand.js +3 -3
- package/dist-es/commands/DeleteWorkflowCommand.js +3 -3
- package/dist-es/commands/GetAutoMergingPreviewCommand.js +3 -3
- package/dist-es/commands/GetDomainCommand.js +3 -3
- package/dist-es/commands/GetIdentityResolutionJobCommand.js +3 -3
- package/dist-es/commands/GetIntegrationCommand.js +3 -3
- package/dist-es/commands/GetMatchesCommand.js +3 -3
- package/dist-es/commands/GetProfileObjectTypeCommand.js +3 -3
- package/dist-es/commands/GetProfileObjectTypeTemplateCommand.js +3 -3
- package/dist-es/commands/GetWorkflowCommand.js +3 -3
- package/dist-es/commands/GetWorkflowStepsCommand.js +3 -3
- package/dist-es/commands/ListAccountIntegrationsCommand.js +3 -3
- package/dist-es/commands/ListDomainsCommand.js +3 -3
- package/dist-es/commands/ListIdentityResolutionJobsCommand.js +3 -3
- package/dist-es/commands/ListIntegrationsCommand.js +3 -3
- package/dist-es/commands/ListProfileObjectTypeTemplatesCommand.js +3 -3
- package/dist-es/commands/ListProfileObjectTypesCommand.js +3 -3
- package/dist-es/commands/ListProfileObjectsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/ListWorkflowsCommand.js +3 -3
- package/dist-es/commands/MergeProfilesCommand.js +3 -3
- package/dist-es/commands/PutIntegrationCommand.js +3 -3
- package/dist-es/commands/PutProfileObjectCommand.js +3 -3
- package/dist-es/commands/PutProfileObjectTypeCommand.js +3 -3
- package/dist-es/commands/SearchProfilesCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateDomainCommand.js +3 -3
- package/dist-es/commands/UpdateProfileCommand.js +3 -3
- package/dist-es/models/models_0.js +126 -504
- package/dist-types/models/models_0.d.ts +504 -756
- package/dist-types/ts3.4/models/models_0.d.ts +252 -504
- package/package.json +7 -7
|
@@ -18,20 +18,12 @@ export interface AddProfileKeyRequest {
|
|
|
18
18
|
|
|
19
19
|
DomainName: string | undefined;
|
|
20
20
|
}
|
|
21
|
-
export declare namespace AddProfileKeyRequest {
|
|
22
|
-
|
|
23
|
-
const filterSensitiveLog: (obj: AddProfileKeyRequest) => any;
|
|
24
|
-
}
|
|
25
21
|
export interface AddProfileKeyResponse {
|
|
26
22
|
|
|
27
23
|
KeyName?: string;
|
|
28
24
|
|
|
29
25
|
Values?: string[];
|
|
30
26
|
}
|
|
31
|
-
export declare namespace AddProfileKeyResponse {
|
|
32
|
-
|
|
33
|
-
const filterSensitiveLog: (obj: AddProfileKeyResponse) => any;
|
|
34
|
-
}
|
|
35
27
|
|
|
36
28
|
export declare class BadRequestException extends __BaseException {
|
|
37
29
|
readonly name: "BadRequestException";
|
|
@@ -87,10 +79,6 @@ export interface Address {
|
|
|
87
79
|
|
|
88
80
|
PostalCode?: string;
|
|
89
81
|
}
|
|
90
|
-
export declare namespace Address {
|
|
91
|
-
|
|
92
|
-
const filterSensitiveLog: (obj: Address) => any;
|
|
93
|
-
}
|
|
94
82
|
|
|
95
83
|
export interface Batch {
|
|
96
84
|
|
|
@@ -98,10 +86,6 @@ export interface Batch {
|
|
|
98
86
|
|
|
99
87
|
EndTime: Date | undefined;
|
|
100
88
|
}
|
|
101
|
-
export declare namespace Batch {
|
|
102
|
-
|
|
103
|
-
const filterSensitiveLog: (obj: Batch) => any;
|
|
104
|
-
}
|
|
105
89
|
export declare enum SourceConnectorType {
|
|
106
90
|
MARKETO = "Marketo",
|
|
107
91
|
S3 = "S3",
|
|
@@ -114,19 +98,11 @@ export interface IncrementalPullConfig {
|
|
|
114
98
|
|
|
115
99
|
DatetimeTypeFieldName?: string;
|
|
116
100
|
}
|
|
117
|
-
export declare namespace IncrementalPullConfig {
|
|
118
|
-
|
|
119
|
-
const filterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
120
|
-
}
|
|
121
101
|
|
|
122
102
|
export interface MarketoSourceProperties {
|
|
123
103
|
|
|
124
104
|
Object: string | undefined;
|
|
125
105
|
}
|
|
126
|
-
export declare namespace MarketoSourceProperties {
|
|
127
|
-
|
|
128
|
-
const filterSensitiveLog: (obj: MarketoSourceProperties) => any;
|
|
129
|
-
}
|
|
130
106
|
|
|
131
107
|
export interface S3SourceProperties {
|
|
132
108
|
|
|
@@ -134,10 +110,6 @@ export interface S3SourceProperties {
|
|
|
134
110
|
|
|
135
111
|
BucketPrefix?: string;
|
|
136
112
|
}
|
|
137
|
-
export declare namespace S3SourceProperties {
|
|
138
|
-
|
|
139
|
-
const filterSensitiveLog: (obj: S3SourceProperties) => any;
|
|
140
|
-
}
|
|
141
113
|
|
|
142
114
|
export interface SalesforceSourceProperties {
|
|
143
115
|
|
|
@@ -147,28 +119,16 @@ export interface SalesforceSourceProperties {
|
|
|
147
119
|
|
|
148
120
|
IncludeDeletedRecords?: boolean;
|
|
149
121
|
}
|
|
150
|
-
export declare namespace SalesforceSourceProperties {
|
|
151
|
-
|
|
152
|
-
const filterSensitiveLog: (obj: SalesforceSourceProperties) => any;
|
|
153
|
-
}
|
|
154
122
|
|
|
155
123
|
export interface ServiceNowSourceProperties {
|
|
156
124
|
|
|
157
125
|
Object: string | undefined;
|
|
158
126
|
}
|
|
159
|
-
export declare namespace ServiceNowSourceProperties {
|
|
160
|
-
|
|
161
|
-
const filterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
|
|
162
|
-
}
|
|
163
127
|
|
|
164
128
|
export interface ZendeskSourceProperties {
|
|
165
129
|
|
|
166
130
|
Object: string | undefined;
|
|
167
131
|
}
|
|
168
|
-
export declare namespace ZendeskSourceProperties {
|
|
169
|
-
|
|
170
|
-
const filterSensitiveLog: (obj: ZendeskSourceProperties) => any;
|
|
171
|
-
}
|
|
172
132
|
|
|
173
133
|
export interface SourceConnectorProperties {
|
|
174
134
|
|
|
@@ -182,10 +142,6 @@ export interface SourceConnectorProperties {
|
|
|
182
142
|
|
|
183
143
|
Zendesk?: ZendeskSourceProperties;
|
|
184
144
|
}
|
|
185
|
-
export declare namespace SourceConnectorProperties {
|
|
186
|
-
|
|
187
|
-
const filterSensitiveLog: (obj: SourceConnectorProperties) => any;
|
|
188
|
-
}
|
|
189
145
|
|
|
190
146
|
export interface SourceFlowConfig {
|
|
191
147
|
|
|
@@ -197,10 +153,6 @@ export interface SourceFlowConfig {
|
|
|
197
153
|
|
|
198
154
|
SourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
199
155
|
}
|
|
200
|
-
export declare namespace SourceFlowConfig {
|
|
201
|
-
|
|
202
|
-
const filterSensitiveLog: (obj: SourceFlowConfig) => any;
|
|
203
|
-
}
|
|
204
156
|
export declare enum MarketoConnectorOperator {
|
|
205
157
|
ADDITION = "ADDITION",
|
|
206
158
|
BETWEEN = "BETWEEN",
|
|
@@ -316,10 +268,6 @@ export interface ConnectorOperator {
|
|
|
316
268
|
|
|
317
269
|
Zendesk?: ZendeskConnectorOperator | string;
|
|
318
270
|
}
|
|
319
|
-
export declare namespace ConnectorOperator {
|
|
320
|
-
|
|
321
|
-
const filterSensitiveLog: (obj: ConnectorOperator) => any;
|
|
322
|
-
}
|
|
323
271
|
export declare enum OperatorPropertiesKeys {
|
|
324
272
|
CONCAT_FORMAT = "CONCAT_FORMAT",
|
|
325
273
|
DATA_TYPE = "DATA_TYPE",
|
|
@@ -358,10 +306,6 @@ export interface Task {
|
|
|
358
306
|
|
|
359
307
|
TaskType: TaskType | string | undefined;
|
|
360
308
|
}
|
|
361
|
-
export declare namespace Task {
|
|
362
|
-
|
|
363
|
-
const filterSensitiveLog: (obj: Task) => any;
|
|
364
|
-
}
|
|
365
309
|
export declare enum DataPullMode {
|
|
366
310
|
COMPLETE = "Complete",
|
|
367
311
|
INCREMENTAL = "Incremental"
|
|
@@ -383,19 +327,11 @@ export interface ScheduledTriggerProperties {
|
|
|
383
327
|
|
|
384
328
|
FirstExecutionFrom?: Date;
|
|
385
329
|
}
|
|
386
|
-
export declare namespace ScheduledTriggerProperties {
|
|
387
|
-
|
|
388
|
-
const filterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
|
|
389
|
-
}
|
|
390
330
|
|
|
391
331
|
export interface TriggerProperties {
|
|
392
332
|
|
|
393
333
|
Scheduled?: ScheduledTriggerProperties;
|
|
394
334
|
}
|
|
395
|
-
export declare namespace TriggerProperties {
|
|
396
|
-
|
|
397
|
-
const filterSensitiveLog: (obj: TriggerProperties) => any;
|
|
398
|
-
}
|
|
399
335
|
export declare enum TriggerType {
|
|
400
336
|
EVENT = "Event",
|
|
401
337
|
ONDEMAND = "OnDemand",
|
|
@@ -408,10 +344,6 @@ export interface TriggerConfig {
|
|
|
408
344
|
|
|
409
345
|
TriggerProperties?: TriggerProperties;
|
|
410
346
|
}
|
|
411
|
-
export declare namespace TriggerConfig {
|
|
412
|
-
|
|
413
|
-
const filterSensitiveLog: (obj: TriggerConfig) => any;
|
|
414
|
-
}
|
|
415
347
|
|
|
416
348
|
export interface FlowDefinition {
|
|
417
349
|
|
|
@@ -427,10 +359,6 @@ export interface FlowDefinition {
|
|
|
427
359
|
|
|
428
360
|
TriggerConfig: TriggerConfig | undefined;
|
|
429
361
|
}
|
|
430
|
-
export declare namespace FlowDefinition {
|
|
431
|
-
|
|
432
|
-
const filterSensitiveLog: (obj: FlowDefinition) => any;
|
|
433
|
-
}
|
|
434
362
|
|
|
435
363
|
export interface AppflowIntegration {
|
|
436
364
|
|
|
@@ -438,10 +366,6 @@ export interface AppflowIntegration {
|
|
|
438
366
|
|
|
439
367
|
Batches?: Batch[];
|
|
440
368
|
}
|
|
441
|
-
export declare namespace AppflowIntegration {
|
|
442
|
-
|
|
443
|
-
const filterSensitiveLog: (obj: AppflowIntegration) => any;
|
|
444
|
-
}
|
|
445
369
|
|
|
446
370
|
export interface AppflowIntegrationWorkflowAttributes {
|
|
447
371
|
|
|
@@ -451,10 +375,6 @@ export interface AppflowIntegrationWorkflowAttributes {
|
|
|
451
375
|
|
|
452
376
|
RoleArn?: string;
|
|
453
377
|
}
|
|
454
|
-
export declare namespace AppflowIntegrationWorkflowAttributes {
|
|
455
|
-
|
|
456
|
-
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowAttributes) => any;
|
|
457
|
-
}
|
|
458
378
|
|
|
459
379
|
export interface AppflowIntegrationWorkflowMetrics {
|
|
460
380
|
|
|
@@ -464,10 +384,6 @@ export interface AppflowIntegrationWorkflowMetrics {
|
|
|
464
384
|
|
|
465
385
|
TotalSteps: number | undefined;
|
|
466
386
|
}
|
|
467
|
-
export declare namespace AppflowIntegrationWorkflowMetrics {
|
|
468
|
-
|
|
469
|
-
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowMetrics) => any;
|
|
470
|
-
}
|
|
471
387
|
export declare enum Status {
|
|
472
388
|
CANCELLED = "CANCELLED",
|
|
473
389
|
COMPLETE = "COMPLETE",
|
|
@@ -496,10 +412,6 @@ export interface AppflowIntegrationWorkflowStep {
|
|
|
496
412
|
|
|
497
413
|
LastUpdatedAt: Date | undefined;
|
|
498
414
|
}
|
|
499
|
-
export declare namespace AppflowIntegrationWorkflowStep {
|
|
500
|
-
|
|
501
|
-
const filterSensitiveLog: (obj: AppflowIntegrationWorkflowStep) => any;
|
|
502
|
-
}
|
|
503
415
|
export declare enum ConflictResolvingModel {
|
|
504
416
|
RECENCY = "RECENCY",
|
|
505
417
|
SOURCE = "SOURCE"
|
|
@@ -511,19 +423,11 @@ export interface ConflictResolution {
|
|
|
511
423
|
|
|
512
424
|
SourceName?: string;
|
|
513
425
|
}
|
|
514
|
-
export declare namespace ConflictResolution {
|
|
515
|
-
|
|
516
|
-
const filterSensitiveLog: (obj: ConflictResolution) => any;
|
|
517
|
-
}
|
|
518
426
|
|
|
519
427
|
export interface Consolidation {
|
|
520
428
|
|
|
521
429
|
MatchingAttributesList: string[][] | undefined;
|
|
522
430
|
}
|
|
523
|
-
export declare namespace Consolidation {
|
|
524
|
-
|
|
525
|
-
const filterSensitiveLog: (obj: Consolidation) => any;
|
|
526
|
-
}
|
|
527
431
|
|
|
528
432
|
export interface AutoMerging {
|
|
529
433
|
|
|
@@ -535,10 +439,6 @@ export interface AutoMerging {
|
|
|
535
439
|
|
|
536
440
|
MinAllowedConfidenceScoreForMerging?: number;
|
|
537
441
|
}
|
|
538
|
-
export declare namespace AutoMerging {
|
|
539
|
-
|
|
540
|
-
const filterSensitiveLog: (obj: AutoMerging) => any;
|
|
541
|
-
}
|
|
542
442
|
|
|
543
443
|
export interface S3ExportingConfig {
|
|
544
444
|
|
|
@@ -546,19 +446,11 @@ export interface S3ExportingConfig {
|
|
|
546
446
|
|
|
547
447
|
S3KeyName?: string;
|
|
548
448
|
}
|
|
549
|
-
export declare namespace S3ExportingConfig {
|
|
550
|
-
|
|
551
|
-
const filterSensitiveLog: (obj: S3ExportingConfig) => any;
|
|
552
|
-
}
|
|
553
449
|
|
|
554
450
|
export interface ExportingConfig {
|
|
555
451
|
|
|
556
452
|
S3Exporting?: S3ExportingConfig;
|
|
557
453
|
}
|
|
558
|
-
export declare namespace ExportingConfig {
|
|
559
|
-
|
|
560
|
-
const filterSensitiveLog: (obj: ExportingConfig) => any;
|
|
561
|
-
}
|
|
562
454
|
export declare enum JobScheduleDayOfTheWeek {
|
|
563
455
|
FRIDAY = "FRIDAY",
|
|
564
456
|
MONDAY = "MONDAY",
|
|
@@ -575,10 +467,6 @@ export interface JobSchedule {
|
|
|
575
467
|
|
|
576
468
|
Time: string | undefined;
|
|
577
469
|
}
|
|
578
|
-
export declare namespace JobSchedule {
|
|
579
|
-
|
|
580
|
-
const filterSensitiveLog: (obj: JobSchedule) => any;
|
|
581
|
-
}
|
|
582
470
|
|
|
583
471
|
export interface MatchingRequest {
|
|
584
472
|
|
|
@@ -590,10 +478,6 @@ export interface MatchingRequest {
|
|
|
590
478
|
|
|
591
479
|
ExportingConfig?: ExportingConfig;
|
|
592
480
|
}
|
|
593
|
-
export declare namespace MatchingRequest {
|
|
594
|
-
|
|
595
|
-
const filterSensitiveLog: (obj: MatchingRequest) => any;
|
|
596
|
-
}
|
|
597
481
|
export interface CreateDomainRequest {
|
|
598
482
|
|
|
599
483
|
DomainName: string | undefined;
|
|
@@ -608,10 +492,6 @@ export interface CreateDomainRequest {
|
|
|
608
492
|
|
|
609
493
|
Tags?: Record<string, string>;
|
|
610
494
|
}
|
|
611
|
-
export declare namespace CreateDomainRequest {
|
|
612
|
-
|
|
613
|
-
const filterSensitiveLog: (obj: CreateDomainRequest) => any;
|
|
614
|
-
}
|
|
615
495
|
|
|
616
496
|
export interface MatchingResponse {
|
|
617
497
|
|
|
@@ -623,10 +503,6 @@ export interface MatchingResponse {
|
|
|
623
503
|
|
|
624
504
|
ExportingConfig?: ExportingConfig;
|
|
625
505
|
}
|
|
626
|
-
export declare namespace MatchingResponse {
|
|
627
|
-
|
|
628
|
-
const filterSensitiveLog: (obj: MatchingResponse) => any;
|
|
629
|
-
}
|
|
630
506
|
export interface CreateDomainResponse {
|
|
631
507
|
|
|
632
508
|
DomainName: string | undefined;
|
|
@@ -645,19 +521,11 @@ export interface CreateDomainResponse {
|
|
|
645
521
|
|
|
646
522
|
Tags?: Record<string, string>;
|
|
647
523
|
}
|
|
648
|
-
export declare namespace CreateDomainResponse {
|
|
649
|
-
|
|
650
|
-
const filterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
651
|
-
}
|
|
652
524
|
|
|
653
525
|
export interface IntegrationConfig {
|
|
654
526
|
|
|
655
527
|
AppflowIntegration?: AppflowIntegration;
|
|
656
528
|
}
|
|
657
|
-
export declare namespace IntegrationConfig {
|
|
658
|
-
|
|
659
|
-
const filterSensitiveLog: (obj: IntegrationConfig) => any;
|
|
660
|
-
}
|
|
661
529
|
export declare enum WorkflowType {
|
|
662
530
|
APPFLOW_INTEGRATION = "APPFLOW_INTEGRATION"
|
|
663
531
|
}
|
|
@@ -675,20 +543,12 @@ export interface CreateIntegrationWorkflowRequest {
|
|
|
675
543
|
|
|
676
544
|
Tags?: Record<string, string>;
|
|
677
545
|
}
|
|
678
|
-
export declare namespace CreateIntegrationWorkflowRequest {
|
|
679
|
-
|
|
680
|
-
const filterSensitiveLog: (obj: CreateIntegrationWorkflowRequest) => any;
|
|
681
|
-
}
|
|
682
546
|
export interface CreateIntegrationWorkflowResponse {
|
|
683
547
|
|
|
684
548
|
WorkflowId: string | undefined;
|
|
685
549
|
|
|
686
550
|
Message: string | undefined;
|
|
687
551
|
}
|
|
688
|
-
export declare namespace CreateIntegrationWorkflowResponse {
|
|
689
|
-
|
|
690
|
-
const filterSensitiveLog: (obj: CreateIntegrationWorkflowResponse) => any;
|
|
691
|
-
}
|
|
692
552
|
export declare enum Gender {
|
|
693
553
|
FEMALE = "FEMALE",
|
|
694
554
|
MALE = "MALE",
|
|
@@ -745,70 +605,38 @@ export interface CreateProfileRequest {
|
|
|
745
605
|
|
|
746
606
|
Attributes?: Record<string, string>;
|
|
747
607
|
}
|
|
748
|
-
export declare namespace CreateProfileRequest {
|
|
749
|
-
|
|
750
|
-
const filterSensitiveLog: (obj: CreateProfileRequest) => any;
|
|
751
|
-
}
|
|
752
608
|
export interface CreateProfileResponse {
|
|
753
609
|
|
|
754
610
|
ProfileId: string | undefined;
|
|
755
611
|
}
|
|
756
|
-
export declare namespace CreateProfileResponse {
|
|
757
|
-
|
|
758
|
-
const filterSensitiveLog: (obj: CreateProfileResponse) => any;
|
|
759
|
-
}
|
|
760
612
|
export interface DeleteDomainRequest {
|
|
761
613
|
|
|
762
614
|
DomainName: string | undefined;
|
|
763
615
|
}
|
|
764
|
-
export declare namespace DeleteDomainRequest {
|
|
765
|
-
|
|
766
|
-
const filterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
767
|
-
}
|
|
768
616
|
export interface DeleteDomainResponse {
|
|
769
617
|
|
|
770
618
|
Message: string | undefined;
|
|
771
619
|
}
|
|
772
|
-
export declare namespace DeleteDomainResponse {
|
|
773
|
-
|
|
774
|
-
const filterSensitiveLog: (obj: DeleteDomainResponse) => any;
|
|
775
|
-
}
|
|
776
620
|
export interface DeleteIntegrationRequest {
|
|
777
621
|
|
|
778
622
|
DomainName: string | undefined;
|
|
779
623
|
|
|
780
624
|
Uri: string | undefined;
|
|
781
625
|
}
|
|
782
|
-
export declare namespace DeleteIntegrationRequest {
|
|
783
|
-
|
|
784
|
-
const filterSensitiveLog: (obj: DeleteIntegrationRequest) => any;
|
|
785
|
-
}
|
|
786
626
|
export interface DeleteIntegrationResponse {
|
|
787
627
|
|
|
788
628
|
Message: string | undefined;
|
|
789
629
|
}
|
|
790
|
-
export declare namespace DeleteIntegrationResponse {
|
|
791
|
-
|
|
792
|
-
const filterSensitiveLog: (obj: DeleteIntegrationResponse) => any;
|
|
793
|
-
}
|
|
794
630
|
export interface DeleteProfileRequest {
|
|
795
631
|
|
|
796
632
|
ProfileId: string | undefined;
|
|
797
633
|
|
|
798
634
|
DomainName: string | undefined;
|
|
799
635
|
}
|
|
800
|
-
export declare namespace DeleteProfileRequest {
|
|
801
|
-
|
|
802
|
-
const filterSensitiveLog: (obj: DeleteProfileRequest) => any;
|
|
803
|
-
}
|
|
804
636
|
export interface DeleteProfileResponse {
|
|
805
637
|
|
|
806
638
|
Message?: string;
|
|
807
639
|
}
|
|
808
|
-
export declare namespace DeleteProfileResponse {
|
|
809
|
-
|
|
810
|
-
const filterSensitiveLog: (obj: DeleteProfileResponse) => any;
|
|
811
|
-
}
|
|
812
640
|
export interface DeleteProfileKeyRequest {
|
|
813
641
|
|
|
814
642
|
ProfileId: string | undefined;
|
|
@@ -819,18 +647,10 @@ export interface DeleteProfileKeyRequest {
|
|
|
819
647
|
|
|
820
648
|
DomainName: string | undefined;
|
|
821
649
|
}
|
|
822
|
-
export declare namespace DeleteProfileKeyRequest {
|
|
823
|
-
|
|
824
|
-
const filterSensitiveLog: (obj: DeleteProfileKeyRequest) => any;
|
|
825
|
-
}
|
|
826
650
|
export interface DeleteProfileKeyResponse {
|
|
827
651
|
|
|
828
652
|
Message?: string;
|
|
829
653
|
}
|
|
830
|
-
export declare namespace DeleteProfileKeyResponse {
|
|
831
|
-
|
|
832
|
-
const filterSensitiveLog: (obj: DeleteProfileKeyResponse) => any;
|
|
833
|
-
}
|
|
834
654
|
export interface DeleteProfileObjectRequest {
|
|
835
655
|
|
|
836
656
|
ProfileId: string | undefined;
|
|
@@ -841,52 +661,28 @@ export interface DeleteProfileObjectRequest {
|
|
|
841
661
|
|
|
842
662
|
DomainName: string | undefined;
|
|
843
663
|
}
|
|
844
|
-
export declare namespace DeleteProfileObjectRequest {
|
|
845
|
-
|
|
846
|
-
const filterSensitiveLog: (obj: DeleteProfileObjectRequest) => any;
|
|
847
|
-
}
|
|
848
664
|
export interface DeleteProfileObjectResponse {
|
|
849
665
|
|
|
850
666
|
Message?: string;
|
|
851
667
|
}
|
|
852
|
-
export declare namespace DeleteProfileObjectResponse {
|
|
853
|
-
|
|
854
|
-
const filterSensitiveLog: (obj: DeleteProfileObjectResponse) => any;
|
|
855
|
-
}
|
|
856
668
|
export interface DeleteProfileObjectTypeRequest {
|
|
857
669
|
|
|
858
670
|
DomainName: string | undefined;
|
|
859
671
|
|
|
860
672
|
ObjectTypeName: string | undefined;
|
|
861
673
|
}
|
|
862
|
-
export declare namespace DeleteProfileObjectTypeRequest {
|
|
863
|
-
|
|
864
|
-
const filterSensitiveLog: (obj: DeleteProfileObjectTypeRequest) => any;
|
|
865
|
-
}
|
|
866
674
|
export interface DeleteProfileObjectTypeResponse {
|
|
867
675
|
|
|
868
676
|
Message: string | undefined;
|
|
869
677
|
}
|
|
870
|
-
export declare namespace DeleteProfileObjectTypeResponse {
|
|
871
|
-
|
|
872
|
-
const filterSensitiveLog: (obj: DeleteProfileObjectTypeResponse) => any;
|
|
873
|
-
}
|
|
874
678
|
export interface DeleteWorkflowRequest {
|
|
875
679
|
|
|
876
680
|
DomainName: string | undefined;
|
|
877
681
|
|
|
878
682
|
WorkflowId: string | undefined;
|
|
879
683
|
}
|
|
880
|
-
export declare namespace DeleteWorkflowRequest {
|
|
881
|
-
|
|
882
|
-
const filterSensitiveLog: (obj: DeleteWorkflowRequest) => any;
|
|
883
|
-
}
|
|
884
684
|
export interface DeleteWorkflowResponse {
|
|
885
685
|
}
|
|
886
|
-
export declare namespace DeleteWorkflowResponse {
|
|
887
|
-
|
|
888
|
-
const filterSensitiveLog: (obj: DeleteWorkflowResponse) => any;
|
|
889
|
-
}
|
|
890
686
|
export interface GetAutoMergingPreviewRequest {
|
|
891
687
|
|
|
892
688
|
DomainName: string | undefined;
|
|
@@ -897,10 +693,6 @@ export interface GetAutoMergingPreviewRequest {
|
|
|
897
693
|
|
|
898
694
|
MinAllowedConfidenceScoreForMerging?: number;
|
|
899
695
|
}
|
|
900
|
-
export declare namespace GetAutoMergingPreviewRequest {
|
|
901
|
-
|
|
902
|
-
const filterSensitiveLog: (obj: GetAutoMergingPreviewRequest) => any;
|
|
903
|
-
}
|
|
904
696
|
export interface GetAutoMergingPreviewResponse {
|
|
905
697
|
|
|
906
698
|
DomainName: string | undefined;
|
|
@@ -911,18 +703,10 @@ export interface GetAutoMergingPreviewResponse {
|
|
|
911
703
|
|
|
912
704
|
NumberOfProfilesWillBeMerged?: number;
|
|
913
705
|
}
|
|
914
|
-
export declare namespace GetAutoMergingPreviewResponse {
|
|
915
|
-
|
|
916
|
-
const filterSensitiveLog: (obj: GetAutoMergingPreviewResponse) => any;
|
|
917
|
-
}
|
|
918
706
|
export interface GetDomainRequest {
|
|
919
707
|
|
|
920
708
|
DomainName: string | undefined;
|
|
921
709
|
}
|
|
922
|
-
export declare namespace GetDomainRequest {
|
|
923
|
-
|
|
924
|
-
const filterSensitiveLog: (obj: GetDomainRequest) => any;
|
|
925
|
-
}
|
|
926
710
|
|
|
927
711
|
export interface DomainStats {
|
|
928
712
|
|
|
@@ -934,10 +718,6 @@ export interface DomainStats {
|
|
|
934
718
|
|
|
935
719
|
TotalSize?: number;
|
|
936
720
|
}
|
|
937
|
-
export declare namespace DomainStats {
|
|
938
|
-
|
|
939
|
-
const filterSensitiveLog: (obj: DomainStats) => any;
|
|
940
|
-
}
|
|
941
721
|
export interface GetDomainResponse {
|
|
942
722
|
|
|
943
723
|
DomainName: string | undefined;
|
|
@@ -958,20 +738,12 @@ export interface GetDomainResponse {
|
|
|
958
738
|
|
|
959
739
|
Tags?: Record<string, string>;
|
|
960
740
|
}
|
|
961
|
-
export declare namespace GetDomainResponse {
|
|
962
|
-
|
|
963
|
-
const filterSensitiveLog: (obj: GetDomainResponse) => any;
|
|
964
|
-
}
|
|
965
741
|
export interface GetIdentityResolutionJobRequest {
|
|
966
742
|
|
|
967
743
|
DomainName: string | undefined;
|
|
968
744
|
|
|
969
745
|
JobId: string | undefined;
|
|
970
746
|
}
|
|
971
|
-
export declare namespace GetIdentityResolutionJobRequest {
|
|
972
|
-
|
|
973
|
-
const filterSensitiveLog: (obj: GetIdentityResolutionJobRequest) => any;
|
|
974
|
-
}
|
|
975
747
|
|
|
976
748
|
export interface S3ExportingLocation {
|
|
977
749
|
|
|
@@ -979,19 +751,11 @@ export interface S3ExportingLocation {
|
|
|
979
751
|
|
|
980
752
|
S3KeyName?: string;
|
|
981
753
|
}
|
|
982
|
-
export declare namespace S3ExportingLocation {
|
|
983
|
-
|
|
984
|
-
const filterSensitiveLog: (obj: S3ExportingLocation) => any;
|
|
985
|
-
}
|
|
986
754
|
|
|
987
755
|
export interface ExportingLocation {
|
|
988
756
|
|
|
989
757
|
S3Exporting?: S3ExportingLocation;
|
|
990
758
|
}
|
|
991
|
-
export declare namespace ExportingLocation {
|
|
992
|
-
|
|
993
|
-
const filterSensitiveLog: (obj: ExportingLocation) => any;
|
|
994
|
-
}
|
|
995
759
|
|
|
996
760
|
export interface JobStats {
|
|
997
761
|
|
|
@@ -1001,10 +765,6 @@ export interface JobStats {
|
|
|
1001
765
|
|
|
1002
766
|
NumberOfMergesDone?: number;
|
|
1003
767
|
}
|
|
1004
|
-
export declare namespace JobStats {
|
|
1005
|
-
|
|
1006
|
-
const filterSensitiveLog: (obj: JobStats) => any;
|
|
1007
|
-
}
|
|
1008
768
|
export declare enum IdentityResolutionJobStatus {
|
|
1009
769
|
COMPLETED = "COMPLETED",
|
|
1010
770
|
FAILED = "FAILED",
|
|
@@ -1038,20 +798,12 @@ export interface GetIdentityResolutionJobResponse {
|
|
|
1038
798
|
|
|
1039
799
|
JobStats?: JobStats;
|
|
1040
800
|
}
|
|
1041
|
-
export declare namespace GetIdentityResolutionJobResponse {
|
|
1042
|
-
|
|
1043
|
-
const filterSensitiveLog: (obj: GetIdentityResolutionJobResponse) => any;
|
|
1044
|
-
}
|
|
1045
801
|
export interface GetIntegrationRequest {
|
|
1046
802
|
|
|
1047
803
|
DomainName: string | undefined;
|
|
1048
804
|
|
|
1049
805
|
Uri: string | undefined;
|
|
1050
806
|
}
|
|
1051
|
-
export declare namespace GetIntegrationRequest {
|
|
1052
|
-
|
|
1053
|
-
const filterSensitiveLog: (obj: GetIntegrationRequest) => any;
|
|
1054
|
-
}
|
|
1055
807
|
export interface GetIntegrationResponse {
|
|
1056
808
|
|
|
1057
809
|
DomainName: string | undefined;
|
|
@@ -1070,10 +822,6 @@ export interface GetIntegrationResponse {
|
|
|
1070
822
|
|
|
1071
823
|
WorkflowId?: string;
|
|
1072
824
|
}
|
|
1073
|
-
export declare namespace GetIntegrationResponse {
|
|
1074
|
-
|
|
1075
|
-
const filterSensitiveLog: (obj: GetIntegrationResponse) => any;
|
|
1076
|
-
}
|
|
1077
825
|
export interface GetMatchesRequest {
|
|
1078
826
|
|
|
1079
827
|
NextToken?: string;
|
|
@@ -1082,10 +830,6 @@ export interface GetMatchesRequest {
|
|
|
1082
830
|
|
|
1083
831
|
DomainName: string | undefined;
|
|
1084
832
|
}
|
|
1085
|
-
export declare namespace GetMatchesRequest {
|
|
1086
|
-
|
|
1087
|
-
const filterSensitiveLog: (obj: GetMatchesRequest) => any;
|
|
1088
|
-
}
|
|
1089
833
|
|
|
1090
834
|
export interface MatchItem {
|
|
1091
835
|
|
|
@@ -1095,10 +839,6 @@ export interface MatchItem {
|
|
|
1095
839
|
|
|
1096
840
|
ConfidenceScore?: number;
|
|
1097
841
|
}
|
|
1098
|
-
export declare namespace MatchItem {
|
|
1099
|
-
|
|
1100
|
-
const filterSensitiveLog: (obj: MatchItem) => any;
|
|
1101
|
-
}
|
|
1102
842
|
export interface GetMatchesResponse {
|
|
1103
843
|
|
|
1104
844
|
NextToken?: string;
|
|
@@ -1109,20 +849,12 @@ export interface GetMatchesResponse {
|
|
|
1109
849
|
|
|
1110
850
|
Matches?: MatchItem[];
|
|
1111
851
|
}
|
|
1112
|
-
export declare namespace GetMatchesResponse {
|
|
1113
|
-
|
|
1114
|
-
const filterSensitiveLog: (obj: GetMatchesResponse) => any;
|
|
1115
|
-
}
|
|
1116
852
|
export interface GetProfileObjectTypeRequest {
|
|
1117
853
|
|
|
1118
854
|
DomainName: string | undefined;
|
|
1119
855
|
|
|
1120
856
|
ObjectTypeName: string | undefined;
|
|
1121
857
|
}
|
|
1122
|
-
export declare namespace GetProfileObjectTypeRequest {
|
|
1123
|
-
|
|
1124
|
-
const filterSensitiveLog: (obj: GetProfileObjectTypeRequest) => any;
|
|
1125
|
-
}
|
|
1126
858
|
export declare enum FieldContentType {
|
|
1127
859
|
EMAIL_ADDRESS = "EMAIL_ADDRESS",
|
|
1128
860
|
NAME = "NAME",
|
|
@@ -1139,10 +871,6 @@ export interface ObjectTypeField {
|
|
|
1139
871
|
|
|
1140
872
|
ContentType?: FieldContentType | string;
|
|
1141
873
|
}
|
|
1142
|
-
export declare namespace ObjectTypeField {
|
|
1143
|
-
|
|
1144
|
-
const filterSensitiveLog: (obj: ObjectTypeField) => any;
|
|
1145
|
-
}
|
|
1146
874
|
export declare enum StandardIdentifier {
|
|
1147
875
|
ASSET = "ASSET",
|
|
1148
876
|
CASE = "CASE",
|
|
@@ -1160,10 +888,6 @@ export interface ObjectTypeKey {
|
|
|
1160
888
|
|
|
1161
889
|
FieldNames?: string[];
|
|
1162
890
|
}
|
|
1163
|
-
export declare namespace ObjectTypeKey {
|
|
1164
|
-
|
|
1165
|
-
const filterSensitiveLog: (obj: ObjectTypeKey) => any;
|
|
1166
|
-
}
|
|
1167
891
|
export interface GetProfileObjectTypeResponse {
|
|
1168
892
|
|
|
1169
893
|
ObjectTypeName: string | undefined;
|
|
@@ -1190,18 +914,10 @@ export interface GetProfileObjectTypeResponse {
|
|
|
1190
914
|
|
|
1191
915
|
Tags?: Record<string, string>;
|
|
1192
916
|
}
|
|
1193
|
-
export declare namespace GetProfileObjectTypeResponse {
|
|
1194
|
-
|
|
1195
|
-
const filterSensitiveLog: (obj: GetProfileObjectTypeResponse) => any;
|
|
1196
|
-
}
|
|
1197
917
|
export interface GetProfileObjectTypeTemplateRequest {
|
|
1198
918
|
|
|
1199
919
|
TemplateId: string | undefined;
|
|
1200
920
|
}
|
|
1201
|
-
export declare namespace GetProfileObjectTypeTemplateRequest {
|
|
1202
|
-
|
|
1203
|
-
const filterSensitiveLog: (obj: GetProfileObjectTypeTemplateRequest) => any;
|
|
1204
|
-
}
|
|
1205
921
|
export interface GetProfileObjectTypeTemplateResponse {
|
|
1206
922
|
|
|
1207
923
|
TemplateId?: string;
|
|
@@ -1218,38 +934,22 @@ export interface GetProfileObjectTypeTemplateResponse {
|
|
|
1218
934
|
|
|
1219
935
|
Keys?: Record<string, ObjectTypeKey[]>;
|
|
1220
936
|
}
|
|
1221
|
-
export declare namespace GetProfileObjectTypeTemplateResponse {
|
|
1222
|
-
|
|
1223
|
-
const filterSensitiveLog: (obj: GetProfileObjectTypeTemplateResponse) => any;
|
|
1224
|
-
}
|
|
1225
937
|
export interface GetWorkflowRequest {
|
|
1226
938
|
|
|
1227
939
|
DomainName: string | undefined;
|
|
1228
940
|
|
|
1229
941
|
WorkflowId: string | undefined;
|
|
1230
942
|
}
|
|
1231
|
-
export declare namespace GetWorkflowRequest {
|
|
1232
|
-
|
|
1233
|
-
const filterSensitiveLog: (obj: GetWorkflowRequest) => any;
|
|
1234
|
-
}
|
|
1235
943
|
|
|
1236
944
|
export interface WorkflowAttributes {
|
|
1237
945
|
|
|
1238
946
|
AppflowIntegration?: AppflowIntegrationWorkflowAttributes;
|
|
1239
947
|
}
|
|
1240
|
-
export declare namespace WorkflowAttributes {
|
|
1241
|
-
|
|
1242
|
-
const filterSensitiveLog: (obj: WorkflowAttributes) => any;
|
|
1243
|
-
}
|
|
1244
948
|
|
|
1245
949
|
export interface WorkflowMetrics {
|
|
1246
950
|
|
|
1247
951
|
AppflowIntegration?: AppflowIntegrationWorkflowMetrics;
|
|
1248
952
|
}
|
|
1249
|
-
export declare namespace WorkflowMetrics {
|
|
1250
|
-
|
|
1251
|
-
const filterSensitiveLog: (obj: WorkflowMetrics) => any;
|
|
1252
|
-
}
|
|
1253
953
|
export interface GetWorkflowResponse {
|
|
1254
954
|
|
|
1255
955
|
WorkflowId?: string;
|
|
@@ -1268,10 +968,6 @@ export interface GetWorkflowResponse {
|
|
|
1268
968
|
|
|
1269
969
|
Metrics?: WorkflowMetrics;
|
|
1270
970
|
}
|
|
1271
|
-
export declare namespace GetWorkflowResponse {
|
|
1272
|
-
|
|
1273
|
-
const filterSensitiveLog: (obj: GetWorkflowResponse) => any;
|
|
1274
|
-
}
|
|
1275
971
|
export interface GetWorkflowStepsRequest {
|
|
1276
972
|
|
|
1277
973
|
DomainName: string | undefined;
|
|
@@ -1282,19 +978,11 @@ export interface GetWorkflowStepsRequest {
|
|
|
1282
978
|
|
|
1283
979
|
MaxResults?: number;
|
|
1284
980
|
}
|
|
1285
|
-
export declare namespace GetWorkflowStepsRequest {
|
|
1286
|
-
|
|
1287
|
-
const filterSensitiveLog: (obj: GetWorkflowStepsRequest) => any;
|
|
1288
|
-
}
|
|
1289
981
|
|
|
1290
982
|
export interface WorkflowStepItem {
|
|
1291
983
|
|
|
1292
984
|
AppflowIntegration?: AppflowIntegrationWorkflowStep;
|
|
1293
985
|
}
|
|
1294
|
-
export declare namespace WorkflowStepItem {
|
|
1295
|
-
|
|
1296
|
-
const filterSensitiveLog: (obj: WorkflowStepItem) => any;
|
|
1297
|
-
}
|
|
1298
986
|
export interface GetWorkflowStepsResponse {
|
|
1299
987
|
|
|
1300
988
|
WorkflowId?: string;
|
|
@@ -1305,10 +993,6 @@ export interface GetWorkflowStepsResponse {
|
|
|
1305
993
|
|
|
1306
994
|
NextToken?: string;
|
|
1307
995
|
}
|
|
1308
|
-
export declare namespace GetWorkflowStepsResponse {
|
|
1309
|
-
|
|
1310
|
-
const filterSensitiveLog: (obj: GetWorkflowStepsResponse) => any;
|
|
1311
|
-
}
|
|
1312
996
|
export interface ListAccountIntegrationsRequest {
|
|
1313
997
|
|
|
1314
998
|
Uri: string | undefined;
|
|
@@ -1319,10 +1003,6 @@ export interface ListAccountIntegrationsRequest {
|
|
|
1319
1003
|
|
|
1320
1004
|
IncludeHidden?: boolean;
|
|
1321
1005
|
}
|
|
1322
|
-
export declare namespace ListAccountIntegrationsRequest {
|
|
1323
|
-
|
|
1324
|
-
const filterSensitiveLog: (obj: ListAccountIntegrationsRequest) => any;
|
|
1325
|
-
}
|
|
1326
1006
|
|
|
1327
1007
|
export interface ListIntegrationItem {
|
|
1328
1008
|
|
|
@@ -1342,30 +1022,18 @@ export interface ListIntegrationItem {
|
|
|
1342
1022
|
|
|
1343
1023
|
WorkflowId?: string;
|
|
1344
1024
|
}
|
|
1345
|
-
export declare namespace ListIntegrationItem {
|
|
1346
|
-
|
|
1347
|
-
const filterSensitiveLog: (obj: ListIntegrationItem) => any;
|
|
1348
|
-
}
|
|
1349
1025
|
export interface ListAccountIntegrationsResponse {
|
|
1350
1026
|
|
|
1351
1027
|
Items?: ListIntegrationItem[];
|
|
1352
1028
|
|
|
1353
1029
|
NextToken?: string;
|
|
1354
1030
|
}
|
|
1355
|
-
export declare namespace ListAccountIntegrationsResponse {
|
|
1356
|
-
|
|
1357
|
-
const filterSensitiveLog: (obj: ListAccountIntegrationsResponse) => any;
|
|
1358
|
-
}
|
|
1359
1031
|
export interface ListDomainsRequest {
|
|
1360
1032
|
|
|
1361
1033
|
NextToken?: string;
|
|
1362
1034
|
|
|
1363
1035
|
MaxResults?: number;
|
|
1364
1036
|
}
|
|
1365
|
-
export declare namespace ListDomainsRequest {
|
|
1366
|
-
|
|
1367
|
-
const filterSensitiveLog: (obj: ListDomainsRequest) => any;
|
|
1368
|
-
}
|
|
1369
1037
|
|
|
1370
1038
|
export interface ListDomainItem {
|
|
1371
1039
|
|
|
@@ -1377,20 +1045,12 @@ export interface ListDomainItem {
|
|
|
1377
1045
|
|
|
1378
1046
|
Tags?: Record<string, string>;
|
|
1379
1047
|
}
|
|
1380
|
-
export declare namespace ListDomainItem {
|
|
1381
|
-
|
|
1382
|
-
const filterSensitiveLog: (obj: ListDomainItem) => any;
|
|
1383
|
-
}
|
|
1384
1048
|
export interface ListDomainsResponse {
|
|
1385
1049
|
|
|
1386
1050
|
Items?: ListDomainItem[];
|
|
1387
1051
|
|
|
1388
1052
|
NextToken?: string;
|
|
1389
1053
|
}
|
|
1390
|
-
export declare namespace ListDomainsResponse {
|
|
1391
|
-
|
|
1392
|
-
const filterSensitiveLog: (obj: ListDomainsResponse) => any;
|
|
1393
|
-
}
|
|
1394
1054
|
export interface ListIdentityResolutionJobsRequest {
|
|
1395
1055
|
|
|
1396
1056
|
DomainName: string | undefined;
|
|
@@ -1399,10 +1059,6 @@ export interface ListIdentityResolutionJobsRequest {
|
|
|
1399
1059
|
|
|
1400
1060
|
MaxResults?: number;
|
|
1401
1061
|
}
|
|
1402
|
-
export declare namespace ListIdentityResolutionJobsRequest {
|
|
1403
|
-
|
|
1404
|
-
const filterSensitiveLog: (obj: ListIdentityResolutionJobsRequest) => any;
|
|
1405
|
-
}
|
|
1406
1062
|
|
|
1407
1063
|
export interface IdentityResolutionJob {
|
|
1408
1064
|
|
|
@@ -1422,20 +1078,12 @@ export interface IdentityResolutionJob {
|
|
|
1422
1078
|
|
|
1423
1079
|
Message?: string;
|
|
1424
1080
|
}
|
|
1425
|
-
export declare namespace IdentityResolutionJob {
|
|
1426
|
-
|
|
1427
|
-
const filterSensitiveLog: (obj: IdentityResolutionJob) => any;
|
|
1428
|
-
}
|
|
1429
1081
|
export interface ListIdentityResolutionJobsResponse {
|
|
1430
1082
|
|
|
1431
1083
|
IdentityResolutionJobsList?: IdentityResolutionJob[];
|
|
1432
1084
|
|
|
1433
1085
|
NextToken?: string;
|
|
1434
1086
|
}
|
|
1435
|
-
export declare namespace ListIdentityResolutionJobsResponse {
|
|
1436
|
-
|
|
1437
|
-
const filterSensitiveLog: (obj: ListIdentityResolutionJobsResponse) => any;
|
|
1438
|
-
}
|
|
1439
1087
|
export interface ListIntegrationsRequest {
|
|
1440
1088
|
|
|
1441
1089
|
DomainName: string | undefined;
|
|
@@ -1446,20 +1094,12 @@ export interface ListIntegrationsRequest {
|
|
|
1446
1094
|
|
|
1447
1095
|
IncludeHidden?: boolean;
|
|
1448
1096
|
}
|
|
1449
|
-
export declare namespace ListIntegrationsRequest {
|
|
1450
|
-
|
|
1451
|
-
const filterSensitiveLog: (obj: ListIntegrationsRequest) => any;
|
|
1452
|
-
}
|
|
1453
1097
|
export interface ListIntegrationsResponse {
|
|
1454
1098
|
|
|
1455
1099
|
Items?: ListIntegrationItem[];
|
|
1456
1100
|
|
|
1457
1101
|
NextToken?: string;
|
|
1458
1102
|
}
|
|
1459
|
-
export declare namespace ListIntegrationsResponse {
|
|
1460
|
-
|
|
1461
|
-
const filterSensitiveLog: (obj: ListIntegrationsResponse) => any;
|
|
1462
|
-
}
|
|
1463
1103
|
|
|
1464
1104
|
export interface ObjectFilter {
|
|
1465
1105
|
|
|
@@ -1467,10 +1107,6 @@ export interface ObjectFilter {
|
|
|
1467
1107
|
|
|
1468
1108
|
Values: string[] | undefined;
|
|
1469
1109
|
}
|
|
1470
|
-
export declare namespace ObjectFilter {
|
|
1471
|
-
|
|
1472
|
-
const filterSensitiveLog: (obj: ObjectFilter) => any;
|
|
1473
|
-
}
|
|
1474
1110
|
export interface ListProfileObjectsRequest {
|
|
1475
1111
|
|
|
1476
1112
|
NextToken?: string;
|
|
@@ -1485,10 +1121,6 @@ export interface ListProfileObjectsRequest {
|
|
|
1485
1121
|
|
|
1486
1122
|
ObjectFilter?: ObjectFilter;
|
|
1487
1123
|
}
|
|
1488
|
-
export declare namespace ListProfileObjectsRequest {
|
|
1489
|
-
|
|
1490
|
-
const filterSensitiveLog: (obj: ListProfileObjectsRequest) => any;
|
|
1491
|
-
}
|
|
1492
1124
|
|
|
1493
1125
|
export interface ListProfileObjectsItem {
|
|
1494
1126
|
|
|
@@ -1498,20 +1130,12 @@ export interface ListProfileObjectsItem {
|
|
|
1498
1130
|
|
|
1499
1131
|
Object?: string;
|
|
1500
1132
|
}
|
|
1501
|
-
export declare namespace ListProfileObjectsItem {
|
|
1502
|
-
|
|
1503
|
-
const filterSensitiveLog: (obj: ListProfileObjectsItem) => any;
|
|
1504
|
-
}
|
|
1505
1133
|
export interface ListProfileObjectsResponse {
|
|
1506
1134
|
|
|
1507
1135
|
Items?: ListProfileObjectsItem[];
|
|
1508
1136
|
|
|
1509
1137
|
NextToken?: string;
|
|
1510
1138
|
}
|
|
1511
|
-
export declare namespace ListProfileObjectsResponse {
|
|
1512
|
-
|
|
1513
|
-
const filterSensitiveLog: (obj: ListProfileObjectsResponse) => any;
|
|
1514
|
-
}
|
|
1515
1139
|
export interface ListProfileObjectTypesRequest {
|
|
1516
1140
|
|
|
1517
1141
|
DomainName: string | undefined;
|
|
@@ -1520,10 +1144,6 @@ export interface ListProfileObjectTypesRequest {
|
|
|
1520
1144
|
|
|
1521
1145
|
MaxResults?: number;
|
|
1522
1146
|
}
|
|
1523
|
-
export declare namespace ListProfileObjectTypesRequest {
|
|
1524
|
-
|
|
1525
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypesRequest) => any;
|
|
1526
|
-
}
|
|
1527
1147
|
|
|
1528
1148
|
export interface ListProfileObjectTypeItem {
|
|
1529
1149
|
|
|
@@ -1537,30 +1157,18 @@ export interface ListProfileObjectTypeItem {
|
|
|
1537
1157
|
|
|
1538
1158
|
Tags?: Record<string, string>;
|
|
1539
1159
|
}
|
|
1540
|
-
export declare namespace ListProfileObjectTypeItem {
|
|
1541
|
-
|
|
1542
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypeItem) => any;
|
|
1543
|
-
}
|
|
1544
1160
|
export interface ListProfileObjectTypesResponse {
|
|
1545
1161
|
|
|
1546
1162
|
Items?: ListProfileObjectTypeItem[];
|
|
1547
1163
|
|
|
1548
1164
|
NextToken?: string;
|
|
1549
1165
|
}
|
|
1550
|
-
export declare namespace ListProfileObjectTypesResponse {
|
|
1551
|
-
|
|
1552
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypesResponse) => any;
|
|
1553
|
-
}
|
|
1554
1166
|
export interface ListProfileObjectTypeTemplatesRequest {
|
|
1555
1167
|
|
|
1556
1168
|
NextToken?: string;
|
|
1557
1169
|
|
|
1558
1170
|
MaxResults?: number;
|
|
1559
1171
|
}
|
|
1560
|
-
export declare namespace ListProfileObjectTypeTemplatesRequest {
|
|
1561
|
-
|
|
1562
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypeTemplatesRequest) => any;
|
|
1563
|
-
}
|
|
1564
1172
|
|
|
1565
1173
|
export interface ListProfileObjectTypeTemplateItem {
|
|
1566
1174
|
|
|
@@ -1570,36 +1178,20 @@ export interface ListProfileObjectTypeTemplateItem {
|
|
|
1570
1178
|
|
|
1571
1179
|
SourceObject?: string;
|
|
1572
1180
|
}
|
|
1573
|
-
export declare namespace ListProfileObjectTypeTemplateItem {
|
|
1574
|
-
|
|
1575
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypeTemplateItem) => any;
|
|
1576
|
-
}
|
|
1577
1181
|
export interface ListProfileObjectTypeTemplatesResponse {
|
|
1578
1182
|
|
|
1579
1183
|
Items?: ListProfileObjectTypeTemplateItem[];
|
|
1580
1184
|
|
|
1581
1185
|
NextToken?: string;
|
|
1582
1186
|
}
|
|
1583
|
-
export declare namespace ListProfileObjectTypeTemplatesResponse {
|
|
1584
|
-
|
|
1585
|
-
const filterSensitiveLog: (obj: ListProfileObjectTypeTemplatesResponse) => any;
|
|
1586
|
-
}
|
|
1587
1187
|
export interface ListTagsForResourceRequest {
|
|
1588
1188
|
|
|
1589
1189
|
resourceArn: string | undefined;
|
|
1590
1190
|
}
|
|
1591
|
-
export declare namespace ListTagsForResourceRequest {
|
|
1592
|
-
|
|
1593
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1594
|
-
}
|
|
1595
1191
|
export interface ListTagsForResourceResponse {
|
|
1596
1192
|
|
|
1597
1193
|
tags?: Record<string, string>;
|
|
1598
1194
|
}
|
|
1599
|
-
export declare namespace ListTagsForResourceResponse {
|
|
1600
|
-
|
|
1601
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1602
|
-
}
|
|
1603
1195
|
export interface ListWorkflowsRequest {
|
|
1604
1196
|
|
|
1605
1197
|
DomainName: string | undefined;
|
|
@@ -1616,10 +1208,6 @@ export interface ListWorkflowsRequest {
|
|
|
1616
1208
|
|
|
1617
1209
|
MaxResults?: number;
|
|
1618
1210
|
}
|
|
1619
|
-
export declare namespace ListWorkflowsRequest {
|
|
1620
|
-
|
|
1621
|
-
const filterSensitiveLog: (obj: ListWorkflowsRequest) => any;
|
|
1622
|
-
}
|
|
1623
1211
|
|
|
1624
1212
|
export interface ListWorkflowsItem {
|
|
1625
1213
|
|
|
@@ -1635,20 +1223,12 @@ export interface ListWorkflowsItem {
|
|
|
1635
1223
|
|
|
1636
1224
|
LastUpdatedAt: Date | undefined;
|
|
1637
1225
|
}
|
|
1638
|
-
export declare namespace ListWorkflowsItem {
|
|
1639
|
-
|
|
1640
|
-
const filterSensitiveLog: (obj: ListWorkflowsItem) => any;
|
|
1641
|
-
}
|
|
1642
1226
|
export interface ListWorkflowsResponse {
|
|
1643
1227
|
|
|
1644
1228
|
Items?: ListWorkflowsItem[];
|
|
1645
1229
|
|
|
1646
1230
|
NextToken?: string;
|
|
1647
1231
|
}
|
|
1648
|
-
export declare namespace ListWorkflowsResponse {
|
|
1649
|
-
|
|
1650
|
-
const filterSensitiveLog: (obj: ListWorkflowsResponse) => any;
|
|
1651
|
-
}
|
|
1652
1232
|
|
|
1653
1233
|
export interface FieldSourceProfileIds {
|
|
1654
1234
|
|
|
@@ -1694,10 +1274,6 @@ export interface FieldSourceProfileIds {
|
|
|
1694
1274
|
|
|
1695
1275
|
Attributes?: Record<string, string>;
|
|
1696
1276
|
}
|
|
1697
|
-
export declare namespace FieldSourceProfileIds {
|
|
1698
|
-
|
|
1699
|
-
const filterSensitiveLog: (obj: FieldSourceProfileIds) => any;
|
|
1700
|
-
}
|
|
1701
1277
|
export interface MergeProfilesRequest {
|
|
1702
1278
|
|
|
1703
1279
|
DomainName: string | undefined;
|
|
@@ -1708,18 +1284,10 @@ export interface MergeProfilesRequest {
|
|
|
1708
1284
|
|
|
1709
1285
|
FieldSourceProfileIds?: FieldSourceProfileIds;
|
|
1710
1286
|
}
|
|
1711
|
-
export declare namespace MergeProfilesRequest {
|
|
1712
|
-
|
|
1713
|
-
const filterSensitiveLog: (obj: MergeProfilesRequest) => any;
|
|
1714
|
-
}
|
|
1715
1287
|
export interface MergeProfilesResponse {
|
|
1716
1288
|
|
|
1717
1289
|
Message?: string;
|
|
1718
1290
|
}
|
|
1719
|
-
export declare namespace MergeProfilesResponse {
|
|
1720
|
-
|
|
1721
|
-
const filterSensitiveLog: (obj: MergeProfilesResponse) => any;
|
|
1722
|
-
}
|
|
1723
1291
|
export interface PutIntegrationRequest {
|
|
1724
1292
|
|
|
1725
1293
|
DomainName: string | undefined;
|
|
@@ -1734,10 +1302,6 @@ export interface PutIntegrationRequest {
|
|
|
1734
1302
|
|
|
1735
1303
|
ObjectTypeNames?: Record<string, string>;
|
|
1736
1304
|
}
|
|
1737
|
-
export declare namespace PutIntegrationRequest {
|
|
1738
|
-
|
|
1739
|
-
const filterSensitiveLog: (obj: PutIntegrationRequest) => any;
|
|
1740
|
-
}
|
|
1741
1305
|
export interface PutIntegrationResponse {
|
|
1742
1306
|
|
|
1743
1307
|
DomainName: string | undefined;
|
|
@@ -1756,10 +1320,6 @@ export interface PutIntegrationResponse {
|
|
|
1756
1320
|
|
|
1757
1321
|
WorkflowId?: string;
|
|
1758
1322
|
}
|
|
1759
|
-
export declare namespace PutIntegrationResponse {
|
|
1760
|
-
|
|
1761
|
-
const filterSensitiveLog: (obj: PutIntegrationResponse) => any;
|
|
1762
|
-
}
|
|
1763
1323
|
export interface PutProfileObjectRequest {
|
|
1764
1324
|
|
|
1765
1325
|
ObjectTypeName: string | undefined;
|
|
@@ -1768,18 +1328,10 @@ export interface PutProfileObjectRequest {
|
|
|
1768
1328
|
|
|
1769
1329
|
DomainName: string | undefined;
|
|
1770
1330
|
}
|
|
1771
|
-
export declare namespace PutProfileObjectRequest {
|
|
1772
|
-
|
|
1773
|
-
const filterSensitiveLog: (obj: PutProfileObjectRequest) => any;
|
|
1774
|
-
}
|
|
1775
1331
|
export interface PutProfileObjectResponse {
|
|
1776
1332
|
|
|
1777
1333
|
ProfileObjectUniqueKey?: string;
|
|
1778
1334
|
}
|
|
1779
|
-
export declare namespace PutProfileObjectResponse {
|
|
1780
|
-
|
|
1781
|
-
const filterSensitiveLog: (obj: PutProfileObjectResponse) => any;
|
|
1782
|
-
}
|
|
1783
1335
|
export interface PutProfileObjectTypeRequest {
|
|
1784
1336
|
|
|
1785
1337
|
DomainName: string | undefined;
|
|
@@ -1804,10 +1356,6 @@ export interface PutProfileObjectTypeRequest {
|
|
|
1804
1356
|
|
|
1805
1357
|
Tags?: Record<string, string>;
|
|
1806
1358
|
}
|
|
1807
|
-
export declare namespace PutProfileObjectTypeRequest {
|
|
1808
|
-
|
|
1809
|
-
const filterSensitiveLog: (obj: PutProfileObjectTypeRequest) => any;
|
|
1810
|
-
}
|
|
1811
1359
|
export interface PutProfileObjectTypeResponse {
|
|
1812
1360
|
|
|
1813
1361
|
ObjectTypeName: string | undefined;
|
|
@@ -1834,10 +1382,6 @@ export interface PutProfileObjectTypeResponse {
|
|
|
1834
1382
|
|
|
1835
1383
|
Tags?: Record<string, string>;
|
|
1836
1384
|
}
|
|
1837
|
-
export declare namespace PutProfileObjectTypeResponse {
|
|
1838
|
-
|
|
1839
|
-
const filterSensitiveLog: (obj: PutProfileObjectTypeResponse) => any;
|
|
1840
|
-
}
|
|
1841
1385
|
export interface SearchProfilesRequest {
|
|
1842
1386
|
|
|
1843
1387
|
NextToken?: string;
|
|
@@ -1850,10 +1394,6 @@ export interface SearchProfilesRequest {
|
|
|
1850
1394
|
|
|
1851
1395
|
Values: string[] | undefined;
|
|
1852
1396
|
}
|
|
1853
|
-
export declare namespace SearchProfilesRequest {
|
|
1854
|
-
|
|
1855
|
-
const filterSensitiveLog: (obj: SearchProfilesRequest) => any;
|
|
1856
|
-
}
|
|
1857
1397
|
|
|
1858
1398
|
export interface Profile {
|
|
1859
1399
|
|
|
@@ -1901,52 +1441,28 @@ export interface Profile {
|
|
|
1901
1441
|
|
|
1902
1442
|
Attributes?: Record<string, string>;
|
|
1903
1443
|
}
|
|
1904
|
-
export declare namespace Profile {
|
|
1905
|
-
|
|
1906
|
-
const filterSensitiveLog: (obj: Profile) => any;
|
|
1907
|
-
}
|
|
1908
1444
|
export interface SearchProfilesResponse {
|
|
1909
1445
|
|
|
1910
1446
|
Items?: Profile[];
|
|
1911
1447
|
|
|
1912
1448
|
NextToken?: string;
|
|
1913
1449
|
}
|
|
1914
|
-
export declare namespace SearchProfilesResponse {
|
|
1915
|
-
|
|
1916
|
-
const filterSensitiveLog: (obj: SearchProfilesResponse) => any;
|
|
1917
|
-
}
|
|
1918
1450
|
export interface TagResourceRequest {
|
|
1919
1451
|
|
|
1920
1452
|
resourceArn: string | undefined;
|
|
1921
1453
|
|
|
1922
1454
|
tags: Record<string, string> | undefined;
|
|
1923
1455
|
}
|
|
1924
|
-
export declare namespace TagResourceRequest {
|
|
1925
|
-
|
|
1926
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1927
|
-
}
|
|
1928
1456
|
export interface TagResourceResponse {
|
|
1929
1457
|
}
|
|
1930
|
-
export declare namespace TagResourceResponse {
|
|
1931
|
-
|
|
1932
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1933
|
-
}
|
|
1934
1458
|
export interface UntagResourceRequest {
|
|
1935
1459
|
|
|
1936
1460
|
resourceArn: string | undefined;
|
|
1937
1461
|
|
|
1938
1462
|
tagKeys: string[] | undefined;
|
|
1939
1463
|
}
|
|
1940
|
-
export declare namespace UntagResourceRequest {
|
|
1941
|
-
|
|
1942
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1943
|
-
}
|
|
1944
1464
|
export interface UntagResourceResponse {
|
|
1945
1465
|
}
|
|
1946
|
-
export declare namespace UntagResourceResponse {
|
|
1947
|
-
|
|
1948
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1949
|
-
}
|
|
1950
1466
|
export interface UpdateDomainRequest {
|
|
1951
1467
|
|
|
1952
1468
|
DomainName: string | undefined;
|
|
@@ -1961,10 +1477,6 @@ export interface UpdateDomainRequest {
|
|
|
1961
1477
|
|
|
1962
1478
|
Tags?: Record<string, string>;
|
|
1963
1479
|
}
|
|
1964
|
-
export declare namespace UpdateDomainRequest {
|
|
1965
|
-
|
|
1966
|
-
const filterSensitiveLog: (obj: UpdateDomainRequest) => any;
|
|
1967
|
-
}
|
|
1968
1480
|
export interface UpdateDomainResponse {
|
|
1969
1481
|
|
|
1970
1482
|
DomainName: string | undefined;
|
|
@@ -1983,10 +1495,6 @@ export interface UpdateDomainResponse {
|
|
|
1983
1495
|
|
|
1984
1496
|
Tags?: Record<string, string>;
|
|
1985
1497
|
}
|
|
1986
|
-
export declare namespace UpdateDomainResponse {
|
|
1987
|
-
|
|
1988
|
-
const filterSensitiveLog: (obj: UpdateDomainResponse) => any;
|
|
1989
|
-
}
|
|
1990
1498
|
|
|
1991
1499
|
export interface UpdateAddress {
|
|
1992
1500
|
|
|
@@ -2010,10 +1518,6 @@ export interface UpdateAddress {
|
|
|
2010
1518
|
|
|
2011
1519
|
PostalCode?: string;
|
|
2012
1520
|
}
|
|
2013
|
-
export declare namespace UpdateAddress {
|
|
2014
|
-
|
|
2015
|
-
const filterSensitiveLog: (obj: UpdateAddress) => any;
|
|
2016
|
-
}
|
|
2017
1521
|
export interface UpdateProfileRequest {
|
|
2018
1522
|
|
|
2019
1523
|
DomainName: string | undefined;
|
|
@@ -2062,15 +1566,259 @@ export interface UpdateProfileRequest {
|
|
|
2062
1566
|
|
|
2063
1567
|
Attributes?: Record<string, string>;
|
|
2064
1568
|
}
|
|
2065
|
-
export declare namespace UpdateProfileRequest {
|
|
2066
|
-
|
|
2067
|
-
const filterSensitiveLog: (obj: UpdateProfileRequest) => any;
|
|
2068
|
-
}
|
|
2069
1569
|
export interface UpdateProfileResponse {
|
|
2070
1570
|
|
|
2071
1571
|
ProfileId: string | undefined;
|
|
2072
1572
|
}
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
1573
|
+
|
|
1574
|
+
export declare const AddProfileKeyRequestFilterSensitiveLog: (obj: AddProfileKeyRequest) => any;
|
|
1575
|
+
|
|
1576
|
+
export declare const AddProfileKeyResponseFilterSensitiveLog: (obj: AddProfileKeyResponse) => any;
|
|
1577
|
+
|
|
1578
|
+
export declare const AddressFilterSensitiveLog: (obj: Address) => any;
|
|
1579
|
+
|
|
1580
|
+
export declare const BatchFilterSensitiveLog: (obj: Batch) => any;
|
|
1581
|
+
|
|
1582
|
+
export declare const IncrementalPullConfigFilterSensitiveLog: (obj: IncrementalPullConfig) => any;
|
|
1583
|
+
|
|
1584
|
+
export declare const MarketoSourcePropertiesFilterSensitiveLog: (obj: MarketoSourceProperties) => any;
|
|
1585
|
+
|
|
1586
|
+
export declare const S3SourcePropertiesFilterSensitiveLog: (obj: S3SourceProperties) => any;
|
|
1587
|
+
|
|
1588
|
+
export declare const SalesforceSourcePropertiesFilterSensitiveLog: (obj: SalesforceSourceProperties) => any;
|
|
1589
|
+
|
|
1590
|
+
export declare const ServiceNowSourcePropertiesFilterSensitiveLog: (obj: ServiceNowSourceProperties) => any;
|
|
1591
|
+
|
|
1592
|
+
export declare const ZendeskSourcePropertiesFilterSensitiveLog: (obj: ZendeskSourceProperties) => any;
|
|
1593
|
+
|
|
1594
|
+
export declare const SourceConnectorPropertiesFilterSensitiveLog: (obj: SourceConnectorProperties) => any;
|
|
1595
|
+
|
|
1596
|
+
export declare const SourceFlowConfigFilterSensitiveLog: (obj: SourceFlowConfig) => any;
|
|
1597
|
+
|
|
1598
|
+
export declare const ConnectorOperatorFilterSensitiveLog: (obj: ConnectorOperator) => any;
|
|
1599
|
+
|
|
1600
|
+
export declare const TaskFilterSensitiveLog: (obj: Task) => any;
|
|
1601
|
+
|
|
1602
|
+
export declare const ScheduledTriggerPropertiesFilterSensitiveLog: (obj: ScheduledTriggerProperties) => any;
|
|
1603
|
+
|
|
1604
|
+
export declare const TriggerPropertiesFilterSensitiveLog: (obj: TriggerProperties) => any;
|
|
1605
|
+
|
|
1606
|
+
export declare const TriggerConfigFilterSensitiveLog: (obj: TriggerConfig) => any;
|
|
1607
|
+
|
|
1608
|
+
export declare const FlowDefinitionFilterSensitiveLog: (obj: FlowDefinition) => any;
|
|
1609
|
+
|
|
1610
|
+
export declare const AppflowIntegrationFilterSensitiveLog: (obj: AppflowIntegration) => any;
|
|
1611
|
+
|
|
1612
|
+
export declare const AppflowIntegrationWorkflowAttributesFilterSensitiveLog: (obj: AppflowIntegrationWorkflowAttributes) => any;
|
|
1613
|
+
|
|
1614
|
+
export declare const AppflowIntegrationWorkflowMetricsFilterSensitiveLog: (obj: AppflowIntegrationWorkflowMetrics) => any;
|
|
1615
|
+
|
|
1616
|
+
export declare const AppflowIntegrationWorkflowStepFilterSensitiveLog: (obj: AppflowIntegrationWorkflowStep) => any;
|
|
1617
|
+
|
|
1618
|
+
export declare const ConflictResolutionFilterSensitiveLog: (obj: ConflictResolution) => any;
|
|
1619
|
+
|
|
1620
|
+
export declare const ConsolidationFilterSensitiveLog: (obj: Consolidation) => any;
|
|
1621
|
+
|
|
1622
|
+
export declare const AutoMergingFilterSensitiveLog: (obj: AutoMerging) => any;
|
|
1623
|
+
|
|
1624
|
+
export declare const S3ExportingConfigFilterSensitiveLog: (obj: S3ExportingConfig) => any;
|
|
1625
|
+
|
|
1626
|
+
export declare const ExportingConfigFilterSensitiveLog: (obj: ExportingConfig) => any;
|
|
1627
|
+
|
|
1628
|
+
export declare const JobScheduleFilterSensitiveLog: (obj: JobSchedule) => any;
|
|
1629
|
+
|
|
1630
|
+
export declare const MatchingRequestFilterSensitiveLog: (obj: MatchingRequest) => any;
|
|
1631
|
+
|
|
1632
|
+
export declare const CreateDomainRequestFilterSensitiveLog: (obj: CreateDomainRequest) => any;
|
|
1633
|
+
|
|
1634
|
+
export declare const MatchingResponseFilterSensitiveLog: (obj: MatchingResponse) => any;
|
|
1635
|
+
|
|
1636
|
+
export declare const CreateDomainResponseFilterSensitiveLog: (obj: CreateDomainResponse) => any;
|
|
1637
|
+
|
|
1638
|
+
export declare const IntegrationConfigFilterSensitiveLog: (obj: IntegrationConfig) => any;
|
|
1639
|
+
|
|
1640
|
+
export declare const CreateIntegrationWorkflowRequestFilterSensitiveLog: (obj: CreateIntegrationWorkflowRequest) => any;
|
|
1641
|
+
|
|
1642
|
+
export declare const CreateIntegrationWorkflowResponseFilterSensitiveLog: (obj: CreateIntegrationWorkflowResponse) => any;
|
|
1643
|
+
|
|
1644
|
+
export declare const CreateProfileRequestFilterSensitiveLog: (obj: CreateProfileRequest) => any;
|
|
1645
|
+
|
|
1646
|
+
export declare const CreateProfileResponseFilterSensitiveLog: (obj: CreateProfileResponse) => any;
|
|
1647
|
+
|
|
1648
|
+
export declare const DeleteDomainRequestFilterSensitiveLog: (obj: DeleteDomainRequest) => any;
|
|
1649
|
+
|
|
1650
|
+
export declare const DeleteDomainResponseFilterSensitiveLog: (obj: DeleteDomainResponse) => any;
|
|
1651
|
+
|
|
1652
|
+
export declare const DeleteIntegrationRequestFilterSensitiveLog: (obj: DeleteIntegrationRequest) => any;
|
|
1653
|
+
|
|
1654
|
+
export declare const DeleteIntegrationResponseFilterSensitiveLog: (obj: DeleteIntegrationResponse) => any;
|
|
1655
|
+
|
|
1656
|
+
export declare const DeleteProfileRequestFilterSensitiveLog: (obj: DeleteProfileRequest) => any;
|
|
1657
|
+
|
|
1658
|
+
export declare const DeleteProfileResponseFilterSensitiveLog: (obj: DeleteProfileResponse) => any;
|
|
1659
|
+
|
|
1660
|
+
export declare const DeleteProfileKeyRequestFilterSensitiveLog: (obj: DeleteProfileKeyRequest) => any;
|
|
1661
|
+
|
|
1662
|
+
export declare const DeleteProfileKeyResponseFilterSensitiveLog: (obj: DeleteProfileKeyResponse) => any;
|
|
1663
|
+
|
|
1664
|
+
export declare const DeleteProfileObjectRequestFilterSensitiveLog: (obj: DeleteProfileObjectRequest) => any;
|
|
1665
|
+
|
|
1666
|
+
export declare const DeleteProfileObjectResponseFilterSensitiveLog: (obj: DeleteProfileObjectResponse) => any;
|
|
1667
|
+
|
|
1668
|
+
export declare const DeleteProfileObjectTypeRequestFilterSensitiveLog: (obj: DeleteProfileObjectTypeRequest) => any;
|
|
1669
|
+
|
|
1670
|
+
export declare const DeleteProfileObjectTypeResponseFilterSensitiveLog: (obj: DeleteProfileObjectTypeResponse) => any;
|
|
1671
|
+
|
|
1672
|
+
export declare const DeleteWorkflowRequestFilterSensitiveLog: (obj: DeleteWorkflowRequest) => any;
|
|
1673
|
+
|
|
1674
|
+
export declare const DeleteWorkflowResponseFilterSensitiveLog: (obj: DeleteWorkflowResponse) => any;
|
|
1675
|
+
|
|
1676
|
+
export declare const GetAutoMergingPreviewRequestFilterSensitiveLog: (obj: GetAutoMergingPreviewRequest) => any;
|
|
1677
|
+
|
|
1678
|
+
export declare const GetAutoMergingPreviewResponseFilterSensitiveLog: (obj: GetAutoMergingPreviewResponse) => any;
|
|
1679
|
+
|
|
1680
|
+
export declare const GetDomainRequestFilterSensitiveLog: (obj: GetDomainRequest) => any;
|
|
1681
|
+
|
|
1682
|
+
export declare const DomainStatsFilterSensitiveLog: (obj: DomainStats) => any;
|
|
1683
|
+
|
|
1684
|
+
export declare const GetDomainResponseFilterSensitiveLog: (obj: GetDomainResponse) => any;
|
|
1685
|
+
|
|
1686
|
+
export declare const GetIdentityResolutionJobRequestFilterSensitiveLog: (obj: GetIdentityResolutionJobRequest) => any;
|
|
1687
|
+
|
|
1688
|
+
export declare const S3ExportingLocationFilterSensitiveLog: (obj: S3ExportingLocation) => any;
|
|
1689
|
+
|
|
1690
|
+
export declare const ExportingLocationFilterSensitiveLog: (obj: ExportingLocation) => any;
|
|
1691
|
+
|
|
1692
|
+
export declare const JobStatsFilterSensitiveLog: (obj: JobStats) => any;
|
|
1693
|
+
|
|
1694
|
+
export declare const GetIdentityResolutionJobResponseFilterSensitiveLog: (obj: GetIdentityResolutionJobResponse) => any;
|
|
1695
|
+
|
|
1696
|
+
export declare const GetIntegrationRequestFilterSensitiveLog: (obj: GetIntegrationRequest) => any;
|
|
1697
|
+
|
|
1698
|
+
export declare const GetIntegrationResponseFilterSensitiveLog: (obj: GetIntegrationResponse) => any;
|
|
1699
|
+
|
|
1700
|
+
export declare const GetMatchesRequestFilterSensitiveLog: (obj: GetMatchesRequest) => any;
|
|
1701
|
+
|
|
1702
|
+
export declare const MatchItemFilterSensitiveLog: (obj: MatchItem) => any;
|
|
1703
|
+
|
|
1704
|
+
export declare const GetMatchesResponseFilterSensitiveLog: (obj: GetMatchesResponse) => any;
|
|
1705
|
+
|
|
1706
|
+
export declare const GetProfileObjectTypeRequestFilterSensitiveLog: (obj: GetProfileObjectTypeRequest) => any;
|
|
1707
|
+
|
|
1708
|
+
export declare const ObjectTypeFieldFilterSensitiveLog: (obj: ObjectTypeField) => any;
|
|
1709
|
+
|
|
1710
|
+
export declare const ObjectTypeKeyFilterSensitiveLog: (obj: ObjectTypeKey) => any;
|
|
1711
|
+
|
|
1712
|
+
export declare const GetProfileObjectTypeResponseFilterSensitiveLog: (obj: GetProfileObjectTypeResponse) => any;
|
|
1713
|
+
|
|
1714
|
+
export declare const GetProfileObjectTypeTemplateRequestFilterSensitiveLog: (obj: GetProfileObjectTypeTemplateRequest) => any;
|
|
1715
|
+
|
|
1716
|
+
export declare const GetProfileObjectTypeTemplateResponseFilterSensitiveLog: (obj: GetProfileObjectTypeTemplateResponse) => any;
|
|
1717
|
+
|
|
1718
|
+
export declare const GetWorkflowRequestFilterSensitiveLog: (obj: GetWorkflowRequest) => any;
|
|
1719
|
+
|
|
1720
|
+
export declare const WorkflowAttributesFilterSensitiveLog: (obj: WorkflowAttributes) => any;
|
|
1721
|
+
|
|
1722
|
+
export declare const WorkflowMetricsFilterSensitiveLog: (obj: WorkflowMetrics) => any;
|
|
1723
|
+
|
|
1724
|
+
export declare const GetWorkflowResponseFilterSensitiveLog: (obj: GetWorkflowResponse) => any;
|
|
1725
|
+
|
|
1726
|
+
export declare const GetWorkflowStepsRequestFilterSensitiveLog: (obj: GetWorkflowStepsRequest) => any;
|
|
1727
|
+
|
|
1728
|
+
export declare const WorkflowStepItemFilterSensitiveLog: (obj: WorkflowStepItem) => any;
|
|
1729
|
+
|
|
1730
|
+
export declare const GetWorkflowStepsResponseFilterSensitiveLog: (obj: GetWorkflowStepsResponse) => any;
|
|
1731
|
+
|
|
1732
|
+
export declare const ListAccountIntegrationsRequestFilterSensitiveLog: (obj: ListAccountIntegrationsRequest) => any;
|
|
1733
|
+
|
|
1734
|
+
export declare const ListIntegrationItemFilterSensitiveLog: (obj: ListIntegrationItem) => any;
|
|
1735
|
+
|
|
1736
|
+
export declare const ListAccountIntegrationsResponseFilterSensitiveLog: (obj: ListAccountIntegrationsResponse) => any;
|
|
1737
|
+
|
|
1738
|
+
export declare const ListDomainsRequestFilterSensitiveLog: (obj: ListDomainsRequest) => any;
|
|
1739
|
+
|
|
1740
|
+
export declare const ListDomainItemFilterSensitiveLog: (obj: ListDomainItem) => any;
|
|
1741
|
+
|
|
1742
|
+
export declare const ListDomainsResponseFilterSensitiveLog: (obj: ListDomainsResponse) => any;
|
|
1743
|
+
|
|
1744
|
+
export declare const ListIdentityResolutionJobsRequestFilterSensitiveLog: (obj: ListIdentityResolutionJobsRequest) => any;
|
|
1745
|
+
|
|
1746
|
+
export declare const IdentityResolutionJobFilterSensitiveLog: (obj: IdentityResolutionJob) => any;
|
|
1747
|
+
|
|
1748
|
+
export declare const ListIdentityResolutionJobsResponseFilterSensitiveLog: (obj: ListIdentityResolutionJobsResponse) => any;
|
|
1749
|
+
|
|
1750
|
+
export declare const ListIntegrationsRequestFilterSensitiveLog: (obj: ListIntegrationsRequest) => any;
|
|
1751
|
+
|
|
1752
|
+
export declare const ListIntegrationsResponseFilterSensitiveLog: (obj: ListIntegrationsResponse) => any;
|
|
1753
|
+
|
|
1754
|
+
export declare const ObjectFilterFilterSensitiveLog: (obj: ObjectFilter) => any;
|
|
1755
|
+
|
|
1756
|
+
export declare const ListProfileObjectsRequestFilterSensitiveLog: (obj: ListProfileObjectsRequest) => any;
|
|
1757
|
+
|
|
1758
|
+
export declare const ListProfileObjectsItemFilterSensitiveLog: (obj: ListProfileObjectsItem) => any;
|
|
1759
|
+
|
|
1760
|
+
export declare const ListProfileObjectsResponseFilterSensitiveLog: (obj: ListProfileObjectsResponse) => any;
|
|
1761
|
+
|
|
1762
|
+
export declare const ListProfileObjectTypesRequestFilterSensitiveLog: (obj: ListProfileObjectTypesRequest) => any;
|
|
1763
|
+
|
|
1764
|
+
export declare const ListProfileObjectTypeItemFilterSensitiveLog: (obj: ListProfileObjectTypeItem) => any;
|
|
1765
|
+
|
|
1766
|
+
export declare const ListProfileObjectTypesResponseFilterSensitiveLog: (obj: ListProfileObjectTypesResponse) => any;
|
|
1767
|
+
|
|
1768
|
+
export declare const ListProfileObjectTypeTemplatesRequestFilterSensitiveLog: (obj: ListProfileObjectTypeTemplatesRequest) => any;
|
|
1769
|
+
|
|
1770
|
+
export declare const ListProfileObjectTypeTemplateItemFilterSensitiveLog: (obj: ListProfileObjectTypeTemplateItem) => any;
|
|
1771
|
+
|
|
1772
|
+
export declare const ListProfileObjectTypeTemplatesResponseFilterSensitiveLog: (obj: ListProfileObjectTypeTemplatesResponse) => any;
|
|
1773
|
+
|
|
1774
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1775
|
+
|
|
1776
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1777
|
+
|
|
1778
|
+
export declare const ListWorkflowsRequestFilterSensitiveLog: (obj: ListWorkflowsRequest) => any;
|
|
1779
|
+
|
|
1780
|
+
export declare const ListWorkflowsItemFilterSensitiveLog: (obj: ListWorkflowsItem) => any;
|
|
1781
|
+
|
|
1782
|
+
export declare const ListWorkflowsResponseFilterSensitiveLog: (obj: ListWorkflowsResponse) => any;
|
|
1783
|
+
|
|
1784
|
+
export declare const FieldSourceProfileIdsFilterSensitiveLog: (obj: FieldSourceProfileIds) => any;
|
|
1785
|
+
|
|
1786
|
+
export declare const MergeProfilesRequestFilterSensitiveLog: (obj: MergeProfilesRequest) => any;
|
|
1787
|
+
|
|
1788
|
+
export declare const MergeProfilesResponseFilterSensitiveLog: (obj: MergeProfilesResponse) => any;
|
|
1789
|
+
|
|
1790
|
+
export declare const PutIntegrationRequestFilterSensitiveLog: (obj: PutIntegrationRequest) => any;
|
|
1791
|
+
|
|
1792
|
+
export declare const PutIntegrationResponseFilterSensitiveLog: (obj: PutIntegrationResponse) => any;
|
|
1793
|
+
|
|
1794
|
+
export declare const PutProfileObjectRequestFilterSensitiveLog: (obj: PutProfileObjectRequest) => any;
|
|
1795
|
+
|
|
1796
|
+
export declare const PutProfileObjectResponseFilterSensitiveLog: (obj: PutProfileObjectResponse) => any;
|
|
1797
|
+
|
|
1798
|
+
export declare const PutProfileObjectTypeRequestFilterSensitiveLog: (obj: PutProfileObjectTypeRequest) => any;
|
|
1799
|
+
|
|
1800
|
+
export declare const PutProfileObjectTypeResponseFilterSensitiveLog: (obj: PutProfileObjectTypeResponse) => any;
|
|
1801
|
+
|
|
1802
|
+
export declare const SearchProfilesRequestFilterSensitiveLog: (obj: SearchProfilesRequest) => any;
|
|
1803
|
+
|
|
1804
|
+
export declare const ProfileFilterSensitiveLog: (obj: Profile) => any;
|
|
1805
|
+
|
|
1806
|
+
export declare const SearchProfilesResponseFilterSensitiveLog: (obj: SearchProfilesResponse) => any;
|
|
1807
|
+
|
|
1808
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1809
|
+
|
|
1810
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1811
|
+
|
|
1812
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1813
|
+
|
|
1814
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1815
|
+
|
|
1816
|
+
export declare const UpdateDomainRequestFilterSensitiveLog: (obj: UpdateDomainRequest) => any;
|
|
1817
|
+
|
|
1818
|
+
export declare const UpdateDomainResponseFilterSensitiveLog: (obj: UpdateDomainResponse) => any;
|
|
1819
|
+
|
|
1820
|
+
export declare const UpdateAddressFilterSensitiveLog: (obj: UpdateAddress) => any;
|
|
1821
|
+
|
|
1822
|
+
export declare const UpdateProfileRequestFilterSensitiveLog: (obj: UpdateProfileRequest) => any;
|
|
1823
|
+
|
|
1824
|
+
export declare const UpdateProfileResponseFilterSensitiveLog: (obj: UpdateProfileResponse) => any;
|