#[non_exhaustive]pub struct SalesforceDestinationProperties { /* private fields */ }
Expand description
The properties that are applied when Salesforce is being used as a destination.
Implementations
sourceimpl SalesforceDestinationProperties
impl SalesforceDestinationProperties
sourcepub fn id_field_names(&self) -> Option<&[String]>
pub fn id_field_names(&self) -> Option<&[String]>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
sourcepub fn error_handling_config(&self) -> Option<&ErrorHandlingConfig>
pub fn error_handling_config(&self) -> Option<&ErrorHandlingConfig>
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.
sourcepub fn write_operation_type(&self) -> Option<&WriteOperationType>
pub fn write_operation_type(&self) -> Option<&WriteOperationType>
This specifies the type of write operation to be performed in Salesforce. When the value is UPSERT
, then idFieldNames
is required.
sourceimpl SalesforceDestinationProperties
impl SalesforceDestinationProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SalesforceDestinationProperties
.
Trait Implementations
sourceimpl Clone for SalesforceDestinationProperties
impl Clone for SalesforceDestinationProperties
sourcefn clone(&self) -> SalesforceDestinationProperties
fn clone(&self) -> SalesforceDestinationProperties
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more