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

PutProfileObjectTypeRequest

import type { PutProfileObjectTypeRequest } from "https://aws-api.deno.dev/v0.4/services/customerprofiles.ts?docs=full";
interface PutProfileObjectTypeRequest {
AllowProfileCreation?: boolean | null;
Description: string;
DomainName: string;
EncryptionKey?: string | null;
ExpirationDays?: number | null;
Fields?: {
[key: string]: ObjectTypeField | null | undefined;
}
| null;
Keys?: {
[key: string]: ObjectTypeKey[] | null | undefined;
}
| null;
ObjectTypeName: string;
SourceLastUpdatedTimestampFormat?: string | null;
Tags?: {
[key: string]: string | null | undefined;
}
| 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.

§
Description: string
[src]

Description of the profile object type.

§
DomainName: string
[src]

The unique name of the domain.

§
EncryptionKey?: string | null
[src]

The customer-provided key to encrypt the profile object that will be created in this profile object type.

§
ExpirationDays?: number | null
[src]

The number of days until the data in the object expires.

§
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.

§
ObjectTypeName: string
[src]

The name of the profile object type.

§
SourceLastUpdatedTimestampFormat?: string | null
[src]

The format of your sourceLastUpdatedTimestamp that was previously set up.

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

The tags used to organize, track, or control access for this resource.

§
TemplateId?: string | null
[src]

A unique identifier for the object template. For some attributes in the request, the service will use the default value from the object template when TemplateId is present. If these attributes are present in the request, the service may return a BadRequestException. These attributes include: AllowProfileCreation, SourceLastUpdatedTimestampFormat, Fields, and Keys. For example, if AllowProfileCreation is set to true when TemplateId is set, the service may return a BadRequestException.