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: