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

MergeProfilesRequest

import type { MergeProfilesRequest } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface MergeProfilesRequest {
DomainName: string;
FieldSourceProfileIds?: FieldSourceProfileIds | null;
MainProfileId: string;
ProfileIdsToBeMerged: string[];
}

§Properties

§
DomainName: string
[src]

The unique name of the domain.

§
FieldSourceProfileIds?: FieldSourceProfileIds | null
[src]

The identifiers of the fields in the profile that has the information you want to apply to the merge. For example, say you want to merge EmailAddress from Profile1 into MainProfile. This would be the identifier of the EmailAddress field in Profile1.

§
MainProfileId: string
[src]

The identifier of the profile to be taken.

§
ProfileIdsToBeMerged: string[]
[src]

The identifier of the profile to be merged into MainProfileId.