Struct aws_sdk_appflow::model::ErrorHandlingConfig
source · [−]#[non_exhaustive]pub struct ErrorHandlingConfig {
pub fail_on_first_destination_error: bool,
pub bucket_prefix: Option<String>,
pub bucket_name: Option<String>,
}
Expand description
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.fail_on_first_destination_error: bool
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
bucket_prefix: Option<String>
Specifies the Amazon S3 bucket prefix.
bucket_name: Option<String>
Specifies the name of the Amazon S3 bucket.
Implementations
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
Specifies the Amazon S3 bucket prefix.
Specifies the name of the Amazon S3 bucket.
Creates a new builder-style object to manufacture ErrorHandlingConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ErrorHandlingConfig
impl Send for ErrorHandlingConfig
impl Sync for ErrorHandlingConfig
impl Unpin for ErrorHandlingConfig
impl UnwindSafe for ErrorHandlingConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more