Struct aws_sdk_appflow::model::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
sourceimpl 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.
sourceimpl ErrorHandlingConfig
impl ErrorHandlingConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ErrorHandlingConfig
.
Trait Implementations
sourceimpl Clone for ErrorHandlingConfig
impl Clone for ErrorHandlingConfig
sourcefn clone(&self) -> ErrorHandlingConfig
fn clone(&self) -> ErrorHandlingConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ErrorHandlingConfig
impl Debug for ErrorHandlingConfig
sourceimpl PartialEq<ErrorHandlingConfig> for ErrorHandlingConfig
impl PartialEq<ErrorHandlingConfig> for ErrorHandlingConfig
sourcefn eq(&self, other: &ErrorHandlingConfig) -> bool
fn eq(&self, other: &ErrorHandlingConfig) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more