Interface CfnDomain.ConflictResolutionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDomain.ConflictResolutionProperty.Jsii$Proxy
Enclosing class:
CfnDomain

@Stability(Stable) public static interface CfnDomain.ConflictResolutionProperty extends software.amazon.jsii.JsiiSerializable
Determines how the auto-merging process should resolve conflicts between different profiles.

For example, if Profile A and Profile B have the same FirstName and LastName , ConflictResolution specifies which EmailAddress should be used.

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.*;
 ConflictResolutionProperty conflictResolutionProperty = ConflictResolutionProperty.builder()
         .conflictResolvingModel("conflictResolvingModel")
         // the properties below are optional
         .sourceName("sourceName")
         .build();
 

See Also: