Class CfnDomain.AutoMergingProperty
Configuration information about the auto-merging process.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AutoMergingProperty : Object, CfnDomain.IAutoMergingProperty
Syntax (vb)
Public Class AutoMergingProperty
Inherits Object
Implements CfnDomain.IAutoMergingProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CustomerProfiles;
var autoMergingProperty = new AutoMergingProperty {
Enabled = false,
// the properties below are optional
ConflictResolution = new ConflictResolutionProperty {
ConflictResolvingModel = "conflictResolvingModel",
// the properties below are optional
SourceName = "sourceName"
},
Consolidation = new ConsolidationProperty {
MatchingAttributesList = new [] { new [] { "matchingAttributesList" } }
},
MinAllowedConfidenceScoreForMerging = 123
};
Synopsis
Constructors
Auto |
Properties
Conflict |
Determines how the auto-merging process should resolve conflicts between different profiles. |
Consolidation | A list of matching attributes that represent matching criteria. |
Enabled | The flag that enables the auto-merging of duplicate profiles. |
Min |
A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process. |
Constructors
AutoMergingProperty()
public AutoMergingProperty()
Properties
ConflictResolution
Determines how the auto-merging process should resolve conflicts between different profiles.
public object ConflictResolution { get; set; }
Property Value
System.
Remarks
For example, if Profile A and Profile B have the same FirstName
and LastName
, ConflictResolution
specifies which EmailAddress
should be used.
Consolidation
A list of matching attributes that represent matching criteria.
public object Consolidation { get; set; }
Property Value
System.
Remarks
If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.
Enabled
The flag that enables the auto-merging of duplicate profiles.
public object Enabled { get; set; }
Property Value
System.
Remarks
MinAllowedConfidenceScoreForMerging
A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process.
public Nullable<double> MinAllowedConfidenceScoreForMerging { get; set; }
Property Value
System.
Remarks
A higher score means that a higher similarity is required to merge profiles.