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

DestinationFieldProperties

import type { DestinationFieldProperties } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

The properties that can be applied to a field when connector is being used as a destination.

interface DestinationFieldProperties {
isCreatable?: boolean | null;
isDefaultedOnCreate?: boolean | null;
isNullable?: boolean | null;
isUpdatable?: boolean | null;
isUpsertable?: boolean | null;
supportedWriteOperations?: WriteOperationType[] | null;
}

§Properties

§
isCreatable?: boolean | null
[src]

Specifies if the destination field can be created by the current user.

§
isDefaultedOnCreate?: boolean | null
[src]

Specifies whether the field can use the default value during a Create operation.

§
isNullable?: boolean | null
[src]

Specifies if the destination field can have a null value.

§
isUpdatable?: boolean | null
[src]

Specifies whether the field can be updated during an UPDATE or UPSERT write operation.

§
isUpsertable?: boolean | null
[src]

Specifies if the flow run can either insert new rows in the destination field if they do not already exist, or update them if they do.

§
supportedWriteOperations?: WriteOperationType[] | null
[src]

A list of supported write operations. For each write operation listed, this field can be used in idFieldNames when that write operation is present as a destination option.