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

SalesforceDestinationProperties

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

The properties that are applied when Salesforce is being used as a destination.

interface SalesforceDestinationProperties {
errorHandlingConfig?: ErrorHandlingConfig | null;
idFieldNames?: string[] | null;
object: string;
writeOperationType?: WriteOperationType | null;
}

§Properties

§
errorHandlingConfig?: ErrorHandlingConfig | null
[src]

The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.

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

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

§
object: string
[src]

The object specified in the Salesforce flow destination.

§
writeOperationType?: WriteOperationType | null
[src]

This specifies the type of write operation to be performed in Salesforce. When the value is UPSERT, then idFieldNames is required.