Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AutoMerging

import type { AutoMerging } from "https://aws-api.deno.dev/v0.3/services/customerprofiles.ts?docs=full";

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

interface AutoMerging {
ConflictResolution?: ConflictResolution | null;
Consolidation?: Consolidation | null;
Enabled: boolean;
}

§Properties

§
ConflictResolution?: ConflictResolution | null
[src]

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?: Consolidation | null
[src]

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.

§
Enabled: boolean
[src]

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