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

CustomConnectorDestinationProperties

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

The properties that are applied when the custom connector is being used as a destination.

interface CustomConnectorDestinationProperties {
customProperties?: {
[key: string]: string | null | undefined;
}
| null;
entityName: string;
errorHandlingConfig?: ErrorHandlingConfig | null;
idFieldNames?: string[] | null;
writeOperationType?: WriteOperationType | null;
}

§Properties

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

The custom properties that are specific to the connector when it's used as a destination in the flow.

§
entityName: string
[src]

The entity specified in the custom connector as a destination in the flow.

§
errorHandlingConfig?: ErrorHandlingConfig | null
[src]

The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination.

§
idFieldNames?: string[] | null
[src]

The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.

§
writeOperationType?: WriteOperationType | null
[src]

Specifies the type of write operation to be performed in the custom connector when it's used as destination.