Class: Aws::CustomerProfiles::Types::ConflictResolution
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::ConflictResolution
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
How the auto-merging process should resolve conflicts between different profiles.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#conflict_resolving_model ⇒ String
How the auto-merging process should resolve conflicts between different profiles.
-
#source_name ⇒ String
The
ObjectTypename that is used to resolve profile merging conflicts when choosingSOURCEas theConflictResolvingModel.
Instance Attribute Details
#conflict_resolving_model ⇒ String
How the auto-merging process should resolve conflicts between different profiles.
RECENCY: Uses the data that was most recently updated.SOURCE: Uses the data from a specific source. For example, if a company has been aquired or two departments have merged, data from the specified source is used. If two duplicate profiles are from the same source, thenRECENCYis used again.
1013 1014 1015 1016 1017 1018 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 1013 class ConflictResolution < Struct.new( :conflict_resolving_model, :source_name) SENSITIVE = [] include Aws::Structure end |
#source_name ⇒ String
The ObjectType name that is used to resolve profile merging
conflicts when choosing SOURCE as the ConflictResolvingModel.
1013 1014 1015 1016 1017 1018 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 1013 class ConflictResolution < Struct.new( :conflict_resolving_model, :source_name) SENSITIVE = [] include Aws::Structure end |