Class: Aws::Appflow::Types::ErrorHandlingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ErrorHandlingConfig
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket.
-
#bucket_prefix ⇒ String
Specifies the Amazon S3 bucket prefix.
-
#fail_on_first_destination_error ⇒ Boolean
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
Instance Attribute Details
#bucket_name ⇒ String
Specifies the name of the Amazon S3 bucket.
2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2194 class ErrorHandlingConfig < Struct.new( :fail_on_first_destination_error, :bucket_prefix, :bucket_name) SENSITIVE = [] include Aws::Structure end |
#bucket_prefix ⇒ String
Specifies the Amazon S3 bucket prefix.
2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2194 class ErrorHandlingConfig < Struct.new( :fail_on_first_destination_error, :bucket_prefix, :bucket_name) SENSITIVE = [] include Aws::Structure end |
#fail_on_first_destination_error ⇒ Boolean
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
2194 2195 2196 2197 2198 2199 2200 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2194 class ErrorHandlingConfig < Struct.new( :fail_on_first_destination_error, :bucket_prefix, :bucket_name) SENSITIVE = [] include Aws::Structure end |