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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomain.ConflictResolutionPropertystatic final classAn implementation forCfnDomain.ConflictResolutionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConflictResolvingModel
How the auto-merging process should resolve conflicts between different profiles.- See Also:
-
getSourceName
TheObjectTypename that is used to resolve profile merging conflicts when choosingSOURCEas theConflictResolvingModel.- See Also:
-
builder
-