Class: Aws::Appflow::Types::ZendeskDestinationProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ZendeskDestinationProperties
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
The properties that are applied when Zendesk is 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 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 ⇒ String
The object specified in the Zendesk flow destination.
-
#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.
5453 5454 5455 5456 5457 5458 5459 5460 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5453 class ZendeskDestinationProperties < Struct.new( :object, :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.
5453 5454 5455 5456 5457 5458 5459 5460 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5453 class ZendeskDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |
#object ⇒ String
The object specified in the Zendesk flow destination.
5453 5454 5455 5456 5457 5458 5459 5460 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5453 class ZendeskDestinationProperties < Struct.new( :object, :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.
5453 5454 5455 5456 5457 5458 5459 5460 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 5453 class ZendeskDestinationProperties < Struct.new( :object, :id_field_names, :error_handling_config, :write_operation_type) SENSITIVE = [] include Aws::Structure end |