Flow Salesforce Destination Properties Args
data class FlowSalesforceDestinationPropertiesArgs(val dataTransferApi: Output<FlowDataTransferApi>? = null, val errorHandlingConfig: Output<FlowErrorHandlingConfigArgs>? = null, val idFieldNames: Output<List<String>>? = null, val object: Output<String>, val writeOperationType: Output<FlowWriteOperationType>? = null) : ConvertibleToJava<FlowSalesforceDestinationPropertiesArgs>
Constructors
Link copied to clipboard
constructor(dataTransferApi: Output<FlowDataTransferApi>? = null, errorHandlingConfig: Output<FlowErrorHandlingConfigArgs>? = null, idFieldNames: Output<List<String>>? = null, object: Output<String>, writeOperationType: Output<FlowWriteOperationType>? = null)
Properties
Link copied to clipboard
Specifies which Salesforce API is used by Amazon AppFlow when your flow transfers data to Salesforce.
Link copied to clipboard
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.
Link copied to clipboard
List of fields used as ID when performing a write operation.
Link copied to clipboard
This specifies the type of write operation to be performed in Salesforce. When the value is UPSERT
, then idFieldNames
is required.