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

GetProfileObjectTypeTemplateResponse

import type { GetProfileObjectTypeTemplateResponse } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface GetProfileObjectTypeTemplateResponse {
AllowProfileCreation?: boolean | null;
Fields?: {
[key: string]: ObjectTypeField | null | undefined;
}
| null;
Keys?: {
[key: string]: ObjectTypeKey[] | null | undefined;
}
| null;
SourceLastUpdatedTimestampFormat?: string | null;
SourceName?: string | null;
SourceObject?: string | null;
TemplateId?: string | null;
}

§Properties

§
AllowProfileCreation?: boolean | null
[src]

Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE. If the AllowProfileCreation flag is set to FALSE, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE, and if no match is found, then the service creates a new standard profile.

§
Fields?: {
[key: string]: ObjectTypeField | null | undefined;
}
| null
[src]

A map of the name and ObjectType field.

§
Keys?: {
[key: string]: ObjectTypeKey[] | null | undefined;
}
| null
[src]

A list of unique keys that can be used to map data to the profile.

§
SourceLastUpdatedTimestampFormat?: string | null
[src]

The format of your sourceLastUpdatedTimestamp that was previously set up.

§
SourceName?: string | null
[src]

The name of the source of the object template.

§
SourceObject?: string | null
[src]

The source of the object template.

§
TemplateId?: string | null
[src]

A unique identifier for the object template.