interface ConflictResolutionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnDomainPropsMixin.ConflictResolutionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnDomainPropsMixin_ConflictResolutionProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnDomainPropsMixin.ConflictResolutionProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnDomainPropsMixin.ConflictResolutionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnDomainPropsMixin » 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 { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const conflictResolutionProperty: customerprofiles_mixins.CfnDomainPropsMixin.ConflictResolutionProperty = {
conflictResolvingModel: 'conflictResolvingModel',
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
(optional)
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 .

.NET
Go
Java
Python
TypeScript