Class: Aws::Appflow::Types::SAPODataDestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::SAPODataDestinationProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
The properties that are applied when using SAPOData as a flow 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 destination.
-
#id_field_names ⇒ Array<String>
A list of field names that can be used as an ID field when performing a write operation.
-
#object_path ⇒ String
The object path specified in the SAPOData flow destination.
-
#success_response_handling_config ⇒ Types::SuccessResponseHandlingConfig
Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.
-
#write_operation_type ⇒ String
The possible write operations in the destination connector.
Instance Attribute Details
#error_handling_config ⇒ Types::ErrorHandlingConfig
The settings that determine how Amazon AppFlow handles an error when
placing data in the 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.
4243 4244 4245 4246 4247 4248 4249 4250 4251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4243 class SAPODataDestinationProperties < Struct.new( :object_path, :success_response_handling_config, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#id_field_names ⇒ Array<String>
A list of field names that can be used as an ID field when performing a write operation.
4243 4244 4245 4246 4247 4248 4249 4250 4251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4243 class SAPODataDestinationProperties < Struct.new( :object_path, :success_response_handling_config, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#object_path ⇒ String
The object path specified in the SAPOData flow destination.
4243 4244 4245 4246 4247 4248 4249 4250 4251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4243 class SAPODataDestinationProperties < Struct.new( :object_path, :success_response_handling_config, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#success_response_handling_config ⇒ Types::SuccessResponseHandlingConfig
Determines how Amazon AppFlow handles the success response that it gets from the connector after placing data.
For example, this setting would determine where to write the response from a destination connector upon a successful insert operation.
4243 4244 4245 4246 4247 4248 4249 4250 4251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4243 class SAPODataDestinationProperties < Struct.new( :object_path, :success_response_handling_config, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#write_operation_type ⇒ String
The possible write operations in the destination connector. When
this value is not provided, this defaults to the INSERT
operation.
4243 4244 4245 4246 4247 4248 4249 4250 4251 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 4243 class SAPODataDestinationProperties < Struct.new( :object_path, :success_response_handling_config, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |