@aws-sdk/client-customer-profiles 3.687.0 → 3.692.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/dist-types/models/models_0.d.ts +493 -493
- package/dist-types/ts3.4/models/models_0.d.ts +493 -493
- package/package.json +35 -35
|
@@ -3,7 +3,7 @@ import { CustomerProfilesServiceException as __BaseException } from "./CustomerP
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -19,13 +19,13 @@ export interface AddProfileKeyRequest {
|
|
|
19
19
|
DomainName: string | undefined;
|
|
20
20
|
}
|
|
21
21
|
export interface AddProfileKeyResponse {
|
|
22
|
-
KeyName?: string;
|
|
23
|
-
Values?: string[];
|
|
22
|
+
KeyName?: string | undefined;
|
|
23
|
+
Values?: string[] | undefined;
|
|
24
24
|
}
|
|
25
25
|
export declare class BadRequestException extends __BaseException {
|
|
26
26
|
readonly name: "BadRequestException";
|
|
27
27
|
readonly $fault: "client";
|
|
28
|
-
Message?: string;
|
|
28
|
+
Message?: string | undefined;
|
|
29
29
|
constructor(
|
|
30
30
|
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
31
31
|
);
|
|
@@ -33,7 +33,7 @@ export declare class BadRequestException extends __BaseException {
|
|
|
33
33
|
export declare class InternalServerException extends __BaseException {
|
|
34
34
|
readonly name: "InternalServerException";
|
|
35
35
|
readonly $fault: "server";
|
|
36
|
-
Message?: string;
|
|
36
|
+
Message?: string | undefined;
|
|
37
37
|
constructor(
|
|
38
38
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
39
39
|
);
|
|
@@ -41,7 +41,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
41
41
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
42
42
|
readonly name: "ResourceNotFoundException";
|
|
43
43
|
readonly $fault: "client";
|
|
44
|
-
Message?: string;
|
|
44
|
+
Message?: string | undefined;
|
|
45
45
|
constructor(
|
|
46
46
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
47
47
|
);
|
|
@@ -49,22 +49,22 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
49
49
|
export declare class ThrottlingException extends __BaseException {
|
|
50
50
|
readonly name: "ThrottlingException";
|
|
51
51
|
readonly $fault: "client";
|
|
52
|
-
Message?: string;
|
|
52
|
+
Message?: string | undefined;
|
|
53
53
|
constructor(
|
|
54
54
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
55
55
|
);
|
|
56
56
|
}
|
|
57
57
|
export interface Address {
|
|
58
|
-
Address1?: string;
|
|
59
|
-
Address2?: string;
|
|
60
|
-
Address3?: string;
|
|
61
|
-
Address4?: string;
|
|
62
|
-
City?: string;
|
|
63
|
-
County?: string;
|
|
64
|
-
State?: string;
|
|
65
|
-
Province?: string;
|
|
66
|
-
Country?: string;
|
|
67
|
-
PostalCode?: string;
|
|
58
|
+
Address1?: string | undefined;
|
|
59
|
+
Address2?: string | undefined;
|
|
60
|
+
Address3?: string | undefined;
|
|
61
|
+
Address4?: string | undefined;
|
|
62
|
+
City?: string | undefined;
|
|
63
|
+
County?: string | undefined;
|
|
64
|
+
State?: string | undefined;
|
|
65
|
+
Province?: string | undefined;
|
|
66
|
+
Country?: string | undefined;
|
|
67
|
+
PostalCode?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
export interface Batch {
|
|
70
70
|
StartTime: Date | undefined;
|
|
@@ -80,19 +80,19 @@ export declare const SourceConnectorType: {
|
|
|
80
80
|
export type SourceConnectorType =
|
|
81
81
|
(typeof SourceConnectorType)[keyof typeof SourceConnectorType];
|
|
82
82
|
export interface IncrementalPullConfig {
|
|
83
|
-
DatetimeTypeFieldName?: string;
|
|
83
|
+
DatetimeTypeFieldName?: string | undefined;
|
|
84
84
|
}
|
|
85
85
|
export interface MarketoSourceProperties {
|
|
86
86
|
Object: string | undefined;
|
|
87
87
|
}
|
|
88
88
|
export interface S3SourceProperties {
|
|
89
89
|
BucketName: string | undefined;
|
|
90
|
-
BucketPrefix?: string;
|
|
90
|
+
BucketPrefix?: string | undefined;
|
|
91
91
|
}
|
|
92
92
|
export interface SalesforceSourceProperties {
|
|
93
93
|
Object: string | undefined;
|
|
94
|
-
EnableDynamicFieldUpdate?: boolean;
|
|
95
|
-
IncludeDeletedRecords?: boolean;
|
|
94
|
+
EnableDynamicFieldUpdate?: boolean | undefined;
|
|
95
|
+
IncludeDeletedRecords?: boolean | undefined;
|
|
96
96
|
}
|
|
97
97
|
export interface ServiceNowSourceProperties {
|
|
98
98
|
Object: string | undefined;
|
|
@@ -101,16 +101,16 @@ export interface ZendeskSourceProperties {
|
|
|
101
101
|
Object: string | undefined;
|
|
102
102
|
}
|
|
103
103
|
export interface SourceConnectorProperties {
|
|
104
|
-
Marketo?: MarketoSourceProperties;
|
|
105
|
-
S3?: S3SourceProperties;
|
|
106
|
-
Salesforce?: SalesforceSourceProperties;
|
|
107
|
-
ServiceNow?: ServiceNowSourceProperties;
|
|
108
|
-
Zendesk?: ZendeskSourceProperties;
|
|
104
|
+
Marketo?: MarketoSourceProperties | undefined;
|
|
105
|
+
S3?: S3SourceProperties | undefined;
|
|
106
|
+
Salesforce?: SalesforceSourceProperties | undefined;
|
|
107
|
+
ServiceNow?: ServiceNowSourceProperties | undefined;
|
|
108
|
+
Zendesk?: ZendeskSourceProperties | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface SourceFlowConfig {
|
|
111
|
-
ConnectorProfileName?: string;
|
|
111
|
+
ConnectorProfileName?: string | undefined;
|
|
112
112
|
ConnectorType: SourceConnectorType | undefined;
|
|
113
|
-
IncrementalPullConfig?: IncrementalPullConfig;
|
|
113
|
+
IncrementalPullConfig?: IncrementalPullConfig | undefined;
|
|
114
114
|
SourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
115
115
|
}
|
|
116
116
|
export declare const MarketoConnectorOperator: {
|
|
@@ -226,11 +226,11 @@ export declare const ZendeskConnectorOperator: {
|
|
|
226
226
|
export type ZendeskConnectorOperator =
|
|
227
227
|
(typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
|
|
228
228
|
export interface ConnectorOperator {
|
|
229
|
-
Marketo?: MarketoConnectorOperator;
|
|
230
|
-
S3?: S3ConnectorOperator;
|
|
231
|
-
Salesforce?: SalesforceConnectorOperator;
|
|
232
|
-
ServiceNow?: ServiceNowConnectorOperator;
|
|
233
|
-
Zendesk?: ZendeskConnectorOperator;
|
|
229
|
+
Marketo?: MarketoConnectorOperator | undefined;
|
|
230
|
+
S3?: S3ConnectorOperator | undefined;
|
|
231
|
+
Salesforce?: SalesforceConnectorOperator | undefined;
|
|
232
|
+
ServiceNow?: ServiceNowConnectorOperator | undefined;
|
|
233
|
+
Zendesk?: ZendeskConnectorOperator | undefined;
|
|
234
234
|
}
|
|
235
235
|
export declare const OperatorPropertiesKeys: {
|
|
236
236
|
readonly CONCAT_FORMAT: "CONCAT_FORMAT";
|
|
@@ -261,10 +261,10 @@ export declare const TaskType: {
|
|
|
261
261
|
};
|
|
262
262
|
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
263
263
|
export interface Task {
|
|
264
|
-
ConnectorOperator?: ConnectorOperator;
|
|
265
|
-
DestinationField?: string;
|
|
264
|
+
ConnectorOperator?: ConnectorOperator | undefined;
|
|
265
|
+
DestinationField?: string | undefined;
|
|
266
266
|
SourceFields: string[] | undefined;
|
|
267
|
-
TaskProperties?: Partial<Record<OperatorPropertiesKeys, string
|
|
267
|
+
TaskProperties?: Partial<Record<OperatorPropertiesKeys, string>> | undefined;
|
|
268
268
|
TaskType: TaskType | undefined;
|
|
269
269
|
}
|
|
270
270
|
export declare const DataPullMode: {
|
|
@@ -274,15 +274,15 @@ export declare const DataPullMode: {
|
|
|
274
274
|
export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
|
|
275
275
|
export interface ScheduledTriggerProperties {
|
|
276
276
|
ScheduleExpression: string | undefined;
|
|
277
|
-
DataPullMode?: DataPullMode;
|
|
278
|
-
ScheduleStartTime?: Date;
|
|
279
|
-
ScheduleEndTime?: Date;
|
|
280
|
-
Timezone?: string;
|
|
281
|
-
ScheduleOffset?: number;
|
|
282
|
-
FirstExecutionFrom?: Date;
|
|
277
|
+
DataPullMode?: DataPullMode | undefined;
|
|
278
|
+
ScheduleStartTime?: Date | undefined;
|
|
279
|
+
ScheduleEndTime?: Date | undefined;
|
|
280
|
+
Timezone?: string | undefined;
|
|
281
|
+
ScheduleOffset?: number | undefined;
|
|
282
|
+
FirstExecutionFrom?: Date | undefined;
|
|
283
283
|
}
|
|
284
284
|
export interface TriggerProperties {
|
|
285
|
-
Scheduled?: ScheduledTriggerProperties;
|
|
285
|
+
Scheduled?: ScheduledTriggerProperties | undefined;
|
|
286
286
|
}
|
|
287
287
|
export declare const TriggerType: {
|
|
288
288
|
readonly EVENT: "Event";
|
|
@@ -292,10 +292,10 @@ export declare const TriggerType: {
|
|
|
292
292
|
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
293
293
|
export interface TriggerConfig {
|
|
294
294
|
TriggerType: TriggerType | undefined;
|
|
295
|
-
TriggerProperties?: TriggerProperties;
|
|
295
|
+
TriggerProperties?: TriggerProperties | undefined;
|
|
296
296
|
}
|
|
297
297
|
export interface FlowDefinition {
|
|
298
|
-
Description?: string;
|
|
298
|
+
Description?: string | undefined;
|
|
299
299
|
FlowName: string | undefined;
|
|
300
300
|
KmsArn: string | undefined;
|
|
301
301
|
SourceFlowConfig: SourceFlowConfig | undefined;
|
|
@@ -304,12 +304,12 @@ export interface FlowDefinition {
|
|
|
304
304
|
}
|
|
305
305
|
export interface AppflowIntegration {
|
|
306
306
|
FlowDefinition: FlowDefinition | undefined;
|
|
307
|
-
Batches?: Batch[];
|
|
307
|
+
Batches?: Batch[] | undefined;
|
|
308
308
|
}
|
|
309
309
|
export interface AppflowIntegrationWorkflowAttributes {
|
|
310
310
|
SourceConnectorType: SourceConnectorType | undefined;
|
|
311
311
|
ConnectorProfileName: string | undefined;
|
|
312
|
-
RoleArn?: string;
|
|
312
|
+
RoleArn?: string | undefined;
|
|
313
313
|
}
|
|
314
314
|
export interface AppflowIntegrationWorkflowMetrics {
|
|
315
315
|
RecordsProcessed: number | undefined;
|
|
@@ -351,9 +351,9 @@ export type AttributeMatchingModel =
|
|
|
351
351
|
(typeof AttributeMatchingModel)[keyof typeof AttributeMatchingModel];
|
|
352
352
|
export interface AttributeTypesSelector {
|
|
353
353
|
AttributeMatchingModel: AttributeMatchingModel | undefined;
|
|
354
|
-
Address?: string[];
|
|
355
|
-
PhoneNumber?: string[];
|
|
356
|
-
EmailAddress?: string[];
|
|
354
|
+
Address?: string[] | undefined;
|
|
355
|
+
PhoneNumber?: string[] | undefined;
|
|
356
|
+
EmailAddress?: string[] | undefined;
|
|
357
357
|
}
|
|
358
358
|
export declare const ConflictResolvingModel: {
|
|
359
359
|
readonly RECENCY: "RECENCY";
|
|
@@ -363,30 +363,30 @@ export type ConflictResolvingModel =
|
|
|
363
363
|
(typeof ConflictResolvingModel)[keyof typeof ConflictResolvingModel];
|
|
364
364
|
export interface ConflictResolution {
|
|
365
365
|
ConflictResolvingModel: ConflictResolvingModel | undefined;
|
|
366
|
-
SourceName?: string;
|
|
366
|
+
SourceName?: string | undefined;
|
|
367
367
|
}
|
|
368
368
|
export interface Consolidation {
|
|
369
369
|
MatchingAttributesList: string[][] | undefined;
|
|
370
370
|
}
|
|
371
371
|
export interface AutoMerging {
|
|
372
372
|
Enabled: boolean | undefined;
|
|
373
|
-
Consolidation?: Consolidation;
|
|
374
|
-
ConflictResolution?: ConflictResolution;
|
|
375
|
-
MinAllowedConfidenceScoreForMerging?: number;
|
|
373
|
+
Consolidation?: Consolidation | undefined;
|
|
374
|
+
ConflictResolution?: ConflictResolution | undefined;
|
|
375
|
+
MinAllowedConfidenceScoreForMerging?: number | undefined;
|
|
376
376
|
}
|
|
377
377
|
export interface ListCalculatedAttributeDefinitionItem {
|
|
378
|
-
CalculatedAttributeName?: string;
|
|
379
|
-
DisplayName?: string;
|
|
380
|
-
Description?: string;
|
|
381
|
-
CreatedAt?: Date;
|
|
382
|
-
LastUpdatedAt?: Date;
|
|
383
|
-
Tags?: Record<string, string
|
|
378
|
+
CalculatedAttributeName?: string | undefined;
|
|
379
|
+
DisplayName?: string | undefined;
|
|
380
|
+
Description?: string | undefined;
|
|
381
|
+
CreatedAt?: Date | undefined;
|
|
382
|
+
LastUpdatedAt?: Date | undefined;
|
|
383
|
+
Tags?: Record<string, string> | undefined;
|
|
384
384
|
}
|
|
385
385
|
export interface ListCalculatedAttributeForProfileItem {
|
|
386
|
-
CalculatedAttributeName?: string;
|
|
387
|
-
DisplayName?: string;
|
|
388
|
-
IsDataPartial?: string;
|
|
389
|
-
Value?: string;
|
|
386
|
+
CalculatedAttributeName?: string | undefined;
|
|
387
|
+
DisplayName?: string | undefined;
|
|
388
|
+
IsDataPartial?: string | undefined;
|
|
389
|
+
Value?: string | undefined;
|
|
390
390
|
}
|
|
391
391
|
export declare const Unit: {
|
|
392
392
|
readonly DAYS: "DAYS";
|
|
@@ -408,9 +408,9 @@ export interface Threshold {
|
|
|
408
408
|
Operator: Operator | undefined;
|
|
409
409
|
}
|
|
410
410
|
export interface Conditions {
|
|
411
|
-
Range?: Range;
|
|
412
|
-
ObjectCount?: number;
|
|
413
|
-
Threshold?: Threshold;
|
|
411
|
+
Range?: Range | undefined;
|
|
412
|
+
ObjectCount?: number | undefined;
|
|
413
|
+
Threshold?: Threshold | undefined;
|
|
414
414
|
}
|
|
415
415
|
export declare const Statistic: {
|
|
416
416
|
readonly AVERAGE: "AVERAGE";
|
|
@@ -426,30 +426,30 @@ export type Statistic = (typeof Statistic)[keyof typeof Statistic];
|
|
|
426
426
|
export interface CreateCalculatedAttributeDefinitionRequest {
|
|
427
427
|
DomainName: string | undefined;
|
|
428
428
|
CalculatedAttributeName: string | undefined;
|
|
429
|
-
DisplayName?: string;
|
|
430
|
-
Description?: string;
|
|
429
|
+
DisplayName?: string | undefined;
|
|
430
|
+
Description?: string | undefined;
|
|
431
431
|
AttributeDetails: AttributeDetails | undefined;
|
|
432
|
-
Conditions?: Conditions;
|
|
432
|
+
Conditions?: Conditions | undefined;
|
|
433
433
|
Statistic: Statistic | undefined;
|
|
434
|
-
Tags?: Record<string, string
|
|
434
|
+
Tags?: Record<string, string> | undefined;
|
|
435
435
|
}
|
|
436
436
|
export interface CreateCalculatedAttributeDefinitionResponse {
|
|
437
|
-
CalculatedAttributeName?: string;
|
|
438
|
-
DisplayName?: string;
|
|
439
|
-
Description?: string;
|
|
440
|
-
AttributeDetails?: AttributeDetails;
|
|
441
|
-
Conditions?: Conditions;
|
|
442
|
-
Statistic?: Statistic;
|
|
443
|
-
CreatedAt?: Date;
|
|
444
|
-
LastUpdatedAt?: Date;
|
|
445
|
-
Tags?: Record<string, string
|
|
437
|
+
CalculatedAttributeName?: string | undefined;
|
|
438
|
+
DisplayName?: string | undefined;
|
|
439
|
+
Description?: string | undefined;
|
|
440
|
+
AttributeDetails?: AttributeDetails | undefined;
|
|
441
|
+
Conditions?: Conditions | undefined;
|
|
442
|
+
Statistic?: Statistic | undefined;
|
|
443
|
+
CreatedAt?: Date | undefined;
|
|
444
|
+
LastUpdatedAt?: Date | undefined;
|
|
445
|
+
Tags?: Record<string, string> | undefined;
|
|
446
446
|
}
|
|
447
447
|
export interface S3ExportingConfig {
|
|
448
448
|
S3BucketName: string | undefined;
|
|
449
|
-
S3KeyName?: string;
|
|
449
|
+
S3KeyName?: string | undefined;
|
|
450
450
|
}
|
|
451
451
|
export interface ExportingConfig {
|
|
452
|
-
S3Exporting?: S3ExportingConfig;
|
|
452
|
+
S3Exporting?: S3ExportingConfig | undefined;
|
|
453
453
|
}
|
|
454
454
|
export declare const JobScheduleDayOfTheWeek: {
|
|
455
455
|
readonly FRIDAY: "FRIDAY";
|
|
@@ -468,36 +468,36 @@ export interface JobSchedule {
|
|
|
468
468
|
}
|
|
469
469
|
export interface MatchingRequest {
|
|
470
470
|
Enabled: boolean | undefined;
|
|
471
|
-
JobSchedule?: JobSchedule;
|
|
472
|
-
AutoMerging?: AutoMerging;
|
|
473
|
-
ExportingConfig?: ExportingConfig;
|
|
471
|
+
JobSchedule?: JobSchedule | undefined;
|
|
472
|
+
AutoMerging?: AutoMerging | undefined;
|
|
473
|
+
ExportingConfig?: ExportingConfig | undefined;
|
|
474
474
|
}
|
|
475
475
|
export interface MatchingRule {
|
|
476
476
|
Rule: string[] | undefined;
|
|
477
477
|
}
|
|
478
478
|
export interface RuleBasedMatchingRequest {
|
|
479
479
|
Enabled: boolean | undefined;
|
|
480
|
-
MatchingRules?: MatchingRule[];
|
|
481
|
-
MaxAllowedRuleLevelForMerging?: number;
|
|
482
|
-
MaxAllowedRuleLevelForMatching?: number;
|
|
483
|
-
AttributeTypesSelector?: AttributeTypesSelector;
|
|
484
|
-
ConflictResolution?: ConflictResolution;
|
|
485
|
-
ExportingConfig?: ExportingConfig;
|
|
480
|
+
MatchingRules?: MatchingRule[] | undefined;
|
|
481
|
+
MaxAllowedRuleLevelForMerging?: number | undefined;
|
|
482
|
+
MaxAllowedRuleLevelForMatching?: number | undefined;
|
|
483
|
+
AttributeTypesSelector?: AttributeTypesSelector | undefined;
|
|
484
|
+
ConflictResolution?: ConflictResolution | undefined;
|
|
485
|
+
ExportingConfig?: ExportingConfig | undefined;
|
|
486
486
|
}
|
|
487
487
|
export interface CreateDomainRequest {
|
|
488
488
|
DomainName: string | undefined;
|
|
489
489
|
DefaultExpirationDays: number | undefined;
|
|
490
|
-
DefaultEncryptionKey?: string;
|
|
491
|
-
DeadLetterQueueUrl?: string;
|
|
492
|
-
Matching?: MatchingRequest;
|
|
493
|
-
RuleBasedMatching?: RuleBasedMatchingRequest;
|
|
494
|
-
Tags?: Record<string, string
|
|
490
|
+
DefaultEncryptionKey?: string | undefined;
|
|
491
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
492
|
+
Matching?: MatchingRequest | undefined;
|
|
493
|
+
RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
|
|
494
|
+
Tags?: Record<string, string> | undefined;
|
|
495
495
|
}
|
|
496
496
|
export interface MatchingResponse {
|
|
497
|
-
Enabled?: boolean;
|
|
498
|
-
JobSchedule?: JobSchedule;
|
|
499
|
-
AutoMerging?: AutoMerging;
|
|
500
|
-
ExportingConfig?: ExportingConfig;
|
|
497
|
+
Enabled?: boolean | undefined;
|
|
498
|
+
JobSchedule?: JobSchedule | undefined;
|
|
499
|
+
AutoMerging?: AutoMerging | undefined;
|
|
500
|
+
ExportingConfig?: ExportingConfig | undefined;
|
|
501
501
|
}
|
|
502
502
|
export declare const RuleBasedMatchingStatus: {
|
|
503
503
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -507,38 +507,38 @@ export declare const RuleBasedMatchingStatus: {
|
|
|
507
507
|
export type RuleBasedMatchingStatus =
|
|
508
508
|
(typeof RuleBasedMatchingStatus)[keyof typeof RuleBasedMatchingStatus];
|
|
509
509
|
export interface RuleBasedMatchingResponse {
|
|
510
|
-
Enabled?: boolean;
|
|
511
|
-
MatchingRules?: MatchingRule[];
|
|
512
|
-
Status?: RuleBasedMatchingStatus;
|
|
513
|
-
MaxAllowedRuleLevelForMerging?: number;
|
|
514
|
-
MaxAllowedRuleLevelForMatching?: number;
|
|
515
|
-
AttributeTypesSelector?: AttributeTypesSelector;
|
|
516
|
-
ConflictResolution?: ConflictResolution;
|
|
517
|
-
ExportingConfig?: ExportingConfig;
|
|
510
|
+
Enabled?: boolean | undefined;
|
|
511
|
+
MatchingRules?: MatchingRule[] | undefined;
|
|
512
|
+
Status?: RuleBasedMatchingStatus | undefined;
|
|
513
|
+
MaxAllowedRuleLevelForMerging?: number | undefined;
|
|
514
|
+
MaxAllowedRuleLevelForMatching?: number | undefined;
|
|
515
|
+
AttributeTypesSelector?: AttributeTypesSelector | undefined;
|
|
516
|
+
ConflictResolution?: ConflictResolution | undefined;
|
|
517
|
+
ExportingConfig?: ExportingConfig | undefined;
|
|
518
518
|
}
|
|
519
519
|
export interface CreateDomainResponse {
|
|
520
520
|
DomainName: string | undefined;
|
|
521
521
|
DefaultExpirationDays: number | undefined;
|
|
522
|
-
DefaultEncryptionKey?: string;
|
|
523
|
-
DeadLetterQueueUrl?: string;
|
|
524
|
-
Matching?: MatchingResponse;
|
|
525
|
-
RuleBasedMatching?: RuleBasedMatchingResponse;
|
|
522
|
+
DefaultEncryptionKey?: string | undefined;
|
|
523
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
524
|
+
Matching?: MatchingResponse | undefined;
|
|
525
|
+
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
526
526
|
CreatedAt: Date | undefined;
|
|
527
527
|
LastUpdatedAt: Date | undefined;
|
|
528
|
-
Tags?: Record<string, string
|
|
528
|
+
Tags?: Record<string, string> | undefined;
|
|
529
529
|
}
|
|
530
530
|
export interface CreateEventStreamRequest {
|
|
531
531
|
DomainName: string | undefined;
|
|
532
532
|
Uri: string | undefined;
|
|
533
533
|
EventStreamName: string | undefined;
|
|
534
|
-
Tags?: Record<string, string
|
|
534
|
+
Tags?: Record<string, string> | undefined;
|
|
535
535
|
}
|
|
536
536
|
export interface CreateEventStreamResponse {
|
|
537
537
|
EventStreamArn: string | undefined;
|
|
538
|
-
Tags?: Record<string, string
|
|
538
|
+
Tags?: Record<string, string> | undefined;
|
|
539
539
|
}
|
|
540
540
|
export interface IntegrationConfig {
|
|
541
|
-
AppflowIntegration?: AppflowIntegration;
|
|
541
|
+
AppflowIntegration?: AppflowIntegration | undefined;
|
|
542
542
|
}
|
|
543
543
|
export declare const WorkflowType: {
|
|
544
544
|
readonly APPFLOW_INTEGRATION: "APPFLOW_INTEGRATION";
|
|
@@ -550,7 +550,7 @@ export interface CreateIntegrationWorkflowRequest {
|
|
|
550
550
|
IntegrationConfig: IntegrationConfig | undefined;
|
|
551
551
|
ObjectTypeName: string | undefined;
|
|
552
552
|
RoleArn: string | undefined;
|
|
553
|
-
Tags?: Record<string, string
|
|
553
|
+
Tags?: Record<string, string> | undefined;
|
|
554
554
|
}
|
|
555
555
|
export interface CreateIntegrationWorkflowResponse {
|
|
556
556
|
WorkflowId: string | undefined;
|
|
@@ -570,29 +570,29 @@ export declare const PartyType: {
|
|
|
570
570
|
export type PartyType = (typeof PartyType)[keyof typeof PartyType];
|
|
571
571
|
export interface CreateProfileRequest {
|
|
572
572
|
DomainName: string | undefined;
|
|
573
|
-
AccountNumber?: string;
|
|
574
|
-
AdditionalInformation?: string;
|
|
575
|
-
PartyType?: PartyType;
|
|
576
|
-
BusinessName?: string;
|
|
577
|
-
FirstName?: string;
|
|
578
|
-
MiddleName?: string;
|
|
579
|
-
LastName?: string;
|
|
580
|
-
BirthDate?: string;
|
|
581
|
-
Gender?: Gender;
|
|
582
|
-
PhoneNumber?: string;
|
|
583
|
-
MobilePhoneNumber?: string;
|
|
584
|
-
HomePhoneNumber?: string;
|
|
585
|
-
BusinessPhoneNumber?: string;
|
|
586
|
-
EmailAddress?: string;
|
|
587
|
-
PersonalEmailAddress?: string;
|
|
588
|
-
BusinessEmailAddress?: string;
|
|
589
|
-
Address?: Address;
|
|
590
|
-
ShippingAddress?: Address;
|
|
591
|
-
MailingAddress?: Address;
|
|
592
|
-
BillingAddress?: Address;
|
|
593
|
-
Attributes?: Record<string, string
|
|
594
|
-
PartyTypeString?: string;
|
|
595
|
-
GenderString?: string;
|
|
573
|
+
AccountNumber?: string | undefined;
|
|
574
|
+
AdditionalInformation?: string | undefined;
|
|
575
|
+
PartyType?: PartyType | undefined;
|
|
576
|
+
BusinessName?: string | undefined;
|
|
577
|
+
FirstName?: string | undefined;
|
|
578
|
+
MiddleName?: string | undefined;
|
|
579
|
+
LastName?: string | undefined;
|
|
580
|
+
BirthDate?: string | undefined;
|
|
581
|
+
Gender?: Gender | undefined;
|
|
582
|
+
PhoneNumber?: string | undefined;
|
|
583
|
+
MobilePhoneNumber?: string | undefined;
|
|
584
|
+
HomePhoneNumber?: string | undefined;
|
|
585
|
+
BusinessPhoneNumber?: string | undefined;
|
|
586
|
+
EmailAddress?: string | undefined;
|
|
587
|
+
PersonalEmailAddress?: string | undefined;
|
|
588
|
+
BusinessEmailAddress?: string | undefined;
|
|
589
|
+
Address?: Address | undefined;
|
|
590
|
+
ShippingAddress?: Address | undefined;
|
|
591
|
+
MailingAddress?: Address | undefined;
|
|
592
|
+
BillingAddress?: Address | undefined;
|
|
593
|
+
Attributes?: Record<string, string> | undefined;
|
|
594
|
+
PartyTypeString?: string | undefined;
|
|
595
|
+
GenderString?: string | undefined;
|
|
596
596
|
}
|
|
597
597
|
export interface CreateProfileResponse {
|
|
598
598
|
ProfileId: string | undefined;
|
|
@@ -625,7 +625,7 @@ export interface DeleteProfileRequest {
|
|
|
625
625
|
DomainName: string | undefined;
|
|
626
626
|
}
|
|
627
627
|
export interface DeleteProfileResponse {
|
|
628
|
-
Message?: string;
|
|
628
|
+
Message?: string | undefined;
|
|
629
629
|
}
|
|
630
630
|
export interface DeleteProfileKeyRequest {
|
|
631
631
|
ProfileId: string | undefined;
|
|
@@ -634,7 +634,7 @@ export interface DeleteProfileKeyRequest {
|
|
|
634
634
|
DomainName: string | undefined;
|
|
635
635
|
}
|
|
636
636
|
export interface DeleteProfileKeyResponse {
|
|
637
|
-
Message?: string;
|
|
637
|
+
Message?: string | undefined;
|
|
638
638
|
}
|
|
639
639
|
export interface DeleteProfileObjectRequest {
|
|
640
640
|
ProfileId: string | undefined;
|
|
@@ -643,7 +643,7 @@ export interface DeleteProfileObjectRequest {
|
|
|
643
643
|
DomainName: string | undefined;
|
|
644
644
|
}
|
|
645
645
|
export interface DeleteProfileObjectResponse {
|
|
646
|
-
Message?: string;
|
|
646
|
+
Message?: string | undefined;
|
|
647
647
|
}
|
|
648
648
|
export interface DeleteProfileObjectTypeRequest {
|
|
649
649
|
DomainName: string | undefined;
|
|
@@ -671,9 +671,9 @@ export declare const FieldContentType: {
|
|
|
671
671
|
export type FieldContentType =
|
|
672
672
|
(typeof FieldContentType)[keyof typeof FieldContentType];
|
|
673
673
|
export interface ObjectTypeField {
|
|
674
|
-
Source?: string;
|
|
675
|
-
Target?: string;
|
|
676
|
-
ContentType?: FieldContentType;
|
|
674
|
+
Source?: string | undefined;
|
|
675
|
+
Target?: string | undefined;
|
|
676
|
+
ContentType?: FieldContentType | undefined;
|
|
677
677
|
}
|
|
678
678
|
export declare const StandardIdentifier: {
|
|
679
679
|
readonly ASSET: "ASSET";
|
|
@@ -688,43 +688,43 @@ export declare const StandardIdentifier: {
|
|
|
688
688
|
export type StandardIdentifier =
|
|
689
689
|
(typeof StandardIdentifier)[keyof typeof StandardIdentifier];
|
|
690
690
|
export interface ObjectTypeKey {
|
|
691
|
-
StandardIdentifiers?: StandardIdentifier[];
|
|
692
|
-
FieldNames?: string[];
|
|
691
|
+
StandardIdentifiers?: StandardIdentifier[] | undefined;
|
|
692
|
+
FieldNames?: string[] | undefined;
|
|
693
693
|
}
|
|
694
694
|
export interface DetectedProfileObjectType {
|
|
695
|
-
SourceLastUpdatedTimestampFormat?: string;
|
|
696
|
-
Fields?: Record<string, ObjectTypeField
|
|
697
|
-
Keys?: Record<string, ObjectTypeKey[]
|
|
695
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
696
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
697
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
698
698
|
}
|
|
699
699
|
export interface DetectProfileObjectTypeResponse {
|
|
700
|
-
DetectedProfileObjectTypes?: DetectedProfileObjectType[];
|
|
700
|
+
DetectedProfileObjectTypes?: DetectedProfileObjectType[] | undefined;
|
|
701
701
|
}
|
|
702
702
|
export interface GetAutoMergingPreviewRequest {
|
|
703
703
|
DomainName: string | undefined;
|
|
704
704
|
Consolidation: Consolidation | undefined;
|
|
705
705
|
ConflictResolution: ConflictResolution | undefined;
|
|
706
|
-
MinAllowedConfidenceScoreForMerging?: number;
|
|
706
|
+
MinAllowedConfidenceScoreForMerging?: number | undefined;
|
|
707
707
|
}
|
|
708
708
|
export interface GetAutoMergingPreviewResponse {
|
|
709
709
|
DomainName: string | undefined;
|
|
710
|
-
NumberOfMatchesInSample?: number;
|
|
711
|
-
NumberOfProfilesInSample?: number;
|
|
712
|
-
NumberOfProfilesWillBeMerged?: number;
|
|
710
|
+
NumberOfMatchesInSample?: number | undefined;
|
|
711
|
+
NumberOfProfilesInSample?: number | undefined;
|
|
712
|
+
NumberOfProfilesWillBeMerged?: number | undefined;
|
|
713
713
|
}
|
|
714
714
|
export interface GetCalculatedAttributeDefinitionRequest {
|
|
715
715
|
DomainName: string | undefined;
|
|
716
716
|
CalculatedAttributeName: string | undefined;
|
|
717
717
|
}
|
|
718
718
|
export interface GetCalculatedAttributeDefinitionResponse {
|
|
719
|
-
CalculatedAttributeName?: string;
|
|
720
|
-
DisplayName?: string;
|
|
721
|
-
Description?: string;
|
|
722
|
-
CreatedAt?: Date;
|
|
723
|
-
LastUpdatedAt?: Date;
|
|
724
|
-
Statistic?: Statistic;
|
|
725
|
-
Conditions?: Conditions;
|
|
726
|
-
AttributeDetails?: AttributeDetails;
|
|
727
|
-
Tags?: Record<string, string
|
|
719
|
+
CalculatedAttributeName?: string | undefined;
|
|
720
|
+
DisplayName?: string | undefined;
|
|
721
|
+
Description?: string | undefined;
|
|
722
|
+
CreatedAt?: Date | undefined;
|
|
723
|
+
LastUpdatedAt?: Date | undefined;
|
|
724
|
+
Statistic?: Statistic | undefined;
|
|
725
|
+
Conditions?: Conditions | undefined;
|
|
726
|
+
AttributeDetails?: AttributeDetails | undefined;
|
|
727
|
+
Tags?: Record<string, string> | undefined;
|
|
728
728
|
}
|
|
729
729
|
export interface GetCalculatedAttributeForProfileRequest {
|
|
730
730
|
DomainName: string | undefined;
|
|
@@ -732,31 +732,31 @@ export interface GetCalculatedAttributeForProfileRequest {
|
|
|
732
732
|
CalculatedAttributeName: string | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface GetCalculatedAttributeForProfileResponse {
|
|
735
|
-
CalculatedAttributeName?: string;
|
|
736
|
-
DisplayName?: string;
|
|
737
|
-
IsDataPartial?: string;
|
|
738
|
-
Value?: string;
|
|
735
|
+
CalculatedAttributeName?: string | undefined;
|
|
736
|
+
DisplayName?: string | undefined;
|
|
737
|
+
IsDataPartial?: string | undefined;
|
|
738
|
+
Value?: string | undefined;
|
|
739
739
|
}
|
|
740
740
|
export interface GetDomainRequest {
|
|
741
741
|
DomainName: string | undefined;
|
|
742
742
|
}
|
|
743
743
|
export interface DomainStats {
|
|
744
|
-
ProfileCount?: number;
|
|
745
|
-
MeteringProfileCount?: number;
|
|
746
|
-
ObjectCount?: number;
|
|
747
|
-
TotalSize?: number;
|
|
744
|
+
ProfileCount?: number | undefined;
|
|
745
|
+
MeteringProfileCount?: number | undefined;
|
|
746
|
+
ObjectCount?: number | undefined;
|
|
747
|
+
TotalSize?: number | undefined;
|
|
748
748
|
}
|
|
749
749
|
export interface GetDomainResponse {
|
|
750
750
|
DomainName: string | undefined;
|
|
751
|
-
DefaultExpirationDays?: number;
|
|
752
|
-
DefaultEncryptionKey?: string;
|
|
753
|
-
DeadLetterQueueUrl?: string;
|
|
754
|
-
Stats?: DomainStats;
|
|
755
|
-
Matching?: MatchingResponse;
|
|
756
|
-
RuleBasedMatching?: RuleBasedMatchingResponse;
|
|
751
|
+
DefaultExpirationDays?: number | undefined;
|
|
752
|
+
DefaultEncryptionKey?: string | undefined;
|
|
753
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
754
|
+
Stats?: DomainStats | undefined;
|
|
755
|
+
Matching?: MatchingResponse | undefined;
|
|
756
|
+
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
757
757
|
CreatedAt: Date | undefined;
|
|
758
758
|
LastUpdatedAt: Date | undefined;
|
|
759
|
-
Tags?: Record<string, string
|
|
759
|
+
Tags?: Record<string, string> | undefined;
|
|
760
760
|
}
|
|
761
761
|
export interface GetEventStreamRequest {
|
|
762
762
|
DomainName: string | undefined;
|
|
@@ -771,8 +771,8 @@ export type EventStreamDestinationStatus =
|
|
|
771
771
|
export interface EventStreamDestinationDetails {
|
|
772
772
|
Uri: string | undefined;
|
|
773
773
|
Status: EventStreamDestinationStatus | undefined;
|
|
774
|
-
UnhealthySince?: Date;
|
|
775
|
-
Message?: string;
|
|
774
|
+
UnhealthySince?: Date | undefined;
|
|
775
|
+
Message?: string | undefined;
|
|
776
776
|
}
|
|
777
777
|
export declare const EventStreamState: {
|
|
778
778
|
readonly RUNNING: "RUNNING";
|
|
@@ -785,25 +785,25 @@ export interface GetEventStreamResponse {
|
|
|
785
785
|
EventStreamArn: string | undefined;
|
|
786
786
|
CreatedAt: Date | undefined;
|
|
787
787
|
State: EventStreamState | undefined;
|
|
788
|
-
StoppedSince?: Date;
|
|
788
|
+
StoppedSince?: Date | undefined;
|
|
789
789
|
DestinationDetails: EventStreamDestinationDetails | undefined;
|
|
790
|
-
Tags?: Record<string, string
|
|
790
|
+
Tags?: Record<string, string> | undefined;
|
|
791
791
|
}
|
|
792
792
|
export interface GetIdentityResolutionJobRequest {
|
|
793
793
|
DomainName: string | undefined;
|
|
794
794
|
JobId: string | undefined;
|
|
795
795
|
}
|
|
796
796
|
export interface S3ExportingLocation {
|
|
797
|
-
S3BucketName?: string;
|
|
798
|
-
S3KeyName?: string;
|
|
797
|
+
S3BucketName?: string | undefined;
|
|
798
|
+
S3KeyName?: string | undefined;
|
|
799
799
|
}
|
|
800
800
|
export interface ExportingLocation {
|
|
801
|
-
S3Exporting?: S3ExportingLocation;
|
|
801
|
+
S3Exporting?: S3ExportingLocation | undefined;
|
|
802
802
|
}
|
|
803
803
|
export interface JobStats {
|
|
804
|
-
NumberOfProfilesReviewed?: number;
|
|
805
|
-
NumberOfMatchesFound?: number;
|
|
806
|
-
NumberOfMergesDone?: number;
|
|
804
|
+
NumberOfProfilesReviewed?: number | undefined;
|
|
805
|
+
NumberOfMatchesFound?: number | undefined;
|
|
806
|
+
NumberOfMergesDone?: number | undefined;
|
|
807
807
|
}
|
|
808
808
|
export declare const IdentityResolutionJobStatus: {
|
|
809
809
|
readonly COMPLETED: "COMPLETED";
|
|
@@ -817,17 +817,17 @@ export declare const IdentityResolutionJobStatus: {
|
|
|
817
817
|
export type IdentityResolutionJobStatus =
|
|
818
818
|
(typeof IdentityResolutionJobStatus)[keyof typeof IdentityResolutionJobStatus];
|
|
819
819
|
export interface GetIdentityResolutionJobResponse {
|
|
820
|
-
DomainName?: string;
|
|
821
|
-
JobId?: string;
|
|
822
|
-
Status?: IdentityResolutionJobStatus;
|
|
823
|
-
Message?: string;
|
|
824
|
-
JobStartTime?: Date;
|
|
825
|
-
JobEndTime?: Date;
|
|
826
|
-
LastUpdatedAt?: Date;
|
|
827
|
-
JobExpirationTime?: Date;
|
|
828
|
-
AutoMerging?: AutoMerging;
|
|
829
|
-
ExportingLocation?: ExportingLocation;
|
|
830
|
-
JobStats?: JobStats;
|
|
820
|
+
DomainName?: string | undefined;
|
|
821
|
+
JobId?: string | undefined;
|
|
822
|
+
Status?: IdentityResolutionJobStatus | undefined;
|
|
823
|
+
Message?: string | undefined;
|
|
824
|
+
JobStartTime?: Date | undefined;
|
|
825
|
+
JobEndTime?: Date | undefined;
|
|
826
|
+
LastUpdatedAt?: Date | undefined;
|
|
827
|
+
JobExpirationTime?: Date | undefined;
|
|
828
|
+
AutoMerging?: AutoMerging | undefined;
|
|
829
|
+
ExportingLocation?: ExportingLocation | undefined;
|
|
830
|
+
JobStats?: JobStats | undefined;
|
|
831
831
|
}
|
|
832
832
|
export interface GetIntegrationRequest {
|
|
833
833
|
DomainName: string | undefined;
|
|
@@ -836,30 +836,30 @@ export interface GetIntegrationRequest {
|
|
|
836
836
|
export interface GetIntegrationResponse {
|
|
837
837
|
DomainName: string | undefined;
|
|
838
838
|
Uri: string | undefined;
|
|
839
|
-
ObjectTypeName?: string;
|
|
839
|
+
ObjectTypeName?: string | undefined;
|
|
840
840
|
CreatedAt: Date | undefined;
|
|
841
841
|
LastUpdatedAt: Date | undefined;
|
|
842
|
-
Tags?: Record<string, string
|
|
843
|
-
ObjectTypeNames?: Record<string, string
|
|
844
|
-
WorkflowId?: string;
|
|
845
|
-
IsUnstructured?: boolean;
|
|
846
|
-
RoleArn?: string;
|
|
842
|
+
Tags?: Record<string, string> | undefined;
|
|
843
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
844
|
+
WorkflowId?: string | undefined;
|
|
845
|
+
IsUnstructured?: boolean | undefined;
|
|
846
|
+
RoleArn?: string | undefined;
|
|
847
847
|
}
|
|
848
848
|
export interface GetMatchesRequest {
|
|
849
|
-
NextToken?: string;
|
|
850
|
-
MaxResults?: number;
|
|
849
|
+
NextToken?: string | undefined;
|
|
850
|
+
MaxResults?: number | undefined;
|
|
851
851
|
DomainName: string | undefined;
|
|
852
852
|
}
|
|
853
853
|
export interface MatchItem {
|
|
854
|
-
MatchId?: string;
|
|
855
|
-
ProfileIds?: string[];
|
|
856
|
-
ConfidenceScore?: number;
|
|
854
|
+
MatchId?: string | undefined;
|
|
855
|
+
ProfileIds?: string[] | undefined;
|
|
856
|
+
ConfidenceScore?: number | undefined;
|
|
857
857
|
}
|
|
858
858
|
export interface GetMatchesResponse {
|
|
859
|
-
NextToken?: string;
|
|
860
|
-
MatchGenerationDate?: Date;
|
|
861
|
-
PotentialMatches?: number;
|
|
862
|
-
Matches?: MatchItem[];
|
|
859
|
+
NextToken?: string | undefined;
|
|
860
|
+
MatchGenerationDate?: Date | undefined;
|
|
861
|
+
PotentialMatches?: number | undefined;
|
|
862
|
+
Matches?: MatchItem[] | undefined;
|
|
863
863
|
}
|
|
864
864
|
export interface GetProfileObjectTypeRequest {
|
|
865
865
|
DomainName: string | undefined;
|
|
@@ -868,30 +868,30 @@ export interface GetProfileObjectTypeRequest {
|
|
|
868
868
|
export interface GetProfileObjectTypeResponse {
|
|
869
869
|
ObjectTypeName: string | undefined;
|
|
870
870
|
Description: string | undefined;
|
|
871
|
-
TemplateId?: string;
|
|
872
|
-
ExpirationDays?: number;
|
|
873
|
-
EncryptionKey?: string;
|
|
874
|
-
AllowProfileCreation?: boolean;
|
|
875
|
-
SourceLastUpdatedTimestampFormat?: string;
|
|
876
|
-
MaxAvailableProfileObjectCount?: number;
|
|
877
|
-
MaxProfileObjectCount?: number;
|
|
878
|
-
Fields?: Record<string, ObjectTypeField
|
|
879
|
-
Keys?: Record<string, ObjectTypeKey[]
|
|
880
|
-
CreatedAt?: Date;
|
|
881
|
-
LastUpdatedAt?: Date;
|
|
882
|
-
Tags?: Record<string, string
|
|
871
|
+
TemplateId?: string | undefined;
|
|
872
|
+
ExpirationDays?: number | undefined;
|
|
873
|
+
EncryptionKey?: string | undefined;
|
|
874
|
+
AllowProfileCreation?: boolean | undefined;
|
|
875
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
876
|
+
MaxAvailableProfileObjectCount?: number | undefined;
|
|
877
|
+
MaxProfileObjectCount?: number | undefined;
|
|
878
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
879
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
880
|
+
CreatedAt?: Date | undefined;
|
|
881
|
+
LastUpdatedAt?: Date | undefined;
|
|
882
|
+
Tags?: Record<string, string> | undefined;
|
|
883
883
|
}
|
|
884
884
|
export interface GetProfileObjectTypeTemplateRequest {
|
|
885
885
|
TemplateId: string | undefined;
|
|
886
886
|
}
|
|
887
887
|
export interface GetProfileObjectTypeTemplateResponse {
|
|
888
|
-
TemplateId?: string;
|
|
889
|
-
SourceName?: string;
|
|
890
|
-
SourceObject?: string;
|
|
891
|
-
AllowProfileCreation?: boolean;
|
|
892
|
-
SourceLastUpdatedTimestampFormat?: string;
|
|
893
|
-
Fields?: Record<string, ObjectTypeField
|
|
894
|
-
Keys?: Record<string, ObjectTypeKey[]
|
|
888
|
+
TemplateId?: string | undefined;
|
|
889
|
+
SourceName?: string | undefined;
|
|
890
|
+
SourceObject?: string | undefined;
|
|
891
|
+
AllowProfileCreation?: boolean | undefined;
|
|
892
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
893
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
894
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
895
895
|
}
|
|
896
896
|
export declare const MatchType: {
|
|
897
897
|
readonly ML_BASED_MATCHING: "ML_BASED_MATCHING";
|
|
@@ -899,238 +899,238 @@ export declare const MatchType: {
|
|
|
899
899
|
};
|
|
900
900
|
export type MatchType = (typeof MatchType)[keyof typeof MatchType];
|
|
901
901
|
export interface GetSimilarProfilesRequest {
|
|
902
|
-
NextToken?: string;
|
|
903
|
-
MaxResults?: number;
|
|
902
|
+
NextToken?: string | undefined;
|
|
903
|
+
MaxResults?: number | undefined;
|
|
904
904
|
DomainName: string | undefined;
|
|
905
905
|
MatchType: MatchType | undefined;
|
|
906
906
|
SearchKey: string | undefined;
|
|
907
907
|
SearchValue: string | undefined;
|
|
908
908
|
}
|
|
909
909
|
export interface GetSimilarProfilesResponse {
|
|
910
|
-
ProfileIds?: string[];
|
|
911
|
-
MatchId?: string;
|
|
912
|
-
MatchType?: MatchType;
|
|
913
|
-
RuleLevel?: number;
|
|
914
|
-
ConfidenceScore?: number;
|
|
915
|
-
NextToken?: string;
|
|
910
|
+
ProfileIds?: string[] | undefined;
|
|
911
|
+
MatchId?: string | undefined;
|
|
912
|
+
MatchType?: MatchType | undefined;
|
|
913
|
+
RuleLevel?: number | undefined;
|
|
914
|
+
ConfidenceScore?: number | undefined;
|
|
915
|
+
NextToken?: string | undefined;
|
|
916
916
|
}
|
|
917
917
|
export interface GetWorkflowRequest {
|
|
918
918
|
DomainName: string | undefined;
|
|
919
919
|
WorkflowId: string | undefined;
|
|
920
920
|
}
|
|
921
921
|
export interface WorkflowAttributes {
|
|
922
|
-
AppflowIntegration?: AppflowIntegrationWorkflowAttributes;
|
|
922
|
+
AppflowIntegration?: AppflowIntegrationWorkflowAttributes | undefined;
|
|
923
923
|
}
|
|
924
924
|
export interface WorkflowMetrics {
|
|
925
|
-
AppflowIntegration?: AppflowIntegrationWorkflowMetrics;
|
|
925
|
+
AppflowIntegration?: AppflowIntegrationWorkflowMetrics | undefined;
|
|
926
926
|
}
|
|
927
927
|
export interface GetWorkflowResponse {
|
|
928
|
-
WorkflowId?: string;
|
|
929
|
-
WorkflowType?: WorkflowType;
|
|
930
|
-
Status?: Status;
|
|
931
|
-
ErrorDescription?: string;
|
|
932
|
-
StartDate?: Date;
|
|
933
|
-
LastUpdatedAt?: Date;
|
|
934
|
-
Attributes?: WorkflowAttributes;
|
|
935
|
-
Metrics?: WorkflowMetrics;
|
|
928
|
+
WorkflowId?: string | undefined;
|
|
929
|
+
WorkflowType?: WorkflowType | undefined;
|
|
930
|
+
Status?: Status | undefined;
|
|
931
|
+
ErrorDescription?: string | undefined;
|
|
932
|
+
StartDate?: Date | undefined;
|
|
933
|
+
LastUpdatedAt?: Date | undefined;
|
|
934
|
+
Attributes?: WorkflowAttributes | undefined;
|
|
935
|
+
Metrics?: WorkflowMetrics | undefined;
|
|
936
936
|
}
|
|
937
937
|
export interface GetWorkflowStepsRequest {
|
|
938
938
|
DomainName: string | undefined;
|
|
939
939
|
WorkflowId: string | undefined;
|
|
940
|
-
NextToken?: string;
|
|
941
|
-
MaxResults?: number;
|
|
940
|
+
NextToken?: string | undefined;
|
|
941
|
+
MaxResults?: number | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface WorkflowStepItem {
|
|
944
|
-
AppflowIntegration?: AppflowIntegrationWorkflowStep;
|
|
944
|
+
AppflowIntegration?: AppflowIntegrationWorkflowStep | undefined;
|
|
945
945
|
}
|
|
946
946
|
export interface GetWorkflowStepsResponse {
|
|
947
|
-
WorkflowId?: string;
|
|
948
|
-
WorkflowType?: WorkflowType;
|
|
949
|
-
Items?: WorkflowStepItem[];
|
|
950
|
-
NextToken?: string;
|
|
947
|
+
WorkflowId?: string | undefined;
|
|
948
|
+
WorkflowType?: WorkflowType | undefined;
|
|
949
|
+
Items?: WorkflowStepItem[] | undefined;
|
|
950
|
+
NextToken?: string | undefined;
|
|
951
951
|
}
|
|
952
952
|
export interface ListAccountIntegrationsRequest {
|
|
953
953
|
Uri: string | undefined;
|
|
954
|
-
NextToken?: string;
|
|
955
|
-
MaxResults?: number;
|
|
956
|
-
IncludeHidden?: boolean;
|
|
954
|
+
NextToken?: string | undefined;
|
|
955
|
+
MaxResults?: number | undefined;
|
|
956
|
+
IncludeHidden?: boolean | undefined;
|
|
957
957
|
}
|
|
958
958
|
export interface ListIntegrationItem {
|
|
959
959
|
DomainName: string | undefined;
|
|
960
960
|
Uri: string | undefined;
|
|
961
|
-
ObjectTypeName?: string;
|
|
961
|
+
ObjectTypeName?: string | undefined;
|
|
962
962
|
CreatedAt: Date | undefined;
|
|
963
963
|
LastUpdatedAt: Date | undefined;
|
|
964
|
-
Tags?: Record<string, string
|
|
965
|
-
ObjectTypeNames?: Record<string, string
|
|
966
|
-
WorkflowId?: string;
|
|
967
|
-
IsUnstructured?: boolean;
|
|
968
|
-
RoleArn?: string;
|
|
964
|
+
Tags?: Record<string, string> | undefined;
|
|
965
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
966
|
+
WorkflowId?: string | undefined;
|
|
967
|
+
IsUnstructured?: boolean | undefined;
|
|
968
|
+
RoleArn?: string | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface ListAccountIntegrationsResponse {
|
|
971
|
-
Items?: ListIntegrationItem[];
|
|
972
|
-
NextToken?: string;
|
|
971
|
+
Items?: ListIntegrationItem[] | undefined;
|
|
972
|
+
NextToken?: string | undefined;
|
|
973
973
|
}
|
|
974
974
|
export interface ListCalculatedAttributeDefinitionsRequest {
|
|
975
975
|
DomainName: string | undefined;
|
|
976
|
-
NextToken?: string;
|
|
977
|
-
MaxResults?: number;
|
|
976
|
+
NextToken?: string | undefined;
|
|
977
|
+
MaxResults?: number | undefined;
|
|
978
978
|
}
|
|
979
979
|
export interface ListCalculatedAttributeDefinitionsResponse {
|
|
980
|
-
Items?: ListCalculatedAttributeDefinitionItem[];
|
|
981
|
-
NextToken?: string;
|
|
980
|
+
Items?: ListCalculatedAttributeDefinitionItem[] | undefined;
|
|
981
|
+
NextToken?: string | undefined;
|
|
982
982
|
}
|
|
983
983
|
export interface ListCalculatedAttributesForProfileRequest {
|
|
984
|
-
NextToken?: string;
|
|
985
|
-
MaxResults?: number;
|
|
984
|
+
NextToken?: string | undefined;
|
|
985
|
+
MaxResults?: number | undefined;
|
|
986
986
|
DomainName: string | undefined;
|
|
987
987
|
ProfileId: string | undefined;
|
|
988
988
|
}
|
|
989
989
|
export interface ListCalculatedAttributesForProfileResponse {
|
|
990
|
-
Items?: ListCalculatedAttributeForProfileItem[];
|
|
991
|
-
NextToken?: string;
|
|
990
|
+
Items?: ListCalculatedAttributeForProfileItem[] | undefined;
|
|
991
|
+
NextToken?: string | undefined;
|
|
992
992
|
}
|
|
993
993
|
export interface ListDomainsRequest {
|
|
994
|
-
NextToken?: string;
|
|
995
|
-
MaxResults?: number;
|
|
994
|
+
NextToken?: string | undefined;
|
|
995
|
+
MaxResults?: number | undefined;
|
|
996
996
|
}
|
|
997
997
|
export interface ListDomainItem {
|
|
998
998
|
DomainName: string | undefined;
|
|
999
999
|
CreatedAt: Date | undefined;
|
|
1000
1000
|
LastUpdatedAt: Date | undefined;
|
|
1001
|
-
Tags?: Record<string, string
|
|
1001
|
+
Tags?: Record<string, string> | undefined;
|
|
1002
1002
|
}
|
|
1003
1003
|
export interface ListDomainsResponse {
|
|
1004
|
-
Items?: ListDomainItem[];
|
|
1005
|
-
NextToken?: string;
|
|
1004
|
+
Items?: ListDomainItem[] | undefined;
|
|
1005
|
+
NextToken?: string | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
export interface ListEventStreamsRequest {
|
|
1008
1008
|
DomainName: string | undefined;
|
|
1009
|
-
NextToken?: string;
|
|
1010
|
-
MaxResults?: number;
|
|
1009
|
+
NextToken?: string | undefined;
|
|
1010
|
+
MaxResults?: number | undefined;
|
|
1011
1011
|
}
|
|
1012
1012
|
export interface DestinationSummary {
|
|
1013
1013
|
Uri: string | undefined;
|
|
1014
1014
|
Status: EventStreamDestinationStatus | undefined;
|
|
1015
|
-
UnhealthySince?: Date;
|
|
1015
|
+
UnhealthySince?: Date | undefined;
|
|
1016
1016
|
}
|
|
1017
1017
|
export interface EventStreamSummary {
|
|
1018
1018
|
DomainName: string | undefined;
|
|
1019
1019
|
EventStreamName: string | undefined;
|
|
1020
1020
|
EventStreamArn: string | undefined;
|
|
1021
1021
|
State: EventStreamState | undefined;
|
|
1022
|
-
StoppedSince?: Date;
|
|
1023
|
-
DestinationSummary?: DestinationSummary;
|
|
1024
|
-
Tags?: Record<string, string
|
|
1022
|
+
StoppedSince?: Date | undefined;
|
|
1023
|
+
DestinationSummary?: DestinationSummary | undefined;
|
|
1024
|
+
Tags?: Record<string, string> | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
export interface ListEventStreamsResponse {
|
|
1027
|
-
Items?: EventStreamSummary[];
|
|
1028
|
-
NextToken?: string;
|
|
1027
|
+
Items?: EventStreamSummary[] | undefined;
|
|
1028
|
+
NextToken?: string | undefined;
|
|
1029
1029
|
}
|
|
1030
1030
|
export interface ListIdentityResolutionJobsRequest {
|
|
1031
1031
|
DomainName: string | undefined;
|
|
1032
|
-
NextToken?: string;
|
|
1033
|
-
MaxResults?: number;
|
|
1032
|
+
NextToken?: string | undefined;
|
|
1033
|
+
MaxResults?: number | undefined;
|
|
1034
1034
|
}
|
|
1035
1035
|
export interface IdentityResolutionJob {
|
|
1036
|
-
DomainName?: string;
|
|
1037
|
-
JobId?: string;
|
|
1038
|
-
Status?: IdentityResolutionJobStatus;
|
|
1039
|
-
JobStartTime?: Date;
|
|
1040
|
-
JobEndTime?: Date;
|
|
1041
|
-
JobStats?: JobStats;
|
|
1042
|
-
ExportingLocation?: ExportingLocation;
|
|
1043
|
-
Message?: string;
|
|
1036
|
+
DomainName?: string | undefined;
|
|
1037
|
+
JobId?: string | undefined;
|
|
1038
|
+
Status?: IdentityResolutionJobStatus | undefined;
|
|
1039
|
+
JobStartTime?: Date | undefined;
|
|
1040
|
+
JobEndTime?: Date | undefined;
|
|
1041
|
+
JobStats?: JobStats | undefined;
|
|
1042
|
+
ExportingLocation?: ExportingLocation | undefined;
|
|
1043
|
+
Message?: string | undefined;
|
|
1044
1044
|
}
|
|
1045
1045
|
export interface ListIdentityResolutionJobsResponse {
|
|
1046
|
-
IdentityResolutionJobsList?: IdentityResolutionJob[];
|
|
1047
|
-
NextToken?: string;
|
|
1046
|
+
IdentityResolutionJobsList?: IdentityResolutionJob[] | undefined;
|
|
1047
|
+
NextToken?: string | undefined;
|
|
1048
1048
|
}
|
|
1049
1049
|
export interface ListIntegrationsRequest {
|
|
1050
1050
|
DomainName: string | undefined;
|
|
1051
|
-
NextToken?: string;
|
|
1052
|
-
MaxResults?: number;
|
|
1053
|
-
IncludeHidden?: boolean;
|
|
1051
|
+
NextToken?: string | undefined;
|
|
1052
|
+
MaxResults?: number | undefined;
|
|
1053
|
+
IncludeHidden?: boolean | undefined;
|
|
1054
1054
|
}
|
|
1055
1055
|
export interface ListIntegrationsResponse {
|
|
1056
|
-
Items?: ListIntegrationItem[];
|
|
1057
|
-
NextToken?: string;
|
|
1056
|
+
Items?: ListIntegrationItem[] | undefined;
|
|
1057
|
+
NextToken?: string | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface ObjectFilter {
|
|
1060
1060
|
KeyName: string | undefined;
|
|
1061
1061
|
Values: string[] | undefined;
|
|
1062
1062
|
}
|
|
1063
1063
|
export interface ListProfileObjectsRequest {
|
|
1064
|
-
NextToken?: string;
|
|
1065
|
-
MaxResults?: number;
|
|
1064
|
+
NextToken?: string | undefined;
|
|
1065
|
+
MaxResults?: number | undefined;
|
|
1066
1066
|
DomainName: string | undefined;
|
|
1067
1067
|
ObjectTypeName: string | undefined;
|
|
1068
1068
|
ProfileId: string | undefined;
|
|
1069
|
-
ObjectFilter?: ObjectFilter;
|
|
1069
|
+
ObjectFilter?: ObjectFilter | undefined;
|
|
1070
1070
|
}
|
|
1071
1071
|
export interface ListProfileObjectsItem {
|
|
1072
|
-
ObjectTypeName?: string;
|
|
1073
|
-
ProfileObjectUniqueKey?: string;
|
|
1074
|
-
Object?: string;
|
|
1072
|
+
ObjectTypeName?: string | undefined;
|
|
1073
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
1074
|
+
Object?: string | undefined;
|
|
1075
1075
|
}
|
|
1076
1076
|
export interface ListProfileObjectsResponse {
|
|
1077
|
-
Items?: ListProfileObjectsItem[];
|
|
1078
|
-
NextToken?: string;
|
|
1077
|
+
Items?: ListProfileObjectsItem[] | undefined;
|
|
1078
|
+
NextToken?: string | undefined;
|
|
1079
1079
|
}
|
|
1080
1080
|
export interface ListProfileObjectTypesRequest {
|
|
1081
1081
|
DomainName: string | undefined;
|
|
1082
|
-
NextToken?: string;
|
|
1083
|
-
MaxResults?: number;
|
|
1082
|
+
NextToken?: string | undefined;
|
|
1083
|
+
MaxResults?: number | undefined;
|
|
1084
1084
|
}
|
|
1085
1085
|
export interface ListProfileObjectTypeItem {
|
|
1086
1086
|
ObjectTypeName: string | undefined;
|
|
1087
1087
|
Description: string | undefined;
|
|
1088
|
-
CreatedAt?: Date;
|
|
1089
|
-
LastUpdatedAt?: Date;
|
|
1090
|
-
MaxProfileObjectCount?: number;
|
|
1091
|
-
MaxAvailableProfileObjectCount?: number;
|
|
1092
|
-
Tags?: Record<string, string
|
|
1088
|
+
CreatedAt?: Date | undefined;
|
|
1089
|
+
LastUpdatedAt?: Date | undefined;
|
|
1090
|
+
MaxProfileObjectCount?: number | undefined;
|
|
1091
|
+
MaxAvailableProfileObjectCount?: number | undefined;
|
|
1092
|
+
Tags?: Record<string, string> | undefined;
|
|
1093
1093
|
}
|
|
1094
1094
|
export interface ListProfileObjectTypesResponse {
|
|
1095
|
-
Items?: ListProfileObjectTypeItem[];
|
|
1096
|
-
NextToken?: string;
|
|
1095
|
+
Items?: ListProfileObjectTypeItem[] | undefined;
|
|
1096
|
+
NextToken?: string | undefined;
|
|
1097
1097
|
}
|
|
1098
1098
|
export interface ListProfileObjectTypeTemplatesRequest {
|
|
1099
|
-
NextToken?: string;
|
|
1100
|
-
MaxResults?: number;
|
|
1099
|
+
NextToken?: string | undefined;
|
|
1100
|
+
MaxResults?: number | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
export interface ListProfileObjectTypeTemplateItem {
|
|
1103
|
-
TemplateId?: string;
|
|
1104
|
-
SourceName?: string;
|
|
1105
|
-
SourceObject?: string;
|
|
1103
|
+
TemplateId?: string | undefined;
|
|
1104
|
+
SourceName?: string | undefined;
|
|
1105
|
+
SourceObject?: string | undefined;
|
|
1106
1106
|
}
|
|
1107
1107
|
export interface ListProfileObjectTypeTemplatesResponse {
|
|
1108
|
-
Items?: ListProfileObjectTypeTemplateItem[];
|
|
1109
|
-
NextToken?: string;
|
|
1108
|
+
Items?: ListProfileObjectTypeTemplateItem[] | undefined;
|
|
1109
|
+
NextToken?: string | undefined;
|
|
1110
1110
|
}
|
|
1111
1111
|
export interface ListRuleBasedMatchesRequest {
|
|
1112
|
-
NextToken?: string;
|
|
1113
|
-
MaxResults?: number;
|
|
1112
|
+
NextToken?: string | undefined;
|
|
1113
|
+
MaxResults?: number | undefined;
|
|
1114
1114
|
DomainName: string | undefined;
|
|
1115
1115
|
}
|
|
1116
1116
|
export interface ListRuleBasedMatchesResponse {
|
|
1117
|
-
MatchIds?: string[];
|
|
1118
|
-
NextToken?: string;
|
|
1117
|
+
MatchIds?: string[] | undefined;
|
|
1118
|
+
NextToken?: string | undefined;
|
|
1119
1119
|
}
|
|
1120
1120
|
export interface ListTagsForResourceRequest {
|
|
1121
1121
|
resourceArn: string | undefined;
|
|
1122
1122
|
}
|
|
1123
1123
|
export interface ListTagsForResourceResponse {
|
|
1124
|
-
tags?: Record<string, string
|
|
1124
|
+
tags?: Record<string, string> | undefined;
|
|
1125
1125
|
}
|
|
1126
1126
|
export interface ListWorkflowsRequest {
|
|
1127
1127
|
DomainName: string | undefined;
|
|
1128
|
-
WorkflowType?: WorkflowType;
|
|
1129
|
-
Status?: Status;
|
|
1130
|
-
QueryStartDate?: Date;
|
|
1131
|
-
QueryEndDate?: Date;
|
|
1132
|
-
NextToken?: string;
|
|
1133
|
-
MaxResults?: number;
|
|
1128
|
+
WorkflowType?: WorkflowType | undefined;
|
|
1129
|
+
Status?: Status | undefined;
|
|
1130
|
+
QueryStartDate?: Date | undefined;
|
|
1131
|
+
QueryEndDate?: Date | undefined;
|
|
1132
|
+
NextToken?: string | undefined;
|
|
1133
|
+
MaxResults?: number | undefined;
|
|
1134
1134
|
}
|
|
1135
1135
|
export interface ListWorkflowsItem {
|
|
1136
1136
|
WorkflowType: WorkflowType | undefined;
|
|
@@ -1141,61 +1141,61 @@ export interface ListWorkflowsItem {
|
|
|
1141
1141
|
LastUpdatedAt: Date | undefined;
|
|
1142
1142
|
}
|
|
1143
1143
|
export interface ListWorkflowsResponse {
|
|
1144
|
-
Items?: ListWorkflowsItem[];
|
|
1145
|
-
NextToken?: string;
|
|
1144
|
+
Items?: ListWorkflowsItem[] | undefined;
|
|
1145
|
+
NextToken?: string | undefined;
|
|
1146
1146
|
}
|
|
1147
1147
|
export interface FieldSourceProfileIds {
|
|
1148
|
-
AccountNumber?: string;
|
|
1149
|
-
AdditionalInformation?: string;
|
|
1150
|
-
PartyType?: string;
|
|
1151
|
-
BusinessName?: string;
|
|
1152
|
-
FirstName?: string;
|
|
1153
|
-
MiddleName?: string;
|
|
1154
|
-
LastName?: string;
|
|
1155
|
-
BirthDate?: string;
|
|
1156
|
-
Gender?: string;
|
|
1157
|
-
PhoneNumber?: string;
|
|
1158
|
-
MobilePhoneNumber?: string;
|
|
1159
|
-
HomePhoneNumber?: string;
|
|
1160
|
-
BusinessPhoneNumber?: string;
|
|
1161
|
-
EmailAddress?: string;
|
|
1162
|
-
PersonalEmailAddress?: string;
|
|
1163
|
-
BusinessEmailAddress?: string;
|
|
1164
|
-
Address?: string;
|
|
1165
|
-
ShippingAddress?: string;
|
|
1166
|
-
MailingAddress?: string;
|
|
1167
|
-
BillingAddress?: string;
|
|
1168
|
-
Attributes?: Record<string, string
|
|
1148
|
+
AccountNumber?: string | undefined;
|
|
1149
|
+
AdditionalInformation?: string | undefined;
|
|
1150
|
+
PartyType?: string | undefined;
|
|
1151
|
+
BusinessName?: string | undefined;
|
|
1152
|
+
FirstName?: string | undefined;
|
|
1153
|
+
MiddleName?: string | undefined;
|
|
1154
|
+
LastName?: string | undefined;
|
|
1155
|
+
BirthDate?: string | undefined;
|
|
1156
|
+
Gender?: string | undefined;
|
|
1157
|
+
PhoneNumber?: string | undefined;
|
|
1158
|
+
MobilePhoneNumber?: string | undefined;
|
|
1159
|
+
HomePhoneNumber?: string | undefined;
|
|
1160
|
+
BusinessPhoneNumber?: string | undefined;
|
|
1161
|
+
EmailAddress?: string | undefined;
|
|
1162
|
+
PersonalEmailAddress?: string | undefined;
|
|
1163
|
+
BusinessEmailAddress?: string | undefined;
|
|
1164
|
+
Address?: string | undefined;
|
|
1165
|
+
ShippingAddress?: string | undefined;
|
|
1166
|
+
MailingAddress?: string | undefined;
|
|
1167
|
+
BillingAddress?: string | undefined;
|
|
1168
|
+
Attributes?: Record<string, string> | undefined;
|
|
1169
1169
|
}
|
|
1170
1170
|
export interface MergeProfilesRequest {
|
|
1171
1171
|
DomainName: string | undefined;
|
|
1172
1172
|
MainProfileId: string | undefined;
|
|
1173
1173
|
ProfileIdsToBeMerged: string[] | undefined;
|
|
1174
|
-
FieldSourceProfileIds?: FieldSourceProfileIds;
|
|
1174
|
+
FieldSourceProfileIds?: FieldSourceProfileIds | undefined;
|
|
1175
1175
|
}
|
|
1176
1176
|
export interface MergeProfilesResponse {
|
|
1177
|
-
Message?: string;
|
|
1177
|
+
Message?: string | undefined;
|
|
1178
1178
|
}
|
|
1179
1179
|
export interface PutIntegrationRequest {
|
|
1180
1180
|
DomainName: string | undefined;
|
|
1181
|
-
Uri?: string;
|
|
1182
|
-
ObjectTypeName?: string;
|
|
1183
|
-
Tags?: Record<string, string
|
|
1184
|
-
FlowDefinition?: FlowDefinition;
|
|
1185
|
-
ObjectTypeNames?: Record<string, string
|
|
1186
|
-
RoleArn?: string;
|
|
1181
|
+
Uri?: string | undefined;
|
|
1182
|
+
ObjectTypeName?: string | undefined;
|
|
1183
|
+
Tags?: Record<string, string> | undefined;
|
|
1184
|
+
FlowDefinition?: FlowDefinition | undefined;
|
|
1185
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1186
|
+
RoleArn?: string | undefined;
|
|
1187
1187
|
}
|
|
1188
1188
|
export interface PutIntegrationResponse {
|
|
1189
1189
|
DomainName: string | undefined;
|
|
1190
1190
|
Uri: string | undefined;
|
|
1191
|
-
ObjectTypeName?: string;
|
|
1191
|
+
ObjectTypeName?: string | undefined;
|
|
1192
1192
|
CreatedAt: Date | undefined;
|
|
1193
1193
|
LastUpdatedAt: Date | undefined;
|
|
1194
|
-
Tags?: Record<string, string
|
|
1195
|
-
ObjectTypeNames?: Record<string, string
|
|
1196
|
-
WorkflowId?: string;
|
|
1197
|
-
IsUnstructured?: boolean;
|
|
1198
|
-
RoleArn?: string;
|
|
1194
|
+
Tags?: Record<string, string> | undefined;
|
|
1195
|
+
ObjectTypeNames?: Record<string, string> | undefined;
|
|
1196
|
+
WorkflowId?: string | undefined;
|
|
1197
|
+
IsUnstructured?: boolean | undefined;
|
|
1198
|
+
RoleArn?: string | undefined;
|
|
1199
1199
|
}
|
|
1200
1200
|
export interface PutProfileObjectRequest {
|
|
1201
1201
|
ObjectTypeName: string | undefined;
|
|
@@ -1203,37 +1203,37 @@ export interface PutProfileObjectRequest {
|
|
|
1203
1203
|
DomainName: string | undefined;
|
|
1204
1204
|
}
|
|
1205
1205
|
export interface PutProfileObjectResponse {
|
|
1206
|
-
ProfileObjectUniqueKey?: string;
|
|
1206
|
+
ProfileObjectUniqueKey?: string | undefined;
|
|
1207
1207
|
}
|
|
1208
1208
|
export interface PutProfileObjectTypeRequest {
|
|
1209
1209
|
DomainName: string | undefined;
|
|
1210
1210
|
ObjectTypeName: string | undefined;
|
|
1211
1211
|
Description: string | undefined;
|
|
1212
|
-
TemplateId?: string;
|
|
1213
|
-
ExpirationDays?: number;
|
|
1214
|
-
EncryptionKey?: string;
|
|
1215
|
-
AllowProfileCreation?: boolean;
|
|
1216
|
-
SourceLastUpdatedTimestampFormat?: string;
|
|
1217
|
-
MaxProfileObjectCount?: number;
|
|
1218
|
-
Fields?: Record<string, ObjectTypeField
|
|
1219
|
-
Keys?: Record<string, ObjectTypeKey[]
|
|
1220
|
-
Tags?: Record<string, string
|
|
1212
|
+
TemplateId?: string | undefined;
|
|
1213
|
+
ExpirationDays?: number | undefined;
|
|
1214
|
+
EncryptionKey?: string | undefined;
|
|
1215
|
+
AllowProfileCreation?: boolean | undefined;
|
|
1216
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
1217
|
+
MaxProfileObjectCount?: number | undefined;
|
|
1218
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1219
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
1220
|
+
Tags?: Record<string, string> | undefined;
|
|
1221
1221
|
}
|
|
1222
1222
|
export interface PutProfileObjectTypeResponse {
|
|
1223
1223
|
ObjectTypeName: string | undefined;
|
|
1224
1224
|
Description: string | undefined;
|
|
1225
|
-
TemplateId?: string;
|
|
1226
|
-
ExpirationDays?: number;
|
|
1227
|
-
EncryptionKey?: string;
|
|
1228
|
-
AllowProfileCreation?: boolean;
|
|
1229
|
-
SourceLastUpdatedTimestampFormat?: string;
|
|
1230
|
-
MaxProfileObjectCount?: number;
|
|
1231
|
-
MaxAvailableProfileObjectCount?: number;
|
|
1232
|
-
Fields?: Record<string, ObjectTypeField
|
|
1233
|
-
Keys?: Record<string, ObjectTypeKey[]
|
|
1234
|
-
CreatedAt?: Date;
|
|
1235
|
-
LastUpdatedAt?: Date;
|
|
1236
|
-
Tags?: Record<string, string
|
|
1225
|
+
TemplateId?: string | undefined;
|
|
1226
|
+
ExpirationDays?: number | undefined;
|
|
1227
|
+
EncryptionKey?: string | undefined;
|
|
1228
|
+
AllowProfileCreation?: boolean | undefined;
|
|
1229
|
+
SourceLastUpdatedTimestampFormat?: string | undefined;
|
|
1230
|
+
MaxProfileObjectCount?: number | undefined;
|
|
1231
|
+
MaxAvailableProfileObjectCount?: number | undefined;
|
|
1232
|
+
Fields?: Record<string, ObjectTypeField> | undefined;
|
|
1233
|
+
Keys?: Record<string, ObjectTypeKey[]> | undefined;
|
|
1234
|
+
CreatedAt?: Date | undefined;
|
|
1235
|
+
LastUpdatedAt?: Date | undefined;
|
|
1236
|
+
Tags?: Record<string, string> | undefined;
|
|
1237
1237
|
}
|
|
1238
1238
|
export declare const LogicalOperator: {
|
|
1239
1239
|
readonly AND: "AND";
|
|
@@ -1242,48 +1242,48 @@ export declare const LogicalOperator: {
|
|
|
1242
1242
|
export type LogicalOperator =
|
|
1243
1243
|
(typeof LogicalOperator)[keyof typeof LogicalOperator];
|
|
1244
1244
|
export interface SearchProfilesRequest {
|
|
1245
|
-
NextToken?: string;
|
|
1246
|
-
MaxResults?: number;
|
|
1245
|
+
NextToken?: string | undefined;
|
|
1246
|
+
MaxResults?: number | undefined;
|
|
1247
1247
|
DomainName: string | undefined;
|
|
1248
1248
|
KeyName: string | undefined;
|
|
1249
1249
|
Values: string[] | undefined;
|
|
1250
|
-
AdditionalSearchKeys?: AdditionalSearchKey[];
|
|
1251
|
-
LogicalOperator?: LogicalOperator;
|
|
1250
|
+
AdditionalSearchKeys?: AdditionalSearchKey[] | undefined;
|
|
1251
|
+
LogicalOperator?: LogicalOperator | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
export interface FoundByKeyValue {
|
|
1254
|
-
KeyName?: string;
|
|
1255
|
-
Values?: string[];
|
|
1254
|
+
KeyName?: string | undefined;
|
|
1255
|
+
Values?: string[] | undefined;
|
|
1256
1256
|
}
|
|
1257
1257
|
export interface Profile {
|
|
1258
|
-
ProfileId?: string;
|
|
1259
|
-
AccountNumber?: string;
|
|
1260
|
-
AdditionalInformation?: string;
|
|
1261
|
-
PartyType?: PartyType;
|
|
1262
|
-
BusinessName?: string;
|
|
1263
|
-
FirstName?: string;
|
|
1264
|
-
MiddleName?: string;
|
|
1265
|
-
LastName?: string;
|
|
1266
|
-
BirthDate?: string;
|
|
1267
|
-
Gender?: Gender;
|
|
1268
|
-
PhoneNumber?: string;
|
|
1269
|
-
MobilePhoneNumber?: string;
|
|
1270
|
-
HomePhoneNumber?: string;
|
|
1271
|
-
BusinessPhoneNumber?: string;
|
|
1272
|
-
EmailAddress?: string;
|
|
1273
|
-
PersonalEmailAddress?: string;
|
|
1274
|
-
BusinessEmailAddress?: string;
|
|
1275
|
-
Address?: Address;
|
|
1276
|
-
ShippingAddress?: Address;
|
|
1277
|
-
MailingAddress?: Address;
|
|
1278
|
-
BillingAddress?: Address;
|
|
1279
|
-
Attributes?: Record<string, string
|
|
1280
|
-
FoundByItems?: FoundByKeyValue[];
|
|
1281
|
-
PartyTypeString?: string;
|
|
1282
|
-
GenderString?: string;
|
|
1258
|
+
ProfileId?: string | undefined;
|
|
1259
|
+
AccountNumber?: string | undefined;
|
|
1260
|
+
AdditionalInformation?: string | undefined;
|
|
1261
|
+
PartyType?: PartyType | undefined;
|
|
1262
|
+
BusinessName?: string | undefined;
|
|
1263
|
+
FirstName?: string | undefined;
|
|
1264
|
+
MiddleName?: string | undefined;
|
|
1265
|
+
LastName?: string | undefined;
|
|
1266
|
+
BirthDate?: string | undefined;
|
|
1267
|
+
Gender?: Gender | undefined;
|
|
1268
|
+
PhoneNumber?: string | undefined;
|
|
1269
|
+
MobilePhoneNumber?: string | undefined;
|
|
1270
|
+
HomePhoneNumber?: string | undefined;
|
|
1271
|
+
BusinessPhoneNumber?: string | undefined;
|
|
1272
|
+
EmailAddress?: string | undefined;
|
|
1273
|
+
PersonalEmailAddress?: string | undefined;
|
|
1274
|
+
BusinessEmailAddress?: string | undefined;
|
|
1275
|
+
Address?: Address | undefined;
|
|
1276
|
+
ShippingAddress?: Address | undefined;
|
|
1277
|
+
MailingAddress?: Address | undefined;
|
|
1278
|
+
BillingAddress?: Address | undefined;
|
|
1279
|
+
Attributes?: Record<string, string> | undefined;
|
|
1280
|
+
FoundByItems?: FoundByKeyValue[] | undefined;
|
|
1281
|
+
PartyTypeString?: string | undefined;
|
|
1282
|
+
GenderString?: string | undefined;
|
|
1283
1283
|
}
|
|
1284
1284
|
export interface SearchProfilesResponse {
|
|
1285
|
-
Items?: Profile[];
|
|
1286
|
-
NextToken?: string;
|
|
1285
|
+
Items?: Profile[] | undefined;
|
|
1286
|
+
NextToken?: string | undefined;
|
|
1287
1287
|
}
|
|
1288
1288
|
export interface TagResourceRequest {
|
|
1289
1289
|
resourceArn: string | undefined;
|
|
@@ -1298,79 +1298,79 @@ export interface UntagResourceResponse {}
|
|
|
1298
1298
|
export interface UpdateCalculatedAttributeDefinitionRequest {
|
|
1299
1299
|
DomainName: string | undefined;
|
|
1300
1300
|
CalculatedAttributeName: string | undefined;
|
|
1301
|
-
DisplayName?: string;
|
|
1302
|
-
Description?: string;
|
|
1303
|
-
Conditions?: Conditions;
|
|
1301
|
+
DisplayName?: string | undefined;
|
|
1302
|
+
Description?: string | undefined;
|
|
1303
|
+
Conditions?: Conditions | undefined;
|
|
1304
1304
|
}
|
|
1305
1305
|
export interface UpdateCalculatedAttributeDefinitionResponse {
|
|
1306
|
-
CalculatedAttributeName?: string;
|
|
1307
|
-
DisplayName?: string;
|
|
1308
|
-
Description?: string;
|
|
1309
|
-
CreatedAt?: Date;
|
|
1310
|
-
LastUpdatedAt?: Date;
|
|
1311
|
-
Statistic?: Statistic;
|
|
1312
|
-
Conditions?: Conditions;
|
|
1313
|
-
AttributeDetails?: AttributeDetails;
|
|
1314
|
-
Tags?: Record<string, string
|
|
1306
|
+
CalculatedAttributeName?: string | undefined;
|
|
1307
|
+
DisplayName?: string | undefined;
|
|
1308
|
+
Description?: string | undefined;
|
|
1309
|
+
CreatedAt?: Date | undefined;
|
|
1310
|
+
LastUpdatedAt?: Date | undefined;
|
|
1311
|
+
Statistic?: Statistic | undefined;
|
|
1312
|
+
Conditions?: Conditions | undefined;
|
|
1313
|
+
AttributeDetails?: AttributeDetails | undefined;
|
|
1314
|
+
Tags?: Record<string, string> | undefined;
|
|
1315
1315
|
}
|
|
1316
1316
|
export interface UpdateDomainRequest {
|
|
1317
1317
|
DomainName: string | undefined;
|
|
1318
|
-
DefaultExpirationDays?: number;
|
|
1319
|
-
DefaultEncryptionKey?: string;
|
|
1320
|
-
DeadLetterQueueUrl?: string;
|
|
1321
|
-
Matching?: MatchingRequest;
|
|
1322
|
-
RuleBasedMatching?: RuleBasedMatchingRequest;
|
|
1323
|
-
Tags?: Record<string, string
|
|
1318
|
+
DefaultExpirationDays?: number | undefined;
|
|
1319
|
+
DefaultEncryptionKey?: string | undefined;
|
|
1320
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
1321
|
+
Matching?: MatchingRequest | undefined;
|
|
1322
|
+
RuleBasedMatching?: RuleBasedMatchingRequest | undefined;
|
|
1323
|
+
Tags?: Record<string, string> | undefined;
|
|
1324
1324
|
}
|
|
1325
1325
|
export interface UpdateDomainResponse {
|
|
1326
1326
|
DomainName: string | undefined;
|
|
1327
|
-
DefaultExpirationDays?: number;
|
|
1328
|
-
DefaultEncryptionKey?: string;
|
|
1329
|
-
DeadLetterQueueUrl?: string;
|
|
1330
|
-
Matching?: MatchingResponse;
|
|
1331
|
-
RuleBasedMatching?: RuleBasedMatchingResponse;
|
|
1327
|
+
DefaultExpirationDays?: number | undefined;
|
|
1328
|
+
DefaultEncryptionKey?: string | undefined;
|
|
1329
|
+
DeadLetterQueueUrl?: string | undefined;
|
|
1330
|
+
Matching?: MatchingResponse | undefined;
|
|
1331
|
+
RuleBasedMatching?: RuleBasedMatchingResponse | undefined;
|
|
1332
1332
|
CreatedAt: Date | undefined;
|
|
1333
1333
|
LastUpdatedAt: Date | undefined;
|
|
1334
|
-
Tags?: Record<string, string
|
|
1334
|
+
Tags?: Record<string, string> | undefined;
|
|
1335
1335
|
}
|
|
1336
1336
|
export interface UpdateAddress {
|
|
1337
|
-
Address1?: string;
|
|
1338
|
-
Address2?: string;
|
|
1339
|
-
Address3?: string;
|
|
1340
|
-
Address4?: string;
|
|
1341
|
-
City?: string;
|
|
1342
|
-
County?: string;
|
|
1343
|
-
State?: string;
|
|
1344
|
-
Province?: string;
|
|
1345
|
-
Country?: string;
|
|
1346
|
-
PostalCode?: string;
|
|
1337
|
+
Address1?: string | undefined;
|
|
1338
|
+
Address2?: string | undefined;
|
|
1339
|
+
Address3?: string | undefined;
|
|
1340
|
+
Address4?: string | undefined;
|
|
1341
|
+
City?: string | undefined;
|
|
1342
|
+
County?: string | undefined;
|
|
1343
|
+
State?: string | undefined;
|
|
1344
|
+
Province?: string | undefined;
|
|
1345
|
+
Country?: string | undefined;
|
|
1346
|
+
PostalCode?: string | undefined;
|
|
1347
1347
|
}
|
|
1348
1348
|
export interface UpdateProfileRequest {
|
|
1349
1349
|
DomainName: string | undefined;
|
|
1350
1350
|
ProfileId: string | undefined;
|
|
1351
|
-
AdditionalInformation?: string;
|
|
1352
|
-
AccountNumber?: string;
|
|
1353
|
-
PartyType?: PartyType;
|
|
1354
|
-
BusinessName?: string;
|
|
1355
|
-
FirstName?: string;
|
|
1356
|
-
MiddleName?: string;
|
|
1357
|
-
LastName?: string;
|
|
1358
|
-
BirthDate?: string;
|
|
1359
|
-
Gender?: Gender;
|
|
1360
|
-
PhoneNumber?: string;
|
|
1361
|
-
MobilePhoneNumber?: string;
|
|
1362
|
-
HomePhoneNumber?: string;
|
|
1363
|
-
BusinessPhoneNumber?: string;
|
|
1364
|
-
EmailAddress?: string;
|
|
1365
|
-
PersonalEmailAddress?: string;
|
|
1366
|
-
BusinessEmailAddress?: string;
|
|
1367
|
-
Address?: UpdateAddress;
|
|
1368
|
-
ShippingAddress?: UpdateAddress;
|
|
1369
|
-
MailingAddress?: UpdateAddress;
|
|
1370
|
-
BillingAddress?: UpdateAddress;
|
|
1371
|
-
Attributes?: Record<string, string
|
|
1372
|
-
PartyTypeString?: string;
|
|
1373
|
-
GenderString?: string;
|
|
1351
|
+
AdditionalInformation?: string | undefined;
|
|
1352
|
+
AccountNumber?: string | undefined;
|
|
1353
|
+
PartyType?: PartyType | undefined;
|
|
1354
|
+
BusinessName?: string | undefined;
|
|
1355
|
+
FirstName?: string | undefined;
|
|
1356
|
+
MiddleName?: string | undefined;
|
|
1357
|
+
LastName?: string | undefined;
|
|
1358
|
+
BirthDate?: string | undefined;
|
|
1359
|
+
Gender?: Gender | undefined;
|
|
1360
|
+
PhoneNumber?: string | undefined;
|
|
1361
|
+
MobilePhoneNumber?: string | undefined;
|
|
1362
|
+
HomePhoneNumber?: string | undefined;
|
|
1363
|
+
BusinessPhoneNumber?: string | undefined;
|
|
1364
|
+
EmailAddress?: string | undefined;
|
|
1365
|
+
PersonalEmailAddress?: string | undefined;
|
|
1366
|
+
BusinessEmailAddress?: string | undefined;
|
|
1367
|
+
Address?: UpdateAddress | undefined;
|
|
1368
|
+
ShippingAddress?: UpdateAddress | undefined;
|
|
1369
|
+
MailingAddress?: UpdateAddress | undefined;
|
|
1370
|
+
BillingAddress?: UpdateAddress | undefined;
|
|
1371
|
+
Attributes?: Record<string, string> | undefined;
|
|
1372
|
+
PartyTypeString?: string | undefined;
|
|
1373
|
+
GenderString?: string | undefined;
|
|
1374
1374
|
}
|
|
1375
1375
|
export interface UpdateProfileResponse {
|
|
1376
1376
|
ProfileId: string | undefined;
|