Interface CfnDomain.AutoMergingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomain.AutoMergingProperty.Jsii$Proxy
- Enclosing class:
CfnDomain
@Stability(Stable)
public static interface CfnDomain.AutoMergingProperty
extends software.amazon.jsii.JsiiSerializable
Configuration information about the auto-merging process.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.customerprofiles.*;
AutoMergingProperty autoMergingProperty = AutoMergingProperty.builder()
.enabled(false)
// the properties below are optional
.conflictResolution(ConflictResolutionProperty.builder()
.conflictResolvingModel("conflictResolvingModel")
// the properties below are optional
.sourceName("sourceName")
.build())
.consolidation(ConsolidationProperty.builder()
.matchingAttributesList(List.of(List.of("matchingAttributesList")))
.build())
.minAllowedConfidenceScoreForMerging(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.AutoMergingPropertystatic final classAn implementation forCfnDomain.AutoMergingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDetermines how the auto-merging process should resolve conflicts between different profiles.default ObjectA list of matching attributes that represent matching criteria.The flag that enables the auto-merging of duplicate profiles.default NumberA 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.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
The flag that enables the auto-merging of duplicate profiles.Returns union: either
BooleanorIResolvable- See Also:
-
getConflictResolution
Determines how the auto-merging process should resolve conflicts between different profiles.For example, if Profile A and Profile B have the same
FirstNameandLastName,ConflictResolutionspecifies whichEmailAddressshould be used.Returns union: either
IResolvableorCfnDomain.ConflictResolutionProperty- See Also:
-
getConsolidation
A list of matching attributes that represent matching criteria.If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.
Returns union: either
IResolvableorCfnDomain.ConsolidationProperty- See Also:
-
getMinAllowedConfidenceScoreForMerging
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.A higher score means that a higher similarity is required to merge profiles.
- See Also:
-
builder
-