amazonka-customer-profiles-2.0: Amazon Connect Customer Profiles SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.CustomerProfiles.Types.AutoMerging

Description

 
Synopsis

Documentation

data AutoMerging Source #

Configuration settings for how to perform the auto-merging of profiles.

See: newAutoMerging smart constructor.

Constructors

AutoMerging' 

Fields

  • conflictResolution :: Maybe ConflictResolution

    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 (and that is the matching criteria), which EmailAddress should be used?

  • consolidation :: Maybe Consolidation

    A list of matching attributes that represent matching criteria. If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.

  • minAllowedConfidenceScoreForMerging :: Maybe Double

    A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process. A higher score means higher similarity required to merge profiles.

  • enabled :: Bool

    The flag that enables the auto-merging of duplicate profiles.

Instances

Instances details
FromJSON AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

ToJSON AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

Generic AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

Associated Types

type Rep AutoMerging :: Type -> Type #

Read AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

Show AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

NFData AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

Methods

rnf :: AutoMerging -> () #

Eq AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

Hashable AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

type Rep AutoMerging Source # 
Instance details

Defined in Amazonka.CustomerProfiles.Types.AutoMerging

type Rep AutoMerging = D1 ('MetaData "AutoMerging" "Amazonka.CustomerProfiles.Types.AutoMerging" "amazonka-customer-profiles-2.0-7iC4NjyJEW8JuQGNtDiJ1f" 'False) (C1 ('MetaCons "AutoMerging'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "conflictResolution") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ConflictResolution)) :*: S1 ('MetaSel ('Just "consolidation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Consolidation))) :*: (S1 ('MetaSel ('Just "minAllowedConfidenceScoreForMerging") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "enabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Bool))))

newAutoMerging Source #

Create a value of AutoMerging with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:conflictResolution:AutoMerging', autoMerging_conflictResolution - 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 (and that is the matching criteria), which EmailAddress should be used?

$sel:consolidation:AutoMerging', autoMerging_consolidation - A list of matching attributes that represent matching criteria. If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.

$sel:minAllowedConfidenceScoreForMerging:AutoMerging', autoMerging_minAllowedConfidenceScoreForMerging - A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process. A higher score means higher similarity required to merge profiles.

$sel:enabled:AutoMerging', autoMerging_enabled - The flag that enables the auto-merging of duplicate profiles.

autoMerging_conflictResolution :: Lens' AutoMerging (Maybe ConflictResolution) Source #

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 (and that is the matching criteria), which EmailAddress should be used?

autoMerging_consolidation :: Lens' AutoMerging (Maybe Consolidation) Source #

A list of matching attributes that represent matching criteria. If two profiles meet at least one of the requirements in the matching attributes list, they will be merged.

autoMerging_minAllowedConfidenceScoreForMerging :: Lens' AutoMerging (Maybe Double) Source #

A number between 0 and 1 that represents the minimum confidence score required for profiles within a matching group to be merged during the auto-merge process. A higher score means higher similarity required to merge profiles.

autoMerging_enabled :: Lens' AutoMerging Bool Source #

The flag that enables the auto-merging of duplicate profiles.