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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-appflow/types.rb

Overview

Note:

When making an API call, you may pass ErrorHandlingConfig data as a 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_nameString

Specifies the name of the Amazon S3 bucket.

Returns:

  • (String)


2460
2461
2462
2463
2464
2465
2466
# File 'lib/aws-sdk-appflow/types.rb', line 2460

class ErrorHandlingConfig < Struct.new(
  :fail_on_first_destination_error,
  :bucket_prefix,
  :bucket_name)
  SENSITIVE = []
  include Aws::Structure
end

#bucket_prefixString

Specifies the Amazon S3 bucket prefix.

Returns:

  • (String)


2460
2461
2462
2463
2464
2465
2466
# File 'lib/aws-sdk-appflow/types.rb', line 2460

class ErrorHandlingConfig < Struct.new(
  :fail_on_first_destination_error,
  :bucket_prefix,
  :bucket_name)
  SENSITIVE = []
  include Aws::Structure
end

#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)


2460
2461
2462
2463
2464
2465
2466
# File 'lib/aws-sdk-appflow/types.rb', line 2460

class ErrorHandlingConfig < Struct.new(
  :fail_on_first_destination_error,
  :bucket_prefix,
  :bucket_name)
  SENSITIVE = []
  include Aws::Structure
end