You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Appflow::Types::ErrorHandlingConfig

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ErrorHandlingConfig as input to an Aws::Client method, you can use a vanilla Hash:

{
  fail_on_first_destination_error: false,
  bucket_prefix: "BucketPrefix",
  bucket_name: "BucketName",
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Specifies the name of the Amazon S3 bucket.

Returns:

  • (String)

    Specifies the name of the Amazon S3 bucket.

#bucket_prefixString

Specifies the Amazon S3 bucket prefix.

Returns:

  • (String)

    Specifies the Amazon S3 bucket prefix.

#fail_on_first_destination_errorBoolean

Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.

Returns:

  • (Boolean)

    Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.