Struct aws_sdk_appflow::types::ErrorHandlingConfig
source · #[non_exhaustive]pub struct ErrorHandlingConfig { /* private fields */ }
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.
Implementations§
source§impl ErrorHandlingConfig
impl ErrorHandlingConfig
sourcepub fn fail_on_first_destination_error(&self) -> bool
pub fn fail_on_first_destination_error(&self) -> bool
Specifies if the flow should fail after the first instance of a failure when attempting to place data in the destination.
sourcepub fn bucket_prefix(&self) -> Option<&str>
pub fn bucket_prefix(&self) -> Option<&str>
Specifies the Amazon S3 bucket prefix.
sourcepub fn bucket_name(&self) -> Option<&str>
pub fn bucket_name(&self) -> Option<&str>
Specifies the name of the Amazon S3 bucket.
source§impl ErrorHandlingConfig
impl ErrorHandlingConfig
sourcepub fn builder() -> ErrorHandlingConfigBuilder
pub fn builder() -> ErrorHandlingConfigBuilder
Creates a new builder-style object to manufacture ErrorHandlingConfig
.
Trait Implementations§
source§impl Clone for ErrorHandlingConfig
impl Clone for ErrorHandlingConfig
source§fn clone(&self) -> ErrorHandlingConfig
fn clone(&self) -> ErrorHandlingConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ErrorHandlingConfig
impl Debug for ErrorHandlingConfig
source§impl PartialEq<ErrorHandlingConfig> for ErrorHandlingConfig
impl PartialEq<ErrorHandlingConfig> for ErrorHandlingConfig
source§fn eq(&self, other: &ErrorHandlingConfig) -> bool
fn eq(&self, other: &ErrorHandlingConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ErrorHandlingConfig
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more