Class: Aws::Appflow::Types::SalesforceDestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SalesforceDestinationProperties
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
When making an API call, you may pass SalesforceDestinationProperties data as a hash:
{
object: "Object", # required
id_field_names: ["Name"],
error_handling_config: {
fail_on_first_destination_error: false,
bucket_prefix: "BucketPrefix",
bucket_name: "BucketName",
},
write_operation_type: "INSERT", # accepts INSERT, UPSERT, UPDATE
}
The properties that are applied when Salesforce is being used as a destination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_handling_config ⇒ Types::ErrorHandlingConfig
The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination.
-
#id_field_names ⇒ Array<String>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
-
#object ⇒ String
The object specified in the Salesforce flow destination.
-
#write_operation_type ⇒ String
This specifies the type of write operation to be performed in Salesforce.
Instance Attribute Details
#error_handling_config ⇒ Types::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.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-appflow/types.rb', line 3698 class SalesforceDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#id_field_names ⇒ Array<String>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-appflow/types.rb', line 3698 class SalesforceDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#object ⇒ String
The object specified in the Salesforce flow destination.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-appflow/types.rb', line 3698 class SalesforceDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#write_operation_type ⇒ String
This specifies the type of write operation to be performed in Salesforce. When the value is ‘UPSERT`, then `idFieldNames` is required.
3698 3699 3700 3701 3702 3703 3704 3705 |
# File 'lib/aws-sdk-appflow/types.rb', line 3698 class SalesforceDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |