@aws-sdk/client-entityresolution 3.817.0 → 3.822.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/README.md +9 -11
- package/dist-cjs/index.js +69 -0
- package/dist-es/EntityResolution.js +2 -0
- package/dist-es/commands/GenerateMatchIdCommand.js +23 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +13 -0
- package/dist-es/protocols/Aws_restJson1.js +30 -0
- package/dist-types/EntityResolution.d.ts +8 -11
- package/dist-types/EntityResolutionClient.d.ts +4 -13
- package/dist-types/commands/AddPolicyStatementCommand.d.ts +3 -7
- package/dist-types/commands/BatchDeleteUniqueIdCommand.d.ts +1 -2
- package/dist-types/commands/CreateIdMappingWorkflowCommand.d.ts +4 -12
- package/dist-types/commands/CreateIdNamespaceCommand.d.ts +4 -11
- package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +4 -12
- package/dist-types/commands/CreateSchemaMappingCommand.d.ts +4 -11
- package/dist-types/commands/DeleteIdMappingWorkflowCommand.d.ts +3 -7
- package/dist-types/commands/DeleteIdNamespaceCommand.d.ts +1 -2
- package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +3 -7
- package/dist-types/commands/DeletePolicyStatementCommand.d.ts +2 -5
- package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +3 -9
- package/dist-types/commands/GenerateMatchIdCommand.d.ts +115 -0
- package/dist-types/commands/GetIdMappingJobCommand.d.ts +2 -4
- package/dist-types/commands/GetIdMappingWorkflowCommand.d.ts +1 -2
- package/dist-types/commands/GetIdNamespaceCommand.d.ts +1 -2
- package/dist-types/commands/GetMatchIdCommand.d.ts +2 -6
- package/dist-types/commands/GetMatchingJobCommand.d.ts +2 -4
- package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +1 -2
- package/dist-types/commands/GetPolicyCommand.d.ts +1 -2
- package/dist-types/commands/GetProviderServiceCommand.d.ts +1 -2
- package/dist-types/commands/GetSchemaMappingCommand.d.ts +1 -2
- package/dist-types/commands/ListIdMappingJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListIdMappingWorkflowsCommand.d.ts +2 -4
- package/dist-types/commands/ListIdNamespacesCommand.d.ts +1 -2
- package/dist-types/commands/ListMatchingJobsCommand.d.ts +1 -2
- package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +2 -4
- package/dist-types/commands/ListProviderServicesCommand.d.ts +2 -4
- package/dist-types/commands/ListSchemaMappingsCommand.d.ts +2 -4
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -4
- package/dist-types/commands/PutPolicyCommand.d.ts +2 -5
- package/dist-types/commands/StartIdMappingJobCommand.d.ts +4 -10
- package/dist-types/commands/StartMatchingJobCommand.d.ts +4 -10
- package/dist-types/commands/TagResourceCommand.d.ts +2 -12
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -4
- package/dist-types/commands/UpdateIdMappingWorkflowCommand.d.ts +2 -6
- package/dist-types/commands/UpdateIdNamespaceCommand.d.ts +1 -2
- package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +2 -6
- package/dist-types/commands/UpdateSchemaMappingCommand.d.ts +3 -10
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -11
- package/dist-types/models/models_0.d.ts +310 -531
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/EntityResolution.d.ts +17 -0
- package/dist-types/ts3.4/EntityResolutionClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/GenerateMatchIdCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +39 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +33 -33
|
@@ -30,39 +30,27 @@ export type StatementEffect = (typeof StatementEffect)[keyof typeof StatementEff
|
|
|
30
30
|
*/
|
|
31
31
|
export interface AddPolicyStatementInput {
|
|
32
32
|
/**
|
|
33
|
-
* <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the
|
|
34
|
-
* principal.</p>
|
|
33
|
+
* <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.</p>
|
|
35
34
|
* @public
|
|
36
35
|
*/
|
|
37
36
|
arn: string | undefined;
|
|
38
37
|
/**
|
|
39
|
-
* <p>A statement identifier that differentiates the statement from others in the same
|
|
40
|
-
* policy.</p>
|
|
38
|
+
* <p>A statement identifier that differentiates the statement from others in the same policy.</p>
|
|
41
39
|
* @public
|
|
42
40
|
*/
|
|
43
41
|
statementId: string | undefined;
|
|
44
42
|
/**
|
|
45
|
-
* <p>Determines whether the permissions specified in the policy are to be allowed
|
|
46
|
-
* (<code>Allow</code>) or denied (<code>Deny</code>).</p>
|
|
47
|
-
* <important>
|
|
48
|
-
* <p> If you set the value of the <code>effect</code> parameter to <code>Deny</code> for
|
|
49
|
-
* the <code>AddPolicyStatement</code> operation, you must also set the value of the
|
|
50
|
-
* <code>effect</code> parameter in the <code>policy</code> to <code>Deny</code> for the
|
|
51
|
-
* <code>PutPolicy</code> operation.</p>
|
|
52
|
-
* </important>
|
|
43
|
+
* <p>Determines whether the permissions specified in the policy are to be allowed (<code>Allow</code>) or denied (<code>Deny</code>).</p> <important> <p> If you set the value of the <code>effect</code> parameter to <code>Deny</code> for the <code>AddPolicyStatement</code> operation, you must also set the value of the <code>effect</code> parameter in the <code>policy</code> to <code>Deny</code> for the <code>PutPolicy</code> operation.</p> </important>
|
|
53
44
|
* @public
|
|
54
45
|
*/
|
|
55
46
|
effect: StatementEffect | undefined;
|
|
56
47
|
/**
|
|
57
|
-
* <p>The action that the principal can use on the resource. </p>
|
|
58
|
-
* <p>For example, <code>entityresolution:GetIdMappingJob</code>,
|
|
59
|
-
* <code>entityresolution:GetMatchingJob</code>.</p>
|
|
48
|
+
* <p>The action that the principal can use on the resource. </p> <p>For example, <code>entityresolution:GetIdMappingJob</code>, <code>entityresolution:GetMatchingJob</code>.</p>
|
|
60
49
|
* @public
|
|
61
50
|
*/
|
|
62
51
|
action: string[] | undefined;
|
|
63
52
|
/**
|
|
64
|
-
* <p>The Amazon Web Services service or Amazon Web Services account that can access the
|
|
65
|
-
* resource defined as ARN.</p>
|
|
53
|
+
* <p>The Amazon Web Services service or Amazon Web Services account that can access the resource defined as ARN.</p>
|
|
66
54
|
* @public
|
|
67
55
|
*/
|
|
68
56
|
principal: string[] | undefined;
|
|
@@ -77,8 +65,7 @@ export interface AddPolicyStatementInput {
|
|
|
77
65
|
*/
|
|
78
66
|
export interface AddPolicyStatementOutput {
|
|
79
67
|
/**
|
|
80
|
-
* <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the
|
|
81
|
-
* principal.</p>
|
|
68
|
+
* <p>The Amazon Resource Name (ARN) of the resource that will be accessed by the principal.</p>
|
|
82
69
|
* @public
|
|
83
70
|
*/
|
|
84
71
|
arn: string | undefined;
|
|
@@ -94,9 +81,7 @@ export interface AddPolicyStatementOutput {
|
|
|
94
81
|
policy?: string | undefined;
|
|
95
82
|
}
|
|
96
83
|
/**
|
|
97
|
-
* <p>The request could not be processed because of conflict in the current state of the
|
|
98
|
-
* resource. Example: Workflow already exists, Schema already exists, Workflow is currently
|
|
99
|
-
* running, etc. </p>
|
|
84
|
+
* <p>The request could not be processed because of conflict in the current state of the resource. Example: Workflow already exists, Schema already exists, Workflow is currently running, etc. </p>
|
|
100
85
|
* @public
|
|
101
86
|
*/
|
|
102
87
|
export declare class ConflictException extends __BaseException {
|
|
@@ -108,8 +93,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
108
93
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
109
94
|
}
|
|
110
95
|
/**
|
|
111
|
-
* <p>This exception occurs when there is an internal failure in the Entity Resolution
|
|
112
|
-
* service. </p>
|
|
96
|
+
* <p>This exception occurs when there is an internal failure in the Entity Resolution service. </p>
|
|
113
97
|
* @public
|
|
114
98
|
*/
|
|
115
99
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -281,23 +265,18 @@ export declare const IdMappingType: {
|
|
|
281
265
|
*/
|
|
282
266
|
export type IdMappingType = (typeof IdMappingType)[keyof typeof IdMappingType];
|
|
283
267
|
/**
|
|
284
|
-
* <p>The Amazon S3 location that temporarily stores your data while it processes.
|
|
285
|
-
* Your information won't be saved permanently.</p>
|
|
268
|
+
* <p>The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.</p>
|
|
286
269
|
* @public
|
|
287
270
|
*/
|
|
288
271
|
export interface IntermediateSourceConfiguration {
|
|
289
272
|
/**
|
|
290
|
-
* <p>The Amazon S3 location (bucket and prefix). For example:
|
|
291
|
-
* <code>s3://provider_bucket/DOC-EXAMPLE-BUCKET</code>
|
|
292
|
-
* </p>
|
|
273
|
+
* <p>The Amazon S3 location (bucket and prefix). For example: <code>s3://provider_bucket/DOC-EXAMPLE-BUCKET</code> </p>
|
|
293
274
|
* @public
|
|
294
275
|
*/
|
|
295
276
|
intermediateS3Path: string | undefined;
|
|
296
277
|
}
|
|
297
278
|
/**
|
|
298
|
-
* <p>An object containing the <code>providerServiceARN</code>,
|
|
299
|
-
* <code>intermediateSourceConfiguration</code>, and
|
|
300
|
-
* <code>providerConfiguration</code>.</p>
|
|
279
|
+
* <p>An object containing the <code>providerServiceARN</code>, <code>intermediateSourceConfiguration</code>, and <code>providerConfiguration</code>.</p>
|
|
301
280
|
* @public
|
|
302
281
|
*/
|
|
303
282
|
export interface ProviderProperties {
|
|
@@ -312,8 +291,7 @@ export interface ProviderProperties {
|
|
|
312
291
|
*/
|
|
313
292
|
providerConfiguration?: __DocumentType | undefined;
|
|
314
293
|
/**
|
|
315
|
-
* <p>The Amazon S3 location that temporarily stores your data while it processes.
|
|
316
|
-
* Your information won't be saved permanently.</p>
|
|
294
|
+
* <p>The Amazon S3 location that temporarily stores your data while it processes. Your information won't be saved permanently.</p>
|
|
317
295
|
* @public
|
|
318
296
|
*/
|
|
319
297
|
intermediateSourceConfiguration?: IntermediateSourceConfiguration | undefined;
|
|
@@ -353,16 +331,13 @@ export interface Rule {
|
|
|
353
331
|
*/
|
|
354
332
|
ruleName: string | undefined;
|
|
355
333
|
/**
|
|
356
|
-
* <p>A list of <code>MatchingKeys</code>. The <code>MatchingKeys</code> must have been
|
|
357
|
-
* defined in the <code>SchemaMapping</code>. Two records are considered to match according to
|
|
358
|
-
* this rule if all of the <code>MatchingKeys</code> match.</p>
|
|
334
|
+
* <p>A list of <code>MatchingKeys</code>. The <code>MatchingKeys</code> must have been defined in the <code>SchemaMapping</code>. Two records are considered to match according to this rule if all of the <code>MatchingKeys</code> match.</p>
|
|
359
335
|
* @public
|
|
360
336
|
*/
|
|
361
337
|
matchingKeys: string[] | undefined;
|
|
362
338
|
}
|
|
363
339
|
/**
|
|
364
|
-
* <p> An object that defines the list of matching rules to run in an ID mapping
|
|
365
|
-
* workflow.</p>
|
|
340
|
+
* <p> An object that defines the list of matching rules to run in an ID mapping workflow.</p>
|
|
366
341
|
* @public
|
|
367
342
|
*/
|
|
368
343
|
export interface IdMappingRuleBasedProperties {
|
|
@@ -372,38 +347,23 @@ export interface IdMappingRuleBasedProperties {
|
|
|
372
347
|
*/
|
|
373
348
|
rules?: Rule[] | undefined;
|
|
374
349
|
/**
|
|
375
|
-
* <p> The set of rules you can use in an ID mapping workflow. The limitations specified for
|
|
376
|
-
* the source or target to define the match rules must be compatible.</p>
|
|
350
|
+
* <p> The set of rules you can use in an ID mapping workflow. The limitations specified for the source or target to define the match rules must be compatible.</p>
|
|
377
351
|
* @public
|
|
378
352
|
*/
|
|
379
353
|
ruleDefinitionType: IdMappingWorkflowRuleDefinitionType | undefined;
|
|
380
354
|
/**
|
|
381
|
-
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or
|
|
382
|
-
* <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p>
|
|
383
|
-
* <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the
|
|
384
|
-
* sub-types of an attribute type. For example, if the value of the <code>Email</code> field
|
|
385
|
-
* of Profile A matches the value of the <code>BusinessEmail</code> field of Profile B, the
|
|
386
|
-
* two profiles are matched on the <code>Email</code> attribute type. </p>
|
|
387
|
-
* <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the
|
|
388
|
-
* sub-types are an exact match. For example, for the <code>Email</code> attribute type, the
|
|
389
|
-
* system will only consider it a match if the value of the <code>Email</code> field of
|
|
390
|
-
* Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
355
|
+
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p> <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the sub-types of an attribute type. For example, if the value of the <code>Email</code> field of Profile A matches the value of the <code>BusinessEmail</code> field of Profile B, the two profiles are matched on the <code>Email</code> attribute type. </p> <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the sub-types are an exact match. For example, for the <code>Email</code> attribute type, the system will only consider it a match if the value of the <code>Email</code> field of Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
391
356
|
* @public
|
|
392
357
|
*/
|
|
393
358
|
attributeMatchingModel: AttributeMatchingModel | undefined;
|
|
394
359
|
/**
|
|
395
|
-
* <p> The type of matching record that is allowed to be used in an ID mapping workflow. </p>
|
|
396
|
-
* <p>If the value is set to <code>ONE_SOURCE_TO_ONE_TARGET</code>, only one record in the
|
|
397
|
-
* source can be matched to the same record in the target.</p>
|
|
398
|
-
* <p>If the value is set to <code>MANY_SOURCE_TO_ONE_TARGET</code>, multiple records in the
|
|
399
|
-
* source can be matched to one record in the target.</p>
|
|
360
|
+
* <p> The type of matching record that is allowed to be used in an ID mapping workflow. </p> <p>If the value is set to <code>ONE_SOURCE_TO_ONE_TARGET</code>, only one record in the source can be matched to the same record in the target.</p> <p>If the value is set to <code>MANY_SOURCE_TO_ONE_TARGET</code>, multiple records in the source can be matched to one record in the target.</p>
|
|
400
361
|
* @public
|
|
401
362
|
*/
|
|
402
363
|
recordMatchingModel: RecordMatchingModel | undefined;
|
|
403
364
|
}
|
|
404
365
|
/**
|
|
405
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
406
|
-
* configurations.</p>
|
|
366
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
407
367
|
* @public
|
|
408
368
|
*/
|
|
409
369
|
export interface IdMappingTechniques {
|
|
@@ -413,14 +373,12 @@ export interface IdMappingTechniques {
|
|
|
413
373
|
*/
|
|
414
374
|
idMappingType: IdMappingType | undefined;
|
|
415
375
|
/**
|
|
416
|
-
* <p> An object which defines any additional configurations required by rule-based
|
|
417
|
-
* matching.</p>
|
|
376
|
+
* <p> An object which defines any additional configurations required by rule-based matching.</p>
|
|
418
377
|
* @public
|
|
419
378
|
*/
|
|
420
379
|
ruleBasedProperties?: IdMappingRuleBasedProperties | undefined;
|
|
421
380
|
/**
|
|
422
|
-
* <p>An object which defines any additional configurations required by the provider
|
|
423
|
-
* service.</p>
|
|
381
|
+
* <p>An object which defines any additional configurations required by the provider service.</p>
|
|
424
382
|
* @public
|
|
425
383
|
*/
|
|
426
384
|
providerProperties?: ProviderProperties | undefined;
|
|
@@ -438,14 +396,12 @@ export declare const IdNamespaceType: {
|
|
|
438
396
|
*/
|
|
439
397
|
export type IdNamespaceType = (typeof IdNamespaceType)[keyof typeof IdNamespaceType];
|
|
440
398
|
/**
|
|
441
|
-
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and
|
|
442
|
-
* <code>Type</code>.</p>
|
|
399
|
+
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and <code>Type</code>.</p>
|
|
443
400
|
* @public
|
|
444
401
|
*/
|
|
445
402
|
export interface IdMappingWorkflowInputSource {
|
|
446
403
|
/**
|
|
447
|
-
* <p>An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for
|
|
448
|
-
* the input source table.</p>
|
|
404
|
+
* <p>An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.</p>
|
|
449
405
|
* @public
|
|
450
406
|
*/
|
|
451
407
|
inputSourceARN: string | undefined;
|
|
@@ -455,12 +411,7 @@ export interface IdMappingWorkflowInputSource {
|
|
|
455
411
|
*/
|
|
456
412
|
schemaName?: string | undefined;
|
|
457
413
|
/**
|
|
458
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
459
|
-
* <code>TARGET</code>. </p>
|
|
460
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
461
|
-
* be processed in an ID mapping workflow. </p>
|
|
462
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> which all
|
|
463
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
414
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>. </p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> which all <code>sourceIds</code> will resolve to.</p>
|
|
464
415
|
* @public
|
|
465
416
|
*/
|
|
466
417
|
type?: IdNamespaceType | undefined;
|
|
@@ -476,8 +427,7 @@ export interface IdMappingWorkflowOutputSource {
|
|
|
476
427
|
*/
|
|
477
428
|
outputS3Path: string | undefined;
|
|
478
429
|
/**
|
|
479
|
-
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use
|
|
480
|
-
* an Entity Resolution managed KMS key.</p>
|
|
430
|
+
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>
|
|
481
431
|
* @public
|
|
482
432
|
*/
|
|
483
433
|
KMSArn?: string | undefined;
|
|
@@ -487,8 +437,7 @@ export interface IdMappingWorkflowOutputSource {
|
|
|
487
437
|
*/
|
|
488
438
|
export interface CreateIdMappingWorkflowInput {
|
|
489
439
|
/**
|
|
490
|
-
* <p>The name of the workflow. There can't be multiple <code>IdMappingWorkflows</code> with
|
|
491
|
-
* the same name.</p>
|
|
440
|
+
* <p>The name of the workflow. There can't be multiple <code>IdMappingWorkflows</code> with the same name.</p>
|
|
492
441
|
* @public
|
|
493
442
|
*/
|
|
494
443
|
workflowName: string | undefined;
|
|
@@ -498,26 +447,22 @@ export interface CreateIdMappingWorkflowInput {
|
|
|
498
447
|
*/
|
|
499
448
|
description?: string | undefined;
|
|
500
449
|
/**
|
|
501
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
502
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
450
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
503
451
|
* @public
|
|
504
452
|
*/
|
|
505
453
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
506
454
|
/**
|
|
507
|
-
* <p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains
|
|
508
|
-
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
455
|
+
* <p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
509
456
|
* @public
|
|
510
457
|
*/
|
|
511
458
|
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
512
459
|
/**
|
|
513
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
514
|
-
* configurations.</p>
|
|
460
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
515
461
|
* @public
|
|
516
462
|
*/
|
|
517
463
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
518
464
|
/**
|
|
519
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
520
|
-
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
465
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
521
466
|
* @public
|
|
522
467
|
*/
|
|
523
468
|
roleArn?: string | undefined;
|
|
@@ -537,8 +482,7 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
537
482
|
*/
|
|
538
483
|
workflowName: string | undefined;
|
|
539
484
|
/**
|
|
540
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
541
|
-
* <code>IDMappingWorkflow</code>.</p>
|
|
485
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IDMappingWorkflow</code>.</p>
|
|
542
486
|
* @public
|
|
543
487
|
*/
|
|
544
488
|
workflowArn: string | undefined;
|
|
@@ -548,34 +492,28 @@ export interface CreateIdMappingWorkflowOutput {
|
|
|
548
492
|
*/
|
|
549
493
|
description?: string | undefined;
|
|
550
494
|
/**
|
|
551
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
552
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
495
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
553
496
|
* @public
|
|
554
497
|
*/
|
|
555
498
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
556
499
|
/**
|
|
557
|
-
* <p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains
|
|
558
|
-
* fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
500
|
+
* <p>A list of <code>IdMappingWorkflowOutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>Output</code>.</p>
|
|
559
501
|
* @public
|
|
560
502
|
*/
|
|
561
503
|
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
562
504
|
/**
|
|
563
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
564
|
-
* configurations.</p>
|
|
505
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
565
506
|
* @public
|
|
566
507
|
*/
|
|
567
508
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
568
509
|
/**
|
|
569
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
570
|
-
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
510
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
571
511
|
* @public
|
|
572
512
|
*/
|
|
573
513
|
roleArn?: string | undefined;
|
|
574
514
|
}
|
|
575
515
|
/**
|
|
576
|
-
* <p>The request was rejected because it attempted to create resources beyond the current
|
|
577
|
-
* Entity Resolution account limits. The error message describes the limit exceeded.
|
|
578
|
-
* </p>
|
|
516
|
+
* <p>The request was rejected because it attempted to create resources beyond the current Entity Resolution account limits. The error message describes the limit exceeded. </p>
|
|
579
517
|
* @public
|
|
580
518
|
*/
|
|
581
519
|
export declare class ExceedsLimitException extends __BaseException {
|
|
@@ -597,8 +535,7 @@ export declare class ExceedsLimitException extends __BaseException {
|
|
|
597
535
|
constructor(opts: __ExceptionOptionType<ExceedsLimitException, __BaseException>);
|
|
598
536
|
}
|
|
599
537
|
/**
|
|
600
|
-
* <p>An object containing <code>ProviderConfiguration</code> and
|
|
601
|
-
* <code>ProviderServiceArn</code>.</p>
|
|
538
|
+
* <p>An object containing <code>ProviderConfiguration</code> and <code>ProviderServiceArn</code>.</p>
|
|
602
539
|
* @public
|
|
603
540
|
*/
|
|
604
541
|
export interface NamespaceProviderProperties {
|
|
@@ -608,15 +545,13 @@ export interface NamespaceProviderProperties {
|
|
|
608
545
|
*/
|
|
609
546
|
providerServiceArn: string | undefined;
|
|
610
547
|
/**
|
|
611
|
-
* <p>An object which defines any additional configurations required by the provider
|
|
612
|
-
* service.</p>
|
|
548
|
+
* <p>An object which defines any additional configurations required by the provider service.</p>
|
|
613
549
|
* @public
|
|
614
550
|
*/
|
|
615
551
|
providerConfiguration?: __DocumentType | undefined;
|
|
616
552
|
}
|
|
617
553
|
/**
|
|
618
|
-
* <p> The rule-based properties of an ID namespace. These properties define how the ID
|
|
619
|
-
* namespace can be used in an ID mapping workflow.</p>
|
|
554
|
+
* <p> The rule-based properties of an ID namespace. These properties define how the ID namespace can be used in an ID mapping workflow.</p>
|
|
620
555
|
* @public
|
|
621
556
|
*/
|
|
622
557
|
export interface NamespaceRuleBasedProperties {
|
|
@@ -626,38 +561,23 @@ export interface NamespaceRuleBasedProperties {
|
|
|
626
561
|
*/
|
|
627
562
|
rules?: Rule[] | undefined;
|
|
628
563
|
/**
|
|
629
|
-
* <p> The sets of rules you can use in an ID mapping workflow. The limitations specified for
|
|
630
|
-
* the source and target must be compatible.</p>
|
|
564
|
+
* <p> The sets of rules you can use in an ID mapping workflow. The limitations specified for the source and target must be compatible.</p>
|
|
631
565
|
* @public
|
|
632
566
|
*/
|
|
633
567
|
ruleDefinitionTypes?: IdMappingWorkflowRuleDefinitionType[] | undefined;
|
|
634
568
|
/**
|
|
635
|
-
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or
|
|
636
|
-
* <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p>
|
|
637
|
-
* <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the
|
|
638
|
-
* sub-types of an attribute type. For example, if the value of the <code>Email</code> field
|
|
639
|
-
* of Profile A matches the value of <code>BusinessEmail</code> field of Profile B, the two
|
|
640
|
-
* profiles are matched on the <code>Email</code> attribute type. </p>
|
|
641
|
-
* <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the
|
|
642
|
-
* sub-types are an exact match. For example, for the <code>Email</code> attribute type, the
|
|
643
|
-
* system will only consider it a match if the value of the <code>Email</code> field of
|
|
644
|
-
* Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
569
|
+
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p> <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the sub-types of an attribute type. For example, if the value of the <code>Email</code> field of Profile A matches the value of <code>BusinessEmail</code> field of Profile B, the two profiles are matched on the <code>Email</code> attribute type. </p> <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the sub-types are an exact match. For example, for the <code>Email</code> attribute type, the system will only consider it a match if the value of the <code>Email</code> field of Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
645
570
|
* @public
|
|
646
571
|
*/
|
|
647
572
|
attributeMatchingModel?: AttributeMatchingModel | undefined;
|
|
648
573
|
/**
|
|
649
|
-
* <p> The type of matching record that is allowed to be used in an ID mapping workflow. </p>
|
|
650
|
-
* <p>If the value is set to <code>ONE_SOURCE_TO_ONE_TARGET</code>, only one record in the
|
|
651
|
-
* source is matched to one record in the target. </p>
|
|
652
|
-
* <p>If the value is set to <code>MANY_SOURCE_TO_ONE_TARGET</code>, all matching records in
|
|
653
|
-
* the source are matched to one record in the target.</p>
|
|
574
|
+
* <p> The type of matching record that is allowed to be used in an ID mapping workflow. </p> <p>If the value is set to <code>ONE_SOURCE_TO_ONE_TARGET</code>, only one record in the source is matched to one record in the target. </p> <p>If the value is set to <code>MANY_SOURCE_TO_ONE_TARGET</code>, all matching records in the source are matched to one record in the target.</p>
|
|
654
575
|
* @public
|
|
655
576
|
*/
|
|
656
577
|
recordMatchingModels?: RecordMatchingModel[] | undefined;
|
|
657
578
|
}
|
|
658
579
|
/**
|
|
659
|
-
* <p>An object containing <code>IdMappingType</code>, <code>ProviderProperties</code>, and
|
|
660
|
-
* <code>RuleBasedProperties</code>.</p>
|
|
580
|
+
* <p>An object containing <code>IdMappingType</code>, <code>ProviderProperties</code>, and <code>RuleBasedProperties</code>.</p>
|
|
661
581
|
* @public
|
|
662
582
|
*/
|
|
663
583
|
export interface IdNamespaceIdMappingWorkflowProperties {
|
|
@@ -667,14 +587,12 @@ export interface IdNamespaceIdMappingWorkflowProperties {
|
|
|
667
587
|
*/
|
|
668
588
|
idMappingType: IdMappingType | undefined;
|
|
669
589
|
/**
|
|
670
|
-
* <p> An object which defines any additional configurations required by rule-based
|
|
671
|
-
* matching.</p>
|
|
590
|
+
* <p> An object which defines any additional configurations required by rule-based matching.</p>
|
|
672
591
|
* @public
|
|
673
592
|
*/
|
|
674
593
|
ruleBasedProperties?: NamespaceRuleBasedProperties | undefined;
|
|
675
594
|
/**
|
|
676
|
-
* <p>An object which defines any additional configurations required by the provider
|
|
677
|
-
* service.</p>
|
|
595
|
+
* <p>An object which defines any additional configurations required by the provider service.</p>
|
|
678
596
|
* @public
|
|
679
597
|
*/
|
|
680
598
|
providerProperties?: NamespaceProviderProperties | undefined;
|
|
@@ -685,8 +603,7 @@ export interface IdNamespaceIdMappingWorkflowProperties {
|
|
|
685
603
|
*/
|
|
686
604
|
export interface IdNamespaceInputSource {
|
|
687
605
|
/**
|
|
688
|
-
* <p>An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for
|
|
689
|
-
* the input source table.</p>
|
|
606
|
+
* <p>An Glue table Amazon Resource Name (ARN) or a matching workflow ARN for the input source table.</p>
|
|
690
607
|
* @public
|
|
691
608
|
*/
|
|
692
609
|
inputSourceARN: string | undefined;
|
|
@@ -711,32 +628,22 @@ export interface CreateIdNamespaceInput {
|
|
|
711
628
|
*/
|
|
712
629
|
description?: string | undefined;
|
|
713
630
|
/**
|
|
714
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
715
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
631
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
716
632
|
* @public
|
|
717
633
|
*/
|
|
718
634
|
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
719
635
|
/**
|
|
720
|
-
* <p>Determines the properties of <code>IdMappingWorflow</code> where this
|
|
721
|
-
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
722
|
-
* <code>Target</code>.</p>
|
|
636
|
+
* <p>Determines the properties of <code>IdMappingWorflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
|
|
723
637
|
* @public
|
|
724
638
|
*/
|
|
725
639
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
726
640
|
/**
|
|
727
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
728
|
-
* <code>TARGET</code>. </p>
|
|
729
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
730
|
-
* be processed in an ID mapping workflow. </p>
|
|
731
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
732
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
641
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>. </p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all <code>sourceIds</code> will resolve to.</p>
|
|
733
642
|
* @public
|
|
734
643
|
*/
|
|
735
644
|
type: IdNamespaceType | undefined;
|
|
736
645
|
/**
|
|
737
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
738
|
-
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
739
|
-
* as part of the workflow run.</p>
|
|
646
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in this <code>IdNamespace</code> on your behalf as part of the workflow run.</p>
|
|
740
647
|
* @public
|
|
741
648
|
*/
|
|
742
649
|
roleArn?: string | undefined;
|
|
@@ -766,32 +673,22 @@ export interface CreateIdNamespaceOutput {
|
|
|
766
673
|
*/
|
|
767
674
|
description?: string | undefined;
|
|
768
675
|
/**
|
|
769
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
770
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
676
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
771
677
|
* @public
|
|
772
678
|
*/
|
|
773
679
|
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
774
680
|
/**
|
|
775
|
-
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
776
|
-
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
777
|
-
* <code>Target</code>.</p>
|
|
681
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
|
|
778
682
|
* @public
|
|
779
683
|
*/
|
|
780
684
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
781
685
|
/**
|
|
782
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
783
|
-
* <code>TARGET</code>.</p>
|
|
784
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
785
|
-
* be processed in an ID mapping workflow. </p>
|
|
786
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
787
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
686
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>.</p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all <code>sourceIds</code> will resolve to.</p>
|
|
788
687
|
* @public
|
|
789
688
|
*/
|
|
790
689
|
type: IdNamespaceType | undefined;
|
|
791
690
|
/**
|
|
792
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
793
|
-
* this role to access the resources defined in <code>inputSourceConfig</code> on your behalf
|
|
794
|
-
* as part of the workflow run.</p>
|
|
691
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in <code>inputSourceConfig</code> on your behalf as part of the workflow run.</p>
|
|
795
692
|
* @public
|
|
796
693
|
*/
|
|
797
694
|
roleArn?: string | undefined;
|
|
@@ -823,8 +720,7 @@ export declare const IncrementalRunType: {
|
|
|
823
720
|
*/
|
|
824
721
|
export type IncrementalRunType = (typeof IncrementalRunType)[keyof typeof IncrementalRunType];
|
|
825
722
|
/**
|
|
826
|
-
* <p>An object which defines an incremental run type and has only
|
|
827
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
723
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
828
724
|
* @public
|
|
829
725
|
*/
|
|
830
726
|
export interface IncrementalRunConfig {
|
|
@@ -835,14 +731,12 @@ export interface IncrementalRunConfig {
|
|
|
835
731
|
incrementalRunType?: IncrementalRunType | undefined;
|
|
836
732
|
}
|
|
837
733
|
/**
|
|
838
|
-
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and
|
|
839
|
-
* <code>ApplyNormalization</code>.</p>
|
|
734
|
+
* <p>An object containing <code>InputSourceARN</code>, <code>SchemaName</code>, and <code>ApplyNormalization</code>.</p>
|
|
840
735
|
* @public
|
|
841
736
|
*/
|
|
842
737
|
export interface InputSource {
|
|
843
738
|
/**
|
|
844
|
-
* <p>An Glue table Amazon Resource Name (ARN) for the input source
|
|
845
|
-
* table.</p>
|
|
739
|
+
* <p>An Glue table Amazon Resource Name (ARN) for the input source table.</p>
|
|
846
740
|
* @public
|
|
847
741
|
*/
|
|
848
742
|
inputSourceARN: string | undefined;
|
|
@@ -852,24 +746,18 @@ export interface InputSource {
|
|
|
852
746
|
*/
|
|
853
747
|
schemaName: string | undefined;
|
|
854
748
|
/**
|
|
855
|
-
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an
|
|
856
|
-
* attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in
|
|
857
|
-
* the input table is in a format of 1234567890, Entity Resolution will normalize this field
|
|
858
|
-
* in the output to (123)-456-7890.</p>
|
|
749
|
+
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.</p>
|
|
859
750
|
* @public
|
|
860
751
|
*/
|
|
861
752
|
applyNormalization?: boolean | undefined;
|
|
862
753
|
}
|
|
863
754
|
/**
|
|
864
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
865
|
-
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
866
|
-
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
755
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>
|
|
867
756
|
* @public
|
|
868
757
|
*/
|
|
869
758
|
export interface OutputAttribute {
|
|
870
759
|
/**
|
|
871
|
-
* <p>A name of a column to be written to the output. This must be an <code>InputField</code>
|
|
872
|
-
* name in the schema mapping.</p>
|
|
760
|
+
* <p>A name of a column to be written to the output. This must be an <code>InputField</code> name in the schema mapping.</p>
|
|
873
761
|
* @public
|
|
874
762
|
*/
|
|
875
763
|
name: string | undefined;
|
|
@@ -880,9 +768,7 @@ export interface OutputAttribute {
|
|
|
880
768
|
hashed?: boolean | undefined;
|
|
881
769
|
}
|
|
882
770
|
/**
|
|
883
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
884
|
-
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
885
|
-
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
771
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>
|
|
886
772
|
* @public
|
|
887
773
|
*/
|
|
888
774
|
export interface OutputSource {
|
|
@@ -897,17 +783,12 @@ export interface OutputSource {
|
|
|
897
783
|
*/
|
|
898
784
|
KMSArn?: string | undefined;
|
|
899
785
|
/**
|
|
900
|
-
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields
|
|
901
|
-
* <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be
|
|
902
|
-
* included in the output table, and whether the values of the column should be hashed.</p>
|
|
786
|
+
* <p>A list of <code>OutputAttribute</code> objects, each of which have the fields <code>Name</code> and <code>Hashed</code>. Each of these objects selects a column to be included in the output table, and whether the values of the column should be hashed.</p>
|
|
903
787
|
* @public
|
|
904
788
|
*/
|
|
905
789
|
output: OutputAttribute[] | undefined;
|
|
906
790
|
/**
|
|
907
|
-
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an
|
|
908
|
-
* attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in
|
|
909
|
-
* the input table is in a format of 1234567890, Entity Resolution will normalize this field
|
|
910
|
-
* in the output to (123)-456-7890.</p>
|
|
791
|
+
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.</p>
|
|
911
792
|
* @public
|
|
912
793
|
*/
|
|
913
794
|
applyNormalization?: boolean | undefined;
|
|
@@ -938,57 +819,38 @@ export declare const MatchPurpose: {
|
|
|
938
819
|
*/
|
|
939
820
|
export type MatchPurpose = (typeof MatchPurpose)[keyof typeof MatchPurpose];
|
|
940
821
|
/**
|
|
941
|
-
* <p>An object which defines the list of matching rules to run in a matching workflow.
|
|
942
|
-
* RuleBasedProperties contain a <code>Rules</code> field, which is a list of rule
|
|
943
|
-
* objects.</p>
|
|
822
|
+
* <p>An object which defines the list of matching rules to run in a matching workflow. RuleBasedProperties contain a <code>Rules</code> field, which is a list of rule objects.</p>
|
|
944
823
|
* @public
|
|
945
824
|
*/
|
|
946
825
|
export interface RuleBasedProperties {
|
|
947
826
|
/**
|
|
948
|
-
* <p>A list of <code>Rule</code> objects, each of which have fields <code>RuleName</code> and
|
|
949
|
-
* <code>MatchingKeys</code>.</p>
|
|
827
|
+
* <p>A list of <code>Rule</code> objects, each of which have fields <code>RuleName</code> and <code>MatchingKeys</code>.</p>
|
|
950
828
|
* @public
|
|
951
829
|
*/
|
|
952
830
|
rules: Rule[] | undefined;
|
|
953
831
|
/**
|
|
954
|
-
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or
|
|
955
|
-
* <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p>
|
|
956
|
-
* <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the
|
|
957
|
-
* sub-types of an attribute type. For example, if the value of the <code>Email</code> field
|
|
958
|
-
* of Profile A and the value of <code>BusinessEmail</code> field of Profile B matches, the
|
|
959
|
-
* two profiles are matched on the <code>Email</code> attribute type. </p>
|
|
960
|
-
* <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the
|
|
961
|
-
* sub-types are an exact match. For example, for the <code>Email</code> attribute type, the
|
|
962
|
-
* system will only consider it a match if the value of the <code>Email</code> field of
|
|
963
|
-
* Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
832
|
+
* <p>The comparison type. You can either choose <code>ONE_TO_ONE</code> or <code>MANY_TO_MANY</code> as the <code>attributeMatchingModel</code>. </p> <p>If you choose <code>MANY_TO_MANY</code>, the system can match attributes across the sub-types of an attribute type. For example, if the value of the <code>Email</code> field of Profile A and the value of <code>BusinessEmail</code> field of Profile B matches, the two profiles are matched on the <code>Email</code> attribute type. </p> <p>If you choose <code>ONE_TO_ONE</code>, the system can only match attributes if the sub-types are an exact match. For example, for the <code>Email</code> attribute type, the system will only consider it a match if the value of the <code>Email</code> field of Profile A matches the value of the <code>Email</code> field of Profile B.</p>
|
|
964
833
|
* @public
|
|
965
834
|
*/
|
|
966
835
|
attributeMatchingModel: AttributeMatchingModel | undefined;
|
|
967
836
|
/**
|
|
968
|
-
* <p> An indicator of whether to generate IDs and index the data or not.</p>
|
|
969
|
-
* <p>If you choose <code>IDENTIFIER_GENERATION</code>, the process generates IDs and indexes
|
|
970
|
-
* the data.</p>
|
|
971
|
-
* <p>If you choose <code>INDEXING</code>, the process indexes the data without generating
|
|
972
|
-
* IDs.</p>
|
|
837
|
+
* <p> An indicator of whether to generate IDs and index the data or not.</p> <p>If you choose <code>IDENTIFIER_GENERATION</code>, the process generates IDs and indexes the data.</p> <p>If you choose <code>INDEXING</code>, the process indexes the data without generating IDs.</p>
|
|
973
838
|
* @public
|
|
974
839
|
*/
|
|
975
840
|
matchPurpose?: MatchPurpose | undefined;
|
|
976
841
|
}
|
|
977
842
|
/**
|
|
978
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
979
|
-
* <code>ruleBasedProperties</code>.</p>
|
|
843
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
980
844
|
* @public
|
|
981
845
|
*/
|
|
982
846
|
export interface ResolutionTechniques {
|
|
983
847
|
/**
|
|
984
|
-
* <p>The type of matching. There are three types of matching: <code>RULE_MATCHING</code>,
|
|
985
|
-
* <code>ML_MATCHING</code>, and <code>PROVIDER</code>.</p>
|
|
848
|
+
* <p>The type of matching. There are three types of matching: <code>RULE_MATCHING</code>, <code>ML_MATCHING</code>, and <code>PROVIDER</code>.</p>
|
|
986
849
|
* @public
|
|
987
850
|
*/
|
|
988
851
|
resolutionType: ResolutionType | undefined;
|
|
989
852
|
/**
|
|
990
|
-
* <p>An object which defines the list of matching rules to run and has a field
|
|
991
|
-
* <code>Rules</code>, which is a list of rule objects.</p>
|
|
853
|
+
* <p>An object which defines the list of matching rules to run and has a field <code>Rules</code>, which is a list of rule objects.</p>
|
|
992
854
|
* @public
|
|
993
855
|
*/
|
|
994
856
|
ruleBasedProperties?: RuleBasedProperties | undefined;
|
|
@@ -1003,8 +865,7 @@ export interface ResolutionTechniques {
|
|
|
1003
865
|
*/
|
|
1004
866
|
export interface CreateMatchingWorkflowInput {
|
|
1005
867
|
/**
|
|
1006
|
-
* <p>The name of the workflow. There can't be multiple <code>MatchingWorkflows</code> with
|
|
1007
|
-
* the same name.</p>
|
|
868
|
+
* <p>The name of the workflow. There can't be multiple <code>MatchingWorkflows</code> with the same name.</p>
|
|
1008
869
|
* @public
|
|
1009
870
|
*/
|
|
1010
871
|
workflowName: string | undefined;
|
|
@@ -1014,33 +875,27 @@ export interface CreateMatchingWorkflowInput {
|
|
|
1014
875
|
*/
|
|
1015
876
|
description?: string | undefined;
|
|
1016
877
|
/**
|
|
1017
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1018
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
878
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1019
879
|
* @public
|
|
1020
880
|
*/
|
|
1021
881
|
inputSourceConfig: InputSource[] | undefined;
|
|
1022
882
|
/**
|
|
1023
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
1024
|
-
* <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and
|
|
1025
|
-
* <code>Output</code>.</p>
|
|
883
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
|
|
1026
884
|
* @public
|
|
1027
885
|
*/
|
|
1028
886
|
outputSourceConfig: OutputSource[] | undefined;
|
|
1029
887
|
/**
|
|
1030
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
1031
|
-
* <code>ruleBasedProperties</code>.</p>
|
|
888
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
1032
889
|
* @public
|
|
1033
890
|
*/
|
|
1034
891
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
1035
892
|
/**
|
|
1036
|
-
* <p>An object which defines an incremental run type and has only
|
|
1037
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
893
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
1038
894
|
* @public
|
|
1039
895
|
*/
|
|
1040
896
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1041
897
|
/**
|
|
1042
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1043
|
-
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
898
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
1044
899
|
* @public
|
|
1045
900
|
*/
|
|
1046
901
|
roleArn: string | undefined;
|
|
@@ -1060,8 +915,7 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
1060
915
|
*/
|
|
1061
916
|
workflowName: string | undefined;
|
|
1062
917
|
/**
|
|
1063
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
1064
|
-
* <code>MatchingWorkflow</code>.</p>
|
|
918
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>
|
|
1065
919
|
* @public
|
|
1066
920
|
*/
|
|
1067
921
|
workflowArn: string | undefined;
|
|
@@ -1071,33 +925,27 @@ export interface CreateMatchingWorkflowOutput {
|
|
|
1071
925
|
*/
|
|
1072
926
|
description?: string | undefined;
|
|
1073
927
|
/**
|
|
1074
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1075
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
928
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1076
929
|
* @public
|
|
1077
930
|
*/
|
|
1078
931
|
inputSourceConfig: InputSource[] | undefined;
|
|
1079
932
|
/**
|
|
1080
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
1081
|
-
* <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and
|
|
1082
|
-
* <code>Output</code>.</p>
|
|
933
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
|
|
1083
934
|
* @public
|
|
1084
935
|
*/
|
|
1085
936
|
outputSourceConfig: OutputSource[] | undefined;
|
|
1086
937
|
/**
|
|
1087
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
1088
|
-
* <code>ruleBasedProperties</code>.</p>
|
|
938
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
1089
939
|
* @public
|
|
1090
940
|
*/
|
|
1091
941
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
1092
942
|
/**
|
|
1093
|
-
* <p>An object which defines an incremental run type and has only
|
|
1094
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
943
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
1095
944
|
* @public
|
|
1096
945
|
*/
|
|
1097
946
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1098
947
|
/**
|
|
1099
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1100
|
-
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
948
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
1101
949
|
* @public
|
|
1102
950
|
*/
|
|
1103
951
|
roleArn: string | undefined;
|
|
@@ -1136,9 +984,7 @@ export declare const SchemaAttributeType: {
|
|
|
1136
984
|
*/
|
|
1137
985
|
export type SchemaAttributeType = (typeof SchemaAttributeType)[keyof typeof SchemaAttributeType];
|
|
1138
986
|
/**
|
|
1139
|
-
* <p>A configuration object for defining input data fields in Entity Resolution. The
|
|
1140
|
-
* <code>SchemaInputAttribute</code> specifies how individual fields in your input data
|
|
1141
|
-
* should be processed and matched.</p>
|
|
987
|
+
* <p>A configuration object for defining input data fields in Entity Resolution. The <code>SchemaInputAttribute</code> specifies how individual fields in your input data should be processed and matched.</p>
|
|
1142
988
|
* @public
|
|
1143
989
|
*/
|
|
1144
990
|
export interface SchemaInputAttribute {
|
|
@@ -1148,62 +994,17 @@ export interface SchemaInputAttribute {
|
|
|
1148
994
|
*/
|
|
1149
995
|
fieldName: string | undefined;
|
|
1150
996
|
/**
|
|
1151
|
-
* <p>The type of the attribute, selected from a list of values.</p>
|
|
1152
|
-
* <p>LiveRamp supports: <code>NAME</code> | <code>NAME_FIRST</code> |
|
|
1153
|
-
* <code>NAME_MIDDLE</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> |
|
|
1154
|
-
* <code>ADDRESS_STREET1</code> | <code>ADDRESS_STREET2</code> |
|
|
1155
|
-
* <code>ADDRESS_STREET3</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> |
|
|
1156
|
-
* <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE</code> |
|
|
1157
|
-
* <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> |
|
|
1158
|
-
* <code>PROVIDER_ID</code>
|
|
1159
|
-
* </p>
|
|
1160
|
-
* <p>TransUnion supports: <code>NAME</code> | <code>NAME_FIRST</code> |
|
|
1161
|
-
* <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_CITY</code> |
|
|
1162
|
-
* <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> |
|
|
1163
|
-
* <code>ADDRESS_POSTALCODE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code>
|
|
1164
|
-
* | <code>UNIQUE_ID</code> | <code>IPV4</code> | <code>IPV6</code> | <code>MAID</code>
|
|
1165
|
-
* </p>
|
|
1166
|
-
* <p>Unified ID 2.0 supports: <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> |
|
|
1167
|
-
* <code>UNIQUE_ID</code>
|
|
1168
|
-
* </p>
|
|
1169
|
-
* <note>
|
|
1170
|
-
* <p>Normalization is only supported for <code>NAME</code>, <code>ADDRESS</code>,
|
|
1171
|
-
* <code>PHONE</code>, and <code>EMAIL_ADDRESS</code>. </p>
|
|
1172
|
-
* <p>If you want to normalize <code>NAME_FIRST</code>, <code>NAME_MIDDLE</code>, and
|
|
1173
|
-
* <code>NAME_LAST</code>, you must group them by assigning them to the
|
|
1174
|
-
* <code>NAME</code>
|
|
1175
|
-
* <code>groupName</code>. </p>
|
|
1176
|
-
* <p>If you want to normalize <code>ADDRESS_STREET1</code>, <code>ADDRESS_STREET2</code>,
|
|
1177
|
-
* <code>ADDRESS_STREET3</code>, <code>ADDRESS_CITY</code>, <code>ADDRESS_STATE</code>,
|
|
1178
|
-
* <code>ADDRESS_COUNTRY</code>, and <code>ADDRESS_POSTALCODE</code>, you must group
|
|
1179
|
-
* them by assigning them to the <code>ADDRESS</code>
|
|
1180
|
-
* <code>groupName</code>. </p>
|
|
1181
|
-
* <p>If you want to normalize <code>PHONE_NUMBER</code> and
|
|
1182
|
-
* <code>PHONE_COUNTRYCODE</code>, you must group them by assigning them to the
|
|
1183
|
-
* <code>PHONE</code>
|
|
1184
|
-
* <code>groupName</code>. </p>
|
|
1185
|
-
* </note>
|
|
997
|
+
* <p>The type of the attribute, selected from a list of values.</p> <p>LiveRamp supports: <code>NAME</code> | <code>NAME_FIRST</code> | <code>NAME_MIDDLE</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_STREET1</code> | <code>ADDRESS_STREET2</code> | <code>ADDRESS_STREET3</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> | <code>PROVIDER_ID</code> </p> <p>TransUnion supports: <code>NAME</code> | <code>NAME_FIRST</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> | <code>IPV4</code> | <code>IPV6</code> | <code>MAID</code> </p> <p>Unified ID 2.0 supports: <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> </p> <note> <p>Normalization is only supported for <code>NAME</code>, <code>ADDRESS</code>, <code>PHONE</code>, and <code>EMAIL_ADDRESS</code>. </p> <p>If you want to normalize <code>NAME_FIRST</code>, <code>NAME_MIDDLE</code>, and <code>NAME_LAST</code>, you must group them by assigning them to the <code>NAME</code> <code>groupName</code>. </p> <p>If you want to normalize <code>ADDRESS_STREET1</code>, <code>ADDRESS_STREET2</code>, <code>ADDRESS_STREET3</code>, <code>ADDRESS_CITY</code>, <code>ADDRESS_STATE</code>, <code>ADDRESS_COUNTRY</code>, and <code>ADDRESS_POSTALCODE</code>, you must group them by assigning them to the <code>ADDRESS</code> <code>groupName</code>. </p> <p>If you want to normalize <code>PHONE_NUMBER</code> and <code>PHONE_COUNTRYCODE</code>, you must group them by assigning them to the <code>PHONE</code> <code>groupName</code>. </p> </note>
|
|
1186
998
|
* @public
|
|
1187
999
|
*/
|
|
1188
1000
|
type: SchemaAttributeType | undefined;
|
|
1189
1001
|
/**
|
|
1190
|
-
* <p>A string that instructs Entity Resolution to combine several columns into a unified
|
|
1191
|
-
* column with the identical attribute type. </p>
|
|
1192
|
-
* <p>For example, when working with columns such as <code>NAME_FIRST</code>,
|
|
1193
|
-
* <code>NAME_MIDDLE</code>, and <code>NAME_LAST</code>, assigning them a common
|
|
1194
|
-
* <code>groupName</code> will prompt Entity Resolution to concatenate them into a single
|
|
1195
|
-
* value.</p>
|
|
1002
|
+
* <p>A string that instructs Entity Resolution to combine several columns into a unified column with the identical attribute type. </p> <p>For example, when working with columns such as <code>NAME_FIRST</code>, <code>NAME_MIDDLE</code>, and <code>NAME_LAST</code>, assigning them a common <code>groupName</code> will prompt Entity Resolution to concatenate them into a single value.</p>
|
|
1196
1003
|
* @public
|
|
1197
1004
|
*/
|
|
1198
1005
|
groupName?: string | undefined;
|
|
1199
1006
|
/**
|
|
1200
|
-
* <p>A key that allows grouping of multiple input attributes into a unified matching group. </p>
|
|
1201
|
-
* <p>For example, consider a scenario where the source table contains various addresses, such
|
|
1202
|
-
* as <code>business_address</code> and <code>shipping_address</code>. By assigning a
|
|
1203
|
-
* <code>matchKey</code> called <code>address</code> to both attributes, Entity Resolution
|
|
1204
|
-
* will match records across these fields to create a consolidated matching group.</p>
|
|
1205
|
-
* <p>If no <code>matchKey</code> is specified for a column, it won't be utilized for matching
|
|
1206
|
-
* purposes but will still be included in the output table.</p>
|
|
1007
|
+
* <p>A key that allows grouping of multiple input attributes into a unified matching group. </p> <p>For example, consider a scenario where the source table contains various addresses, such as <code>business_address</code> and <code>shipping_address</code>. By assigning a <code>matchKey</code> called <code>address</code> to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group.</p> <p>If no <code>matchKey</code> is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.</p>
|
|
1207
1008
|
* @public
|
|
1208
1009
|
*/
|
|
1209
1010
|
matchKey?: string | undefined;
|
|
@@ -1213,9 +1014,7 @@ export interface SchemaInputAttribute {
|
|
|
1213
1014
|
*/
|
|
1214
1015
|
subType?: string | undefined;
|
|
1215
1016
|
/**
|
|
1216
|
-
* <p> Indicates if the column values are hashed in the schema input. </p>
|
|
1217
|
-
* <p>If the value is set to <code>TRUE</code>, the column values are hashed. </p>
|
|
1218
|
-
* <p>If the value is set to <code>FALSE</code>, the column values are cleartext.</p>
|
|
1017
|
+
* <p> Indicates if the column values are hashed in the schema input. </p> <p>If the value is set to <code>TRUE</code>, the column values are hashed. </p> <p>If the value is set to <code>FALSE</code>, the column values are cleartext.</p>
|
|
1219
1018
|
* @public
|
|
1220
1019
|
*/
|
|
1221
1020
|
hashed?: boolean | undefined;
|
|
@@ -1225,8 +1024,7 @@ export interface SchemaInputAttribute {
|
|
|
1225
1024
|
*/
|
|
1226
1025
|
export interface CreateSchemaMappingInput {
|
|
1227
1026
|
/**
|
|
1228
|
-
* <p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the
|
|
1229
|
-
* same name.</p>
|
|
1027
|
+
* <p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the same name.</p>
|
|
1230
1028
|
* @public
|
|
1231
1029
|
*/
|
|
1232
1030
|
schemaName: string | undefined;
|
|
@@ -1236,9 +1034,7 @@ export interface CreateSchemaMappingInput {
|
|
|
1236
1034
|
*/
|
|
1237
1035
|
description?: string | undefined;
|
|
1238
1036
|
/**
|
|
1239
|
-
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
1240
|
-
* to a column the source data table, and contains column name plus additional information
|
|
1241
|
-
* that Entity Resolution uses for matching.</p>
|
|
1037
|
+
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>
|
|
1242
1038
|
* @public
|
|
1243
1039
|
*/
|
|
1244
1040
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
@@ -1258,8 +1054,7 @@ export interface CreateSchemaMappingOutput {
|
|
|
1258
1054
|
*/
|
|
1259
1055
|
schemaName: string | undefined;
|
|
1260
1056
|
/**
|
|
1261
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
1262
|
-
* <code>SchemaMapping</code>.</p>
|
|
1057
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>
|
|
1263
1058
|
* @public
|
|
1264
1059
|
*/
|
|
1265
1060
|
schemaArn: string | undefined;
|
|
@@ -1269,9 +1064,7 @@ export interface CreateSchemaMappingOutput {
|
|
|
1269
1064
|
*/
|
|
1270
1065
|
description: string | undefined;
|
|
1271
1066
|
/**
|
|
1272
|
-
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
1273
|
-
* to a column the source data table, and contains column name plus additional information
|
|
1274
|
-
* that Entity Resolution uses for matching.</p>
|
|
1067
|
+
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>
|
|
1275
1068
|
* @public
|
|
1276
1069
|
*/
|
|
1277
1070
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
@@ -1346,8 +1139,7 @@ export interface DeletePolicyStatementInput {
|
|
|
1346
1139
|
*/
|
|
1347
1140
|
arn: string | undefined;
|
|
1348
1141
|
/**
|
|
1349
|
-
* <p>A statement identifier that differentiates the statement from others in the same
|
|
1350
|
-
* policy.</p>
|
|
1142
|
+
* <p>A statement identifier that differentiates the statement from others in the same policy.</p>
|
|
1351
1143
|
* @public
|
|
1352
1144
|
*/
|
|
1353
1145
|
statementId: string | undefined;
|
|
@@ -1392,6 +1184,133 @@ export interface DeleteSchemaMappingOutput {
|
|
|
1392
1184
|
*/
|
|
1393
1185
|
message: string | undefined;
|
|
1394
1186
|
}
|
|
1187
|
+
/**
|
|
1188
|
+
* @public
|
|
1189
|
+
* @enum
|
|
1190
|
+
*/
|
|
1191
|
+
export declare const ProcessingType: {
|
|
1192
|
+
readonly CONSISTENT: "CONSISTENT";
|
|
1193
|
+
readonly EVENTUAL: "EVENTUAL";
|
|
1194
|
+
readonly EVENTUAL_NO_LOOKUP: "EVENTUAL_NO_LOOKUP";
|
|
1195
|
+
};
|
|
1196
|
+
/**
|
|
1197
|
+
* @public
|
|
1198
|
+
*/
|
|
1199
|
+
export type ProcessingType = (typeof ProcessingType)[keyof typeof ProcessingType];
|
|
1200
|
+
/**
|
|
1201
|
+
* <p> The record.</p>
|
|
1202
|
+
* @public
|
|
1203
|
+
*/
|
|
1204
|
+
export interface _Record {
|
|
1205
|
+
/**
|
|
1206
|
+
* <p> The input source ARN of the record.</p>
|
|
1207
|
+
* @public
|
|
1208
|
+
*/
|
|
1209
|
+
inputSourceARN: string | undefined;
|
|
1210
|
+
/**
|
|
1211
|
+
* <p> The unique ID of the record.</p>
|
|
1212
|
+
* @public
|
|
1213
|
+
*/
|
|
1214
|
+
uniqueId: string | undefined;
|
|
1215
|
+
/**
|
|
1216
|
+
* <p> The record's attribute map.</p>
|
|
1217
|
+
* @public
|
|
1218
|
+
*/
|
|
1219
|
+
recordAttributeMap: Record<string, string> | undefined;
|
|
1220
|
+
}
|
|
1221
|
+
/**
|
|
1222
|
+
* @public
|
|
1223
|
+
*/
|
|
1224
|
+
export interface GenerateMatchIdInput {
|
|
1225
|
+
/**
|
|
1226
|
+
* <p> The name of the rule-based matching workflow.</p>
|
|
1227
|
+
* @public
|
|
1228
|
+
*/
|
|
1229
|
+
workflowName: string | undefined;
|
|
1230
|
+
/**
|
|
1231
|
+
* <p> The records to match.</p>
|
|
1232
|
+
* @public
|
|
1233
|
+
*/
|
|
1234
|
+
records: _Record[] | undefined;
|
|
1235
|
+
/**
|
|
1236
|
+
* <p>The processing mode that determines how Match IDs are generated and results are saved. Each mode provides different levels of accuracy, response time, and completeness of results.</p> <p>If not specified, defaults to <code>CONSISTENT</code>.</p> <p> <code>CONSISTENT</code>: Performs immediate lookup and matching against all existing records, with results saved synchronously. Provides highest accuracy but slower response time.</p> <p> <code>EVENTUAL</code> (shown as <i>Background</i> in the console): Performs initial match ID lookup or generation immediately, with record updates processed asynchronously in the background. Offers faster initial response time, with complete matching results available later in S3. </p> <p> <code>EVENTUAL_NO_LOOKUP</code> (shown as <i>Quick ID generation</i> in the console): Generates new match IDs without checking existing matches, with updates processed asynchronously. Provides fastest response time but should only be used for records known to be unique. </p>
|
|
1237
|
+
* @public
|
|
1238
|
+
*/
|
|
1239
|
+
processingType?: ProcessingType | undefined;
|
|
1240
|
+
}
|
|
1241
|
+
/**
|
|
1242
|
+
* <p>The record that didn't generate a Match ID.</p>
|
|
1243
|
+
* @public
|
|
1244
|
+
*/
|
|
1245
|
+
export interface FailedRecord {
|
|
1246
|
+
/**
|
|
1247
|
+
* <p> The input source ARN of the record that didn't generate a Match ID.</p>
|
|
1248
|
+
* @public
|
|
1249
|
+
*/
|
|
1250
|
+
inputSourceARN: string | undefined;
|
|
1251
|
+
/**
|
|
1252
|
+
* <p> The unique ID of the record that didn't generate a Match ID.</p>
|
|
1253
|
+
* @public
|
|
1254
|
+
*/
|
|
1255
|
+
uniqueId: string | undefined;
|
|
1256
|
+
/**
|
|
1257
|
+
* <p> The error message for the record that didn't generate a Match ID.</p>
|
|
1258
|
+
* @public
|
|
1259
|
+
*/
|
|
1260
|
+
errorMessage: string | undefined;
|
|
1261
|
+
}
|
|
1262
|
+
/**
|
|
1263
|
+
* <p> The matched record.</p>
|
|
1264
|
+
* @public
|
|
1265
|
+
*/
|
|
1266
|
+
export interface MatchedRecord {
|
|
1267
|
+
/**
|
|
1268
|
+
* <p> The input source ARN of the matched record.</p>
|
|
1269
|
+
* @public
|
|
1270
|
+
*/
|
|
1271
|
+
inputSourceARN: string | undefined;
|
|
1272
|
+
/**
|
|
1273
|
+
* <p> The record ID of the matched record.</p>
|
|
1274
|
+
* @public
|
|
1275
|
+
*/
|
|
1276
|
+
recordId: string | undefined;
|
|
1277
|
+
}
|
|
1278
|
+
/**
|
|
1279
|
+
* <p>The match group.</p>
|
|
1280
|
+
* @public
|
|
1281
|
+
*/
|
|
1282
|
+
export interface MatchGroup {
|
|
1283
|
+
/**
|
|
1284
|
+
* <p> The matched records.</p>
|
|
1285
|
+
* @public
|
|
1286
|
+
*/
|
|
1287
|
+
records: MatchedRecord[] | undefined;
|
|
1288
|
+
/**
|
|
1289
|
+
* <p> The match ID.</p>
|
|
1290
|
+
* @public
|
|
1291
|
+
*/
|
|
1292
|
+
matchId: string | undefined;
|
|
1293
|
+
/**
|
|
1294
|
+
* <p> The match rule of the match group.</p>
|
|
1295
|
+
* @public
|
|
1296
|
+
*/
|
|
1297
|
+
matchRule: string | undefined;
|
|
1298
|
+
}
|
|
1299
|
+
/**
|
|
1300
|
+
* @public
|
|
1301
|
+
*/
|
|
1302
|
+
export interface GenerateMatchIdOutput {
|
|
1303
|
+
/**
|
|
1304
|
+
* <p> The match groups from the generated match ID.</p>
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
matchGroups: MatchGroup[] | undefined;
|
|
1308
|
+
/**
|
|
1309
|
+
* <p> The records that didn't receive a generated Match ID.</p>
|
|
1310
|
+
* @public
|
|
1311
|
+
*/
|
|
1312
|
+
failedRecords: FailedRecord[] | undefined;
|
|
1313
|
+
}
|
|
1395
1314
|
/**
|
|
1396
1315
|
* @public
|
|
1397
1316
|
*/
|
|
@@ -1419,10 +1338,7 @@ export interface ErrorDetails {
|
|
|
1419
1338
|
errorMessage?: string | undefined;
|
|
1420
1339
|
}
|
|
1421
1340
|
/**
|
|
1422
|
-
* <p>An
|
|
1423
|
-
* object that contains metrics about an ID mapping job, including counts of input records,
|
|
1424
|
-
* processed records, and mapped records between source and target identifiers.
|
|
1425
|
-
* </p>
|
|
1341
|
+
* <p>An object that contains metrics about an ID mapping job, including counts of input records, processed records, and mapped records between source and target identifiers. </p>
|
|
1426
1342
|
* @public
|
|
1427
1343
|
*/
|
|
1428
1344
|
export interface IdMappingJobMetrics {
|
|
@@ -1457,26 +1373,18 @@ export interface IdMappingJobMetrics {
|
|
|
1457
1373
|
*/
|
|
1458
1374
|
totalMappedTargetRecords?: number | undefined;
|
|
1459
1375
|
/**
|
|
1460
|
-
* <p>The
|
|
1461
|
-
* number of records remaining after loading and aggregating duplicate records. Duplicates are
|
|
1462
|
-
* determined by the field marked as UNIQUE_ID in your schema mapping - records sharing the
|
|
1463
|
-
* same value in this field are considered duplicates. For example, if you specified
|
|
1464
|
-
* "customer_id" as a UNIQUE_ID field and had three records with the same customer_id value,
|
|
1465
|
-
* they would count as one unique record in this metric. </p>
|
|
1376
|
+
* <p>The number of records remaining after loading and aggregating duplicate records. Duplicates are determined by the field marked as UNIQUE_ID in your schema mapping - records sharing the same value in this field are considered duplicates. For example, if you specified "customer_id" as a UNIQUE_ID field and had three records with the same customer_id value, they would count as one unique record in this metric. </p>
|
|
1466
1377
|
* @public
|
|
1467
1378
|
*/
|
|
1468
1379
|
uniqueRecordsLoaded?: number | undefined;
|
|
1469
1380
|
}
|
|
1470
1381
|
/**
|
|
1471
|
-
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
1472
|
-
* <code>RoleARN</code>.</p>
|
|
1382
|
+
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and <code>RoleARN</code>.</p>
|
|
1473
1383
|
* @public
|
|
1474
1384
|
*/
|
|
1475
1385
|
export interface IdMappingJobOutputSource {
|
|
1476
1386
|
/**
|
|
1477
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1478
|
-
* this role to access Amazon Web Services resources on your behalf as part of workflow
|
|
1479
|
-
* execution.</p>
|
|
1387
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf as part of workflow execution.</p>
|
|
1480
1388
|
* @public
|
|
1481
1389
|
*/
|
|
1482
1390
|
roleArn: string | undefined;
|
|
@@ -1486,8 +1394,7 @@ export interface IdMappingJobOutputSource {
|
|
|
1486
1394
|
*/
|
|
1487
1395
|
outputS3Path: string | undefined;
|
|
1488
1396
|
/**
|
|
1489
|
-
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use
|
|
1490
|
-
* an Entity Resolution managed KMS key.</p>
|
|
1397
|
+
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>
|
|
1491
1398
|
* @public
|
|
1492
1399
|
*/
|
|
1493
1400
|
KMSArn?: string | undefined;
|
|
@@ -1531,8 +1438,7 @@ export interface GetIdMappingJobOutput {
|
|
|
1531
1438
|
*/
|
|
1532
1439
|
endTime?: Date | undefined;
|
|
1533
1440
|
/**
|
|
1534
|
-
* <p>Metrics associated with the execution, specifically total records processed, unique IDs
|
|
1535
|
-
* generated, and records the execution skipped.</p>
|
|
1441
|
+
* <p>Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.</p>
|
|
1536
1442
|
* @public
|
|
1537
1443
|
*/
|
|
1538
1444
|
metrics?: IdMappingJobMetrics | undefined;
|
|
@@ -1567,8 +1473,7 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1567
1473
|
*/
|
|
1568
1474
|
workflowName: string | undefined;
|
|
1569
1475
|
/**
|
|
1570
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
1571
|
-
* <code>IdMappingWorkflow</code> .</p>
|
|
1476
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IdMappingWorkflow</code> .</p>
|
|
1572
1477
|
* @public
|
|
1573
1478
|
*/
|
|
1574
1479
|
workflowArn: string | undefined;
|
|
@@ -1578,20 +1483,17 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1578
1483
|
*/
|
|
1579
1484
|
description?: string | undefined;
|
|
1580
1485
|
/**
|
|
1581
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1582
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1486
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1583
1487
|
* @public
|
|
1584
1488
|
*/
|
|
1585
1489
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
1586
1490
|
/**
|
|
1587
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
1588
|
-
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
1491
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
1589
1492
|
* @public
|
|
1590
1493
|
*/
|
|
1591
1494
|
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
1592
1495
|
/**
|
|
1593
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
1594
|
-
* configurations.</p>
|
|
1496
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
1595
1497
|
* @public
|
|
1596
1498
|
*/
|
|
1597
1499
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
@@ -1606,8 +1508,7 @@ export interface GetIdMappingWorkflowOutput {
|
|
|
1606
1508
|
*/
|
|
1607
1509
|
updatedAt: Date | undefined;
|
|
1608
1510
|
/**
|
|
1609
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1610
|
-
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1511
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
|
|
1611
1512
|
* @public
|
|
1612
1513
|
*/
|
|
1613
1514
|
roleArn?: string | undefined;
|
|
@@ -1647,32 +1548,22 @@ export interface GetIdNamespaceOutput {
|
|
|
1647
1548
|
*/
|
|
1648
1549
|
description?: string | undefined;
|
|
1649
1550
|
/**
|
|
1650
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1651
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1551
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1652
1552
|
* @public
|
|
1653
1553
|
*/
|
|
1654
1554
|
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
1655
1555
|
/**
|
|
1656
|
-
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
1657
|
-
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
1658
|
-
* <code>Target</code>.</p>
|
|
1556
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
|
|
1659
1557
|
* @public
|
|
1660
1558
|
*/
|
|
1661
1559
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
1662
1560
|
/**
|
|
1663
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
1664
|
-
* <code>TARGET</code>.</p>
|
|
1665
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
1666
|
-
* be processed in an ID mapping workflow. </p>
|
|
1667
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
1668
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
1561
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>.</p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all <code>sourceIds</code> will resolve to.</p>
|
|
1669
1562
|
* @public
|
|
1670
1563
|
*/
|
|
1671
1564
|
type: IdNamespaceType | undefined;
|
|
1672
1565
|
/**
|
|
1673
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1674
|
-
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
1675
|
-
* as part of a workflow run.</p>
|
|
1566
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in this <code>IdNamespace</code> on your behalf as part of a workflow run.</p>
|
|
1676
1567
|
* @public
|
|
1677
1568
|
*/
|
|
1678
1569
|
roleArn?: string | undefined;
|
|
@@ -1707,10 +1598,7 @@ export interface GetMatchIdInput {
|
|
|
1707
1598
|
*/
|
|
1708
1599
|
record: Record<string, string> | undefined;
|
|
1709
1600
|
/**
|
|
1710
|
-
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an
|
|
1711
|
-
* attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in
|
|
1712
|
-
* the input table is in a format of 1234567890, Entity Resolution will normalize this field
|
|
1713
|
-
* in the output to (123)-456-7890.</p>
|
|
1601
|
+
* <p>Normalizes the attributes defined in the schema in the input data. For example, if an attribute has an <code>AttributeType</code> of <code>PHONE_NUMBER</code>, and the data in the input table is in a format of 1234567890, Entity Resolution will normalize this field in the output to (123)-456-7890.</p>
|
|
1714
1602
|
* @public
|
|
1715
1603
|
*/
|
|
1716
1604
|
applyNormalization?: boolean | undefined;
|
|
@@ -1746,8 +1634,7 @@ export interface GetMatchingJobInput {
|
|
|
1746
1634
|
jobId: string | undefined;
|
|
1747
1635
|
}
|
|
1748
1636
|
/**
|
|
1749
|
-
* <p>An object containing <code>InputRecords</code>, <code>TotalRecordsProcessed</code>,
|
|
1750
|
-
* <code>MatchIDs</code>, and <code>RecordsNotProcessed</code>.</p>
|
|
1637
|
+
* <p>An object containing <code>InputRecords</code>, <code>TotalRecordsProcessed</code>, <code>MatchIDs</code>, and <code>RecordsNotProcessed</code>.</p>
|
|
1751
1638
|
* @public
|
|
1752
1639
|
*/
|
|
1753
1640
|
export interface JobMetrics {
|
|
@@ -1773,15 +1660,12 @@ export interface JobMetrics {
|
|
|
1773
1660
|
matchIDs?: number | undefined;
|
|
1774
1661
|
}
|
|
1775
1662
|
/**
|
|
1776
|
-
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and
|
|
1777
|
-
* <code>RoleArn</code>.</p>
|
|
1663
|
+
* <p>An object containing <code>KMSArn</code>, <code>OutputS3Path</code>, and <code>RoleArn</code>.</p>
|
|
1778
1664
|
* @public
|
|
1779
1665
|
*/
|
|
1780
1666
|
export interface JobOutputSource {
|
|
1781
1667
|
/**
|
|
1782
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1783
|
-
* this role to access Amazon Web Services resources on your behalf as part of workflow
|
|
1784
|
-
* execution.</p>
|
|
1668
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf as part of workflow execution.</p>
|
|
1785
1669
|
* @public
|
|
1786
1670
|
*/
|
|
1787
1671
|
roleArn: string | undefined;
|
|
@@ -1791,8 +1675,7 @@ export interface JobOutputSource {
|
|
|
1791
1675
|
*/
|
|
1792
1676
|
outputS3Path: string | undefined;
|
|
1793
1677
|
/**
|
|
1794
|
-
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use
|
|
1795
|
-
* an Entity Resolution managed KMS key.</p>
|
|
1678
|
+
* <p>Customer KMS ARN for encryption at rest. If not provided, system will use an Entity Resolution managed KMS key.</p>
|
|
1796
1679
|
* @public
|
|
1797
1680
|
*/
|
|
1798
1681
|
KMSArn?: string | undefined;
|
|
@@ -1802,7 +1685,7 @@ export interface JobOutputSource {
|
|
|
1802
1685
|
*/
|
|
1803
1686
|
export interface GetMatchingJobOutput {
|
|
1804
1687
|
/**
|
|
1805
|
-
* <p>The
|
|
1688
|
+
* <p>The unique identifier of the matching job.</p>
|
|
1806
1689
|
* @public
|
|
1807
1690
|
*/
|
|
1808
1691
|
jobId: string | undefined;
|
|
@@ -1822,8 +1705,7 @@ export interface GetMatchingJobOutput {
|
|
|
1822
1705
|
*/
|
|
1823
1706
|
endTime?: Date | undefined;
|
|
1824
1707
|
/**
|
|
1825
|
-
* <p>Metrics associated with the execution, specifically total records processed, unique IDs
|
|
1826
|
-
* generated, and records the execution skipped.</p>
|
|
1708
|
+
* <p>Metrics associated with the execution, specifically total records processed, unique IDs generated, and records the execution skipped.</p>
|
|
1827
1709
|
* @public
|
|
1828
1710
|
*/
|
|
1829
1711
|
metrics?: JobMetrics | undefined;
|
|
@@ -1858,8 +1740,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1858
1740
|
*/
|
|
1859
1741
|
workflowName: string | undefined;
|
|
1860
1742
|
/**
|
|
1861
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
1862
|
-
* <code>MatchingWorkflow</code>.</p>
|
|
1743
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>
|
|
1863
1744
|
* @public
|
|
1864
1745
|
*/
|
|
1865
1746
|
workflowArn: string | undefined;
|
|
@@ -1869,21 +1750,17 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1869
1750
|
*/
|
|
1870
1751
|
description?: string | undefined;
|
|
1871
1752
|
/**
|
|
1872
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
1873
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1753
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
1874
1754
|
* @public
|
|
1875
1755
|
*/
|
|
1876
1756
|
inputSourceConfig: InputSource[] | undefined;
|
|
1877
1757
|
/**
|
|
1878
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
1879
|
-
* <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and
|
|
1880
|
-
* <code>Output</code>.</p>
|
|
1758
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
|
|
1881
1759
|
* @public
|
|
1882
1760
|
*/
|
|
1883
1761
|
outputSourceConfig: OutputSource[] | undefined;
|
|
1884
1762
|
/**
|
|
1885
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
1886
|
-
* <code>ruleBasedProperties</code>.</p>
|
|
1763
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
1887
1764
|
* @public
|
|
1888
1765
|
*/
|
|
1889
1766
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
@@ -1898,14 +1775,12 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1898
1775
|
*/
|
|
1899
1776
|
updatedAt: Date | undefined;
|
|
1900
1777
|
/**
|
|
1901
|
-
* <p>An object which defines an incremental run type and has only
|
|
1902
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
1778
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
1903
1779
|
* @public
|
|
1904
1780
|
*/
|
|
1905
1781
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
1906
1782
|
/**
|
|
1907
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
1908
|
-
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
1783
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
|
|
1909
1784
|
* @public
|
|
1910
1785
|
*/
|
|
1911
1786
|
roleArn: string | undefined;
|
|
@@ -1920,8 +1795,7 @@ export interface GetMatchingWorkflowOutput {
|
|
|
1920
1795
|
*/
|
|
1921
1796
|
export interface GetPolicyInput {
|
|
1922
1797
|
/**
|
|
1923
|
-
* <p>The Amazon Resource Name (ARN) of the resource for which the policy need to be
|
|
1924
|
-
* returned.</p>
|
|
1798
|
+
* <p>The Amazon Resource Name (ARN) of the resource for which the policy need to be returned.</p>
|
|
1925
1799
|
* @public
|
|
1926
1800
|
*/
|
|
1927
1801
|
arn: string | undefined;
|
|
@@ -1972,25 +1846,7 @@ export interface ProviderSchemaAttribute {
|
|
|
1972
1846
|
*/
|
|
1973
1847
|
fieldName: string | undefined;
|
|
1974
1848
|
/**
|
|
1975
|
-
* <p>The type of the provider schema attribute.</p>
|
|
1976
|
-
* <p>LiveRamp supports: <code>NAME</code> | <code>NAME_FIRST</code> |
|
|
1977
|
-
* <code>NAME_MIDDLE</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> |
|
|
1978
|
-
* <code>ADDRESS_STREET1</code> | <code>ADDRESS_STREET2</code> |
|
|
1979
|
-
* <code>ADDRESS_STREET3</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> |
|
|
1980
|
-
* <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE</code> |
|
|
1981
|
-
* <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> |
|
|
1982
|
-
* <code>PROVIDER_ID</code>
|
|
1983
|
-
* </p>
|
|
1984
|
-
* <p>TransUnion supports: <code>NAME</code> | <code>NAME_FIRST</code> |
|
|
1985
|
-
* <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_CITY</code> |
|
|
1986
|
-
* <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> |
|
|
1987
|
-
* <code>ADDRESS_POSTALCODE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code>
|
|
1988
|
-
* | <code>UNIQUE_ID</code> | <code>DATE</code> | <code>IPV4</code> | <code>IPV6</code> |
|
|
1989
|
-
* <code>MAID</code>
|
|
1990
|
-
* </p>
|
|
1991
|
-
* <p>Unified ID 2.0 supports: <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> |
|
|
1992
|
-
* <code>UNIQUE_ID</code>
|
|
1993
|
-
* </p>
|
|
1849
|
+
* <p>The type of the provider schema attribute.</p> <p>LiveRamp supports: <code>NAME</code> | <code>NAME_FIRST</code> | <code>NAME_MIDDLE</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_STREET1</code> | <code>ADDRESS_STREET2</code> | <code>ADDRESS_STREET3</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> | <code>PROVIDER_ID</code> </p> <p>TransUnion supports: <code>NAME</code> | <code>NAME_FIRST</code> | <code>NAME_LAST</code> | <code>ADDRESS</code> | <code>ADDRESS_CITY</code> | <code>ADDRESS_STATE</code> | <code>ADDRESS_COUNTRY</code> | <code>ADDRESS_POSTALCODE</code> | <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> | <code>DATE</code> | <code>IPV4</code> | <code>IPV6</code> | <code>MAID</code> </p> <p>Unified ID 2.0 supports: <code>PHONE_NUMBER</code> | <code>EMAIL_ADDRESS</code> | <code>UNIQUE_ID</code> </p>
|
|
1994
1850
|
* @public
|
|
1995
1851
|
*/
|
|
1996
1852
|
type: SchemaAttributeType | undefined;
|
|
@@ -2099,14 +1955,12 @@ export interface ProviderIdNameSpaceConfiguration {
|
|
|
2099
1955
|
providerSourceConfigurationDefinition?: __DocumentType | undefined;
|
|
2100
1956
|
}
|
|
2101
1957
|
/**
|
|
2102
|
-
* <p>The required configuration fields to give intermediate access to a provider
|
|
2103
|
-
* service.</p>
|
|
1958
|
+
* <p>The required configuration fields to give intermediate access to a provider service.</p>
|
|
2104
1959
|
* @public
|
|
2105
1960
|
*/
|
|
2106
1961
|
export interface ProviderIntermediateDataAccessConfiguration {
|
|
2107
1962
|
/**
|
|
2108
|
-
* <p>The Amazon Web Services account that provider can use to read or write data into the
|
|
2109
|
-
* customer's intermediate S3 bucket.</p>
|
|
1963
|
+
* <p>The Amazon Web Services account that provider can use to read or write data into the customer's intermediate S3 bucket.</p>
|
|
2110
1964
|
* @public
|
|
2111
1965
|
*/
|
|
2112
1966
|
awsAccountIds?: string[] | undefined;
|
|
@@ -2153,8 +2007,7 @@ export interface GetProviderServiceOutput {
|
|
|
2153
2007
|
*/
|
|
2154
2008
|
providerServiceType: ServiceType | undefined;
|
|
2155
2009
|
/**
|
|
2156
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the provider
|
|
2157
|
-
* service.</p>
|
|
2010
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the provider service.</p>
|
|
2158
2011
|
* @public
|
|
2159
2012
|
*/
|
|
2160
2013
|
providerServiceArn: string | undefined;
|
|
@@ -2179,11 +2032,7 @@ export interface GetProviderServiceOutput {
|
|
|
2179
2032
|
*/
|
|
2180
2033
|
providerEndpointConfiguration: ProviderEndpointConfiguration | undefined;
|
|
2181
2034
|
/**
|
|
2182
|
-
* <p>Specifies whether output data from the provider is anonymized. A value of
|
|
2183
|
-
* <code>TRUE</code> means the output will be anonymized and you can't relate the data that
|
|
2184
|
-
* comes back from the provider to the identifying input. A value of <code>FALSE</code> means
|
|
2185
|
-
* the output won't be anonymized and you can relate the data that comes back from the
|
|
2186
|
-
* provider to your source data. </p>
|
|
2035
|
+
* <p>Specifies whether output data from the provider is anonymized. A value of <code>TRUE</code> means the output will be anonymized and you can't relate the data that comes back from the provider to the identifying input. A value of <code>FALSE</code> means the output won't be anonymized and you can relate the data that comes back from the provider to your source data. </p>
|
|
2187
2036
|
* @public
|
|
2188
2037
|
*/
|
|
2189
2038
|
anonymizedOutput: boolean | undefined;
|
|
@@ -2193,8 +2042,7 @@ export interface GetProviderServiceOutput {
|
|
|
2193
2042
|
*/
|
|
2194
2043
|
providerEntityOutputDefinition: __DocumentType | undefined;
|
|
2195
2044
|
/**
|
|
2196
|
-
* <p>The Amazon Web Services accounts and the S3 permissions that are required by some
|
|
2197
|
-
* providers to create an S3 bucket for intermediate data storage.</p>
|
|
2045
|
+
* <p>The Amazon Web Services accounts and the S3 permissions that are required by some providers to create an S3 bucket for intermediate data storage.</p>
|
|
2198
2046
|
* @public
|
|
2199
2047
|
*/
|
|
2200
2048
|
providerIntermediateDataAccessConfiguration?: ProviderIntermediateDataAccessConfiguration | undefined;
|
|
@@ -2224,8 +2072,7 @@ export interface GetSchemaMappingOutput {
|
|
|
2224
2072
|
*/
|
|
2225
2073
|
schemaName: string | undefined;
|
|
2226
2074
|
/**
|
|
2227
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
2228
|
-
* SchemaMapping.</p>
|
|
2075
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the SchemaMapping.</p>
|
|
2229
2076
|
* @public
|
|
2230
2077
|
*/
|
|
2231
2078
|
schemaArn: string | undefined;
|
|
@@ -2235,9 +2082,7 @@ export interface GetSchemaMappingOutput {
|
|
|
2235
2082
|
*/
|
|
2236
2083
|
description?: string | undefined;
|
|
2237
2084
|
/**
|
|
2238
|
-
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
2239
|
-
* to a column the source data table, and contains column name plus additional information
|
|
2240
|
-
* Venice uses for matching.</p>
|
|
2085
|
+
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information Entity Resolution uses for matching.</p>
|
|
2241
2086
|
* @public
|
|
2242
2087
|
*/
|
|
2243
2088
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
@@ -2283,8 +2128,7 @@ export interface ListIdMappingJobsInput {
|
|
|
2283
2128
|
maxResults?: number | undefined;
|
|
2284
2129
|
}
|
|
2285
2130
|
/**
|
|
2286
|
-
* <p>An object containing the <code>JobId</code>, <code>Status</code>,
|
|
2287
|
-
* <code>StartTime</code>, and <code>EndTime</code> of a job.</p>
|
|
2131
|
+
* <p>An object containing the <code>JobId</code>, <code>Status</code>, <code>StartTime</code>, and <code>EndTime</code> of a job.</p>
|
|
2288
2132
|
* @public
|
|
2289
2133
|
*/
|
|
2290
2134
|
export interface JobSummary {
|
|
@@ -2340,9 +2184,7 @@ export interface ListIdMappingWorkflowsInput {
|
|
|
2340
2184
|
maxResults?: number | undefined;
|
|
2341
2185
|
}
|
|
2342
2186
|
/**
|
|
2343
|
-
* <p>A list of <code>IdMappingWorkflowSummary</code> objects, each of which contain the
|
|
2344
|
-
* fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and
|
|
2345
|
-
* <code>UpdatedAt</code>.</p>
|
|
2187
|
+
* <p>A list of <code>IdMappingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and <code>UpdatedAt</code>.</p>
|
|
2346
2188
|
* @public
|
|
2347
2189
|
*/
|
|
2348
2190
|
export interface IdMappingWorkflowSummary {
|
|
@@ -2352,8 +2194,7 @@ export interface IdMappingWorkflowSummary {
|
|
|
2352
2194
|
*/
|
|
2353
2195
|
workflowName: string | undefined;
|
|
2354
2196
|
/**
|
|
2355
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
2356
|
-
* <code>IdMappingWorkflow</code>.</p>
|
|
2197
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>IdMappingWorkflow</code>.</p>
|
|
2357
2198
|
* @public
|
|
2358
2199
|
*/
|
|
2359
2200
|
workflowArn: string | undefined;
|
|
@@ -2430,18 +2271,12 @@ export interface IdNamespaceSummary {
|
|
|
2430
2271
|
*/
|
|
2431
2272
|
description?: string | undefined;
|
|
2432
2273
|
/**
|
|
2433
|
-
* <p>An object which defines any additional configurations required by the ID mapping
|
|
2434
|
-
* workflow.</p>
|
|
2274
|
+
* <p>An object which defines any additional configurations required by the ID mapping workflow.</p>
|
|
2435
2275
|
* @public
|
|
2436
2276
|
*/
|
|
2437
2277
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowMetadata[] | undefined;
|
|
2438
2278
|
/**
|
|
2439
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
2440
|
-
* <code>TARGET</code>.</p>
|
|
2441
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
2442
|
-
* be processed in an ID mapping workflow. </p>
|
|
2443
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> which all
|
|
2444
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
2279
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>.</p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> which all <code>sourceIds</code> will resolve to.</p>
|
|
2445
2280
|
* @public
|
|
2446
2281
|
*/
|
|
2447
2282
|
type: IdNamespaceType | undefined;
|
|
@@ -2496,8 +2331,7 @@ export interface ListMatchingJobsInput {
|
|
|
2496
2331
|
*/
|
|
2497
2332
|
export interface ListMatchingJobsOutput {
|
|
2498
2333
|
/**
|
|
2499
|
-
* <p>A list of <code>JobSummary</code> objects, each of which contain the ID, status, start
|
|
2500
|
-
* time, and end time of a job.</p>
|
|
2334
|
+
* <p>A list of <code>JobSummary</code> objects, each of which contain the ID, status, start time, and end time of a job.</p>
|
|
2501
2335
|
* @public
|
|
2502
2336
|
*/
|
|
2503
2337
|
jobs?: JobSummary[] | undefined;
|
|
@@ -2523,9 +2357,7 @@ export interface ListMatchingWorkflowsInput {
|
|
|
2523
2357
|
maxResults?: number | undefined;
|
|
2524
2358
|
}
|
|
2525
2359
|
/**
|
|
2526
|
-
* <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields
|
|
2527
|
-
* <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>,
|
|
2528
|
-
* <code>UpdatedAt</code>.</p>
|
|
2360
|
+
* <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.</p>
|
|
2529
2361
|
* @public
|
|
2530
2362
|
*/
|
|
2531
2363
|
export interface MatchingWorkflowSummary {
|
|
@@ -2535,8 +2367,7 @@ export interface MatchingWorkflowSummary {
|
|
|
2535
2367
|
*/
|
|
2536
2368
|
workflowName: string | undefined;
|
|
2537
2369
|
/**
|
|
2538
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
2539
|
-
* <code>MatchingWorkflow</code>.</p>
|
|
2370
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>MatchingWorkflow</code>.</p>
|
|
2540
2371
|
* @public
|
|
2541
2372
|
*/
|
|
2542
2373
|
workflowArn: string | undefined;
|
|
@@ -2551,8 +2382,7 @@ export interface MatchingWorkflowSummary {
|
|
|
2551
2382
|
*/
|
|
2552
2383
|
updatedAt: Date | undefined;
|
|
2553
2384
|
/**
|
|
2554
|
-
* <p>The method that has been specified for data matching, either using matching provided by
|
|
2555
|
-
* Entity Resolution or through a provider service.</p>
|
|
2385
|
+
* <p>The method that has been specified for data matching, either using matching provided by Entity Resolution or through a provider service.</p>
|
|
2556
2386
|
* @public
|
|
2557
2387
|
*/
|
|
2558
2388
|
resolutionType: ResolutionType | undefined;
|
|
@@ -2562,9 +2392,7 @@ export interface MatchingWorkflowSummary {
|
|
|
2562
2392
|
*/
|
|
2563
2393
|
export interface ListMatchingWorkflowsOutput {
|
|
2564
2394
|
/**
|
|
2565
|
-
* <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields
|
|
2566
|
-
* <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and
|
|
2567
|
-
* <code>UpdatedAt</code>.</p>
|
|
2395
|
+
* <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and <code>UpdatedAt</code>.</p>
|
|
2568
2396
|
* @public
|
|
2569
2397
|
*/
|
|
2570
2398
|
workflowSummaries?: MatchingWorkflowSummary[] | undefined;
|
|
@@ -2595,15 +2423,12 @@ export interface ListProviderServicesInput {
|
|
|
2595
2423
|
providerName?: string | undefined;
|
|
2596
2424
|
}
|
|
2597
2425
|
/**
|
|
2598
|
-
* <p>A list of <code>ProviderService</code> objects, each of which contain the fields
|
|
2599
|
-
* <code>providerName</code>, <code>providerServiceArn</code>,
|
|
2600
|
-
* <code>providerServiceName</code>, and <code>providerServiceType</code>.</p>
|
|
2426
|
+
* <p>A list of <code>ProviderService</code> objects, each of which contain the fields <code>providerName</code>, <code>providerServiceArn</code>, <code>providerServiceName</code>, and <code>providerServiceType</code>.</p>
|
|
2601
2427
|
* @public
|
|
2602
2428
|
*/
|
|
2603
2429
|
export interface ProviderServiceSummary {
|
|
2604
2430
|
/**
|
|
2605
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
2606
|
-
* <code>providerService</code>.</p>
|
|
2431
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>providerService</code>.</p>
|
|
2607
2432
|
* @public
|
|
2608
2433
|
*/
|
|
2609
2434
|
providerServiceArn: string | undefined;
|
|
@@ -2659,8 +2484,7 @@ export interface ListSchemaMappingsInput {
|
|
|
2659
2484
|
maxResults?: number | undefined;
|
|
2660
2485
|
}
|
|
2661
2486
|
/**
|
|
2662
|
-
* <p>An object containing <code>SchemaName</code>, <code>SchemaArn</code>,
|
|
2663
|
-
* <code>CreatedAt</code>, and<code>UpdatedAt</code>.</p>
|
|
2487
|
+
* <p>An object containing <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, and<code>UpdatedAt</code>.</p>
|
|
2664
2488
|
* @public
|
|
2665
2489
|
*/
|
|
2666
2490
|
export interface SchemaMappingSummary {
|
|
@@ -2670,8 +2494,7 @@ export interface SchemaMappingSummary {
|
|
|
2670
2494
|
*/
|
|
2671
2495
|
schemaName: string | undefined;
|
|
2672
2496
|
/**
|
|
2673
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
2674
|
-
* <code>SchemaMapping</code>.</p>
|
|
2497
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>
|
|
2675
2498
|
* @public
|
|
2676
2499
|
*/
|
|
2677
2500
|
schemaArn: string | undefined;
|
|
@@ -2696,9 +2519,7 @@ export interface SchemaMappingSummary {
|
|
|
2696
2519
|
*/
|
|
2697
2520
|
export interface ListSchemaMappingsOutput {
|
|
2698
2521
|
/**
|
|
2699
|
-
* <p>A list of <code>SchemaMappingSummary</code> objects, each of which contain the fields
|
|
2700
|
-
* <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>,
|
|
2701
|
-
* <code>UpdatedAt</code>.</p>
|
|
2522
|
+
* <p>A list of <code>SchemaMappingSummary</code> objects, each of which contain the fields <code>SchemaName</code>, <code>SchemaArn</code>, <code>CreatedAt</code>, <code>UpdatedAt</code>.</p>
|
|
2702
2523
|
* @public
|
|
2703
2524
|
*/
|
|
2704
2525
|
schemaList?: SchemaMappingSummary[] | undefined;
|
|
@@ -2733,8 +2554,7 @@ export interface ListTagsForResourceOutput {
|
|
|
2733
2554
|
*/
|
|
2734
2555
|
export interface PutPolicyInput {
|
|
2735
2556
|
/**
|
|
2736
|
-
* <p>The Amazon Resource Name (ARN) of the resource for which the policy needs to be
|
|
2737
|
-
* updated.</p>
|
|
2557
|
+
* <p>The Amazon Resource Name (ARN) of the resource for which the policy needs to be updated.</p>
|
|
2738
2558
|
* @public
|
|
2739
2559
|
*/
|
|
2740
2560
|
arn: string | undefined;
|
|
@@ -2744,13 +2564,7 @@ export interface PutPolicyInput {
|
|
|
2744
2564
|
*/
|
|
2745
2565
|
token?: string | undefined;
|
|
2746
2566
|
/**
|
|
2747
|
-
* <p>The resource-based policy.</p>
|
|
2748
|
-
* <important>
|
|
2749
|
-
* <p>If you set the value of the <code>effect</code> parameter in the <code>policy</code>
|
|
2750
|
-
* to <code>Deny</code> for the <code>PutPolicy</code> operation, you must also set the
|
|
2751
|
-
* value of the <code>effect</code> parameter to <code>Deny</code> for the
|
|
2752
|
-
* <code>AddPolicyStatement</code> operation.</p>
|
|
2753
|
-
* </important>
|
|
2567
|
+
* <p>The resource-based policy.</p> <important> <p>If you set the value of the <code>effect</code> parameter in the <code>policy</code> to <code>Deny</code> for the <code>PutPolicy</code> operation, you must also set the value of the <code>effect</code> parameter to <code>Deny</code> for the <code>AddPolicyStatement</code> operation.</p> </important>
|
|
2754
2568
|
* @public
|
|
2755
2569
|
*/
|
|
2756
2570
|
policy: string | undefined;
|
|
@@ -2880,26 +2694,22 @@ export interface UpdateIdMappingWorkflowInput {
|
|
|
2880
2694
|
*/
|
|
2881
2695
|
description?: string | undefined;
|
|
2882
2696
|
/**
|
|
2883
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2884
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2697
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2885
2698
|
* @public
|
|
2886
2699
|
*/
|
|
2887
2700
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
2888
2701
|
/**
|
|
2889
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
2890
|
-
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2702
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2891
2703
|
* @public
|
|
2892
2704
|
*/
|
|
2893
2705
|
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
2894
2706
|
/**
|
|
2895
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
2896
|
-
* configurations.</p>
|
|
2707
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
2897
2708
|
* @public
|
|
2898
2709
|
*/
|
|
2899
2710
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
2900
2711
|
/**
|
|
2901
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2902
|
-
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
2712
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
|
|
2903
2713
|
* @public
|
|
2904
2714
|
*/
|
|
2905
2715
|
roleArn?: string | undefined;
|
|
@@ -2914,8 +2724,7 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
2914
2724
|
*/
|
|
2915
2725
|
workflowName: string | undefined;
|
|
2916
2726
|
/**
|
|
2917
|
-
* <p>The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role
|
|
2918
|
-
* to access Amazon Web Services resources on your behalf.</p>
|
|
2727
|
+
* <p>The Amazon Resource Name (ARN) of the workflow role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
|
|
2919
2728
|
* @public
|
|
2920
2729
|
*/
|
|
2921
2730
|
workflowArn: string | undefined;
|
|
@@ -2925,26 +2734,22 @@ export interface UpdateIdMappingWorkflowOutput {
|
|
|
2925
2734
|
*/
|
|
2926
2735
|
description?: string | undefined;
|
|
2927
2736
|
/**
|
|
2928
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2929
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2737
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2930
2738
|
* @public
|
|
2931
2739
|
*/
|
|
2932
2740
|
inputSourceConfig: IdMappingWorkflowInputSource[] | undefined;
|
|
2933
2741
|
/**
|
|
2934
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
2935
|
-
* <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2742
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code> and <code>KMSArn</code>.</p>
|
|
2936
2743
|
* @public
|
|
2937
2744
|
*/
|
|
2938
2745
|
outputSourceConfig?: IdMappingWorkflowOutputSource[] | undefined;
|
|
2939
2746
|
/**
|
|
2940
|
-
* <p>An object which defines the ID mapping technique and any additional
|
|
2941
|
-
* configurations.</p>
|
|
2747
|
+
* <p>An object which defines the ID mapping technique and any additional configurations.</p>
|
|
2942
2748
|
* @public
|
|
2943
2749
|
*/
|
|
2944
2750
|
idMappingTechniques: IdMappingTechniques | undefined;
|
|
2945
2751
|
/**
|
|
2946
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2947
|
-
* this role to access Amazon Web Services resources on your behalf.</p>
|
|
2752
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access Amazon Web Services resources on your behalf.</p>
|
|
2948
2753
|
* @public
|
|
2949
2754
|
*/
|
|
2950
2755
|
roleArn?: string | undefined;
|
|
@@ -2964,22 +2769,17 @@ export interface UpdateIdNamespaceInput {
|
|
|
2964
2769
|
*/
|
|
2965
2770
|
description?: string | undefined;
|
|
2966
2771
|
/**
|
|
2967
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
2968
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2772
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2969
2773
|
* @public
|
|
2970
2774
|
*/
|
|
2971
2775
|
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
2972
2776
|
/**
|
|
2973
|
-
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
2974
|
-
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
2975
|
-
* <code>Target</code>.</p>
|
|
2777
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
|
|
2976
2778
|
* @public
|
|
2977
2779
|
*/
|
|
2978
2780
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
2979
2781
|
/**
|
|
2980
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
2981
|
-
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
2982
|
-
* as part of a workflow run.</p>
|
|
2782
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in this <code>IdNamespace</code> on your behalf as part of a workflow run.</p>
|
|
2983
2783
|
* @public
|
|
2984
2784
|
*/
|
|
2985
2785
|
roleArn?: string | undefined;
|
|
@@ -3004,32 +2804,22 @@ export interface UpdateIdNamespaceOutput {
|
|
|
3004
2804
|
*/
|
|
3005
2805
|
description?: string | undefined;
|
|
3006
2806
|
/**
|
|
3007
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
3008
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2807
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
3009
2808
|
* @public
|
|
3010
2809
|
*/
|
|
3011
2810
|
inputSourceConfig?: IdNamespaceInputSource[] | undefined;
|
|
3012
2811
|
/**
|
|
3013
|
-
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this
|
|
3014
|
-
* <code>IdNamespace</code> can be used as a <code>Source</code> or a
|
|
3015
|
-
* <code>Target</code>.</p>
|
|
2812
|
+
* <p>Determines the properties of <code>IdMappingWorkflow</code> where this <code>IdNamespace</code> can be used as a <code>Source</code> or a <code>Target</code>.</p>
|
|
3016
2813
|
* @public
|
|
3017
2814
|
*/
|
|
3018
2815
|
idMappingWorkflowProperties?: IdNamespaceIdMappingWorkflowProperties[] | undefined;
|
|
3019
2816
|
/**
|
|
3020
|
-
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and
|
|
3021
|
-
* <code>TARGET</code>.</p>
|
|
3022
|
-
* <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will
|
|
3023
|
-
* be processed in an ID mapping workflow. </p>
|
|
3024
|
-
* <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all
|
|
3025
|
-
* <code>sourceIds</code> will resolve to.</p>
|
|
2817
|
+
* <p>The type of ID namespace. There are two types: <code>SOURCE</code> and <code>TARGET</code>.</p> <p>The <code>SOURCE</code> contains configurations for <code>sourceId</code> data that will be processed in an ID mapping workflow. </p> <p>The <code>TARGET</code> contains a configuration of <code>targetId</code> to which all <code>sourceIds</code> will resolve to.</p>
|
|
3026
2818
|
* @public
|
|
3027
2819
|
*/
|
|
3028
2820
|
type: IdNamespaceType | undefined;
|
|
3029
2821
|
/**
|
|
3030
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
3031
|
-
* this role to access the resources defined in this <code>IdNamespace</code> on your behalf
|
|
3032
|
-
* as part of a workflow run.</p>
|
|
2822
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to access the resources defined in this <code>IdNamespace</code> on your behalf as part of a workflow run.</p>
|
|
3033
2823
|
* @public
|
|
3034
2824
|
*/
|
|
3035
2825
|
roleArn?: string | undefined;
|
|
@@ -3059,33 +2849,27 @@ export interface UpdateMatchingWorkflowInput {
|
|
|
3059
2849
|
*/
|
|
3060
2850
|
description?: string | undefined;
|
|
3061
2851
|
/**
|
|
3062
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
3063
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2852
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
3064
2853
|
* @public
|
|
3065
2854
|
*/
|
|
3066
2855
|
inputSourceConfig: InputSource[] | undefined;
|
|
3067
2856
|
/**
|
|
3068
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
3069
|
-
* <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and
|
|
3070
|
-
* <code>Output</code>.</p>
|
|
2857
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
|
|
3071
2858
|
* @public
|
|
3072
2859
|
*/
|
|
3073
2860
|
outputSourceConfig: OutputSource[] | undefined;
|
|
3074
2861
|
/**
|
|
3075
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
3076
|
-
* <code>ruleBasedProperties</code>.</p>
|
|
2862
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
3077
2863
|
* @public
|
|
3078
2864
|
*/
|
|
3079
2865
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
3080
2866
|
/**
|
|
3081
|
-
* <p>An object which defines an incremental run type and has only
|
|
3082
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
2867
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
3083
2868
|
* @public
|
|
3084
2869
|
*/
|
|
3085
2870
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
3086
2871
|
/**
|
|
3087
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to
|
|
3088
|
-
* create resources on your behalf as part of workflow execution.</p>
|
|
2872
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
3089
2873
|
* @public
|
|
3090
2874
|
*/
|
|
3091
2875
|
roleArn: string | undefined;
|
|
@@ -3105,34 +2889,27 @@ export interface UpdateMatchingWorkflowOutput {
|
|
|
3105
2889
|
*/
|
|
3106
2890
|
description?: string | undefined;
|
|
3107
2891
|
/**
|
|
3108
|
-
* <p>A list of <code>InputSource</code> objects, which have the fields
|
|
3109
|
-
* <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
2892
|
+
* <p>A list of <code>InputSource</code> objects, which have the fields <code>InputSourceARN</code> and <code>SchemaName</code>.</p>
|
|
3110
2893
|
* @public
|
|
3111
2894
|
*/
|
|
3112
2895
|
inputSourceConfig: InputSource[] | undefined;
|
|
3113
2896
|
/**
|
|
3114
|
-
* <p>A list of <code>OutputSource</code> objects, each of which contains fields
|
|
3115
|
-
* <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and
|
|
3116
|
-
* <code>Output</code>.</p>
|
|
2897
|
+
* <p>A list of <code>OutputSource</code> objects, each of which contains fields <code>OutputS3Path</code>, <code>ApplyNormalization</code>, and <code>Output</code>.</p>
|
|
3117
2898
|
* @public
|
|
3118
2899
|
*/
|
|
3119
2900
|
outputSourceConfig: OutputSource[] | undefined;
|
|
3120
2901
|
/**
|
|
3121
|
-
* <p>An object which defines the <code>resolutionType</code> and the
|
|
3122
|
-
* <code>ruleBasedProperties</code>
|
|
3123
|
-
* </p>
|
|
2902
|
+
* <p>An object which defines the <code>resolutionType</code> and the <code>ruleBasedProperties</code>.</p>
|
|
3124
2903
|
* @public
|
|
3125
2904
|
*/
|
|
3126
2905
|
resolutionTechniques: ResolutionTechniques | undefined;
|
|
3127
2906
|
/**
|
|
3128
|
-
* <p>An object which defines an incremental run type and has only
|
|
3129
|
-
* <code>incrementalRunType</code> as a field.</p>
|
|
2907
|
+
* <p>An object which defines an incremental run type and has only <code>incrementalRunType</code> as a field.</p>
|
|
3130
2908
|
* @public
|
|
3131
2909
|
*/
|
|
3132
2910
|
incrementalRunConfig?: IncrementalRunConfig | undefined;
|
|
3133
2911
|
/**
|
|
3134
|
-
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes
|
|
3135
|
-
* this role to create resources on your behalf as part of workflow execution.</p>
|
|
2912
|
+
* <p>The Amazon Resource Name (ARN) of the IAM role. Entity Resolution assumes this role to create resources on your behalf as part of workflow execution.</p>
|
|
3136
2913
|
* @public
|
|
3137
2914
|
*/
|
|
3138
2915
|
roleArn: string | undefined;
|
|
@@ -3142,8 +2919,7 @@ export interface UpdateMatchingWorkflowOutput {
|
|
|
3142
2919
|
*/
|
|
3143
2920
|
export interface UpdateSchemaMappingInput {
|
|
3144
2921
|
/**
|
|
3145
|
-
* <p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the
|
|
3146
|
-
* same name.</p>
|
|
2922
|
+
* <p>The name of the schema. There can't be multiple <code>SchemaMappings</code> with the same name.</p>
|
|
3147
2923
|
* @public
|
|
3148
2924
|
*/
|
|
3149
2925
|
schemaName: string | undefined;
|
|
@@ -3153,9 +2929,7 @@ export interface UpdateSchemaMappingInput {
|
|
|
3153
2929
|
*/
|
|
3154
2930
|
description?: string | undefined;
|
|
3155
2931
|
/**
|
|
3156
|
-
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
3157
|
-
* to a column the source data table, and contains column name plus additional information
|
|
3158
|
-
* that Entity Resolution uses for matching.</p>
|
|
2932
|
+
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>
|
|
3159
2933
|
* @public
|
|
3160
2934
|
*/
|
|
3161
2935
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
@@ -3170,8 +2944,7 @@ export interface UpdateSchemaMappingOutput {
|
|
|
3170
2944
|
*/
|
|
3171
2945
|
schemaName: string | undefined;
|
|
3172
2946
|
/**
|
|
3173
|
-
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the
|
|
3174
|
-
* <code>SchemaMapping</code>.</p>
|
|
2947
|
+
* <p>The ARN (Amazon Resource Name) that Entity Resolution generated for the <code>SchemaMapping</code>.</p>
|
|
3175
2948
|
* @public
|
|
3176
2949
|
*/
|
|
3177
2950
|
schemaArn: string | undefined;
|
|
@@ -3181,13 +2954,19 @@ export interface UpdateSchemaMappingOutput {
|
|
|
3181
2954
|
*/
|
|
3182
2955
|
description?: string | undefined;
|
|
3183
2956
|
/**
|
|
3184
|
-
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds
|
|
3185
|
-
* to a column the source data table, and contains column name plus additional information
|
|
3186
|
-
* that Entity Resolution uses for matching.</p>
|
|
2957
|
+
* <p>A list of <code>MappedInputFields</code>. Each <code>MappedInputField</code> corresponds to a column the source data table, and contains column name plus additional information that Entity Resolution uses for matching.</p>
|
|
3187
2958
|
* @public
|
|
3188
2959
|
*/
|
|
3189
2960
|
mappedInputFields: SchemaInputAttribute[] | undefined;
|
|
3190
2961
|
}
|
|
2962
|
+
/**
|
|
2963
|
+
* @internal
|
|
2964
|
+
*/
|
|
2965
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
2966
|
+
/**
|
|
2967
|
+
* @internal
|
|
2968
|
+
*/
|
|
2969
|
+
export declare const GenerateMatchIdInputFilterSensitiveLog: (obj: GenerateMatchIdInput) => any;
|
|
3191
2970
|
/**
|
|
3192
2971
|
* @internal
|
|
3193
2972
|
*/
|