interface ConflictResolutionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.CustomerProfiles.CfnDomain.ConflictResolutionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnDomain_ConflictResolutionProperty |
![]() | software.amazon.awscdk.services.customerprofiles.CfnDomain.ConflictResolutionProperty |
![]() | aws_cdk.aws_customerprofiles.CfnDomain.ConflictResolutionProperty |
![]() | aws-cdk-lib » aws_customerprofiles » CfnDomain » ConflictResolutionProperty |
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 { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const conflictResolutionProperty: customerprofiles.CfnDomain.ConflictResolutionProperty = {
conflictResolvingModel: 'conflictResolvingModel',
// the properties below are optional
sourceName: 'sourceName',
};
Properties
Name | Type | Description |
---|---|---|
conflict | string | How the auto-merging process should resolve conflicts between different profiles. |
source | string | The ObjectType name that is used to resolve profile merging conflicts when choosing SOURCE as the ConflictResolvingModel . |
conflictResolvingModel
Type:
string
How the auto-merging process should resolve conflicts between different profiles.
sourceName?
Type:
string
(optional)
The ObjectType
name that is used to resolve profile merging conflicts when choosing SOURCE
as the ConflictResolvingModel
.