#[non_exhaustive]pub struct SnowflakeDestinationProperties { /* private fields */ }
Expand description
The properties that are applied when Snowflake is being used as a destination.
Implementations§
source§impl SnowflakeDestinationProperties
impl SnowflakeDestinationProperties
sourcepub fn intermediate_bucket_name(&self) -> Option<&str>
pub fn intermediate_bucket_name(&self) -> Option<&str>
The intermediate bucket that Amazon AppFlow uses when moving data into Snowflake.
sourcepub fn bucket_prefix(&self) -> Option<&str>
pub fn bucket_prefix(&self) -> Option<&str>
The object key for the destination bucket in which Amazon AppFlow places the files.
sourcepub fn error_handling_config(&self) -> Option<&ErrorHandlingConfig>
pub fn error_handling_config(&self) -> Option<&ErrorHandlingConfig>
The settings that determine how Amazon AppFlow handles an error when placing data in the Snowflake 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.
source§impl SnowflakeDestinationProperties
impl SnowflakeDestinationProperties
sourcepub fn builder() -> SnowflakeDestinationPropertiesBuilder
pub fn builder() -> SnowflakeDestinationPropertiesBuilder
Creates a new builder-style object to manufacture SnowflakeDestinationProperties
.
Trait Implementations§
source§impl Clone for SnowflakeDestinationProperties
impl Clone for SnowflakeDestinationProperties
source§fn clone(&self) -> SnowflakeDestinationProperties
fn clone(&self) -> SnowflakeDestinationProperties
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 PartialEq<SnowflakeDestinationProperties> for SnowflakeDestinationProperties
impl PartialEq<SnowflakeDestinationProperties> for SnowflakeDestinationProperties
source§fn eq(&self, other: &SnowflakeDestinationProperties) -> bool
fn eq(&self, other: &SnowflakeDestinationProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SnowflakeDestinationProperties
Auto Trait Implementations§
impl RefUnwindSafe for SnowflakeDestinationProperties
impl Send for SnowflakeDestinationProperties
impl Sync for SnowflakeDestinationProperties
impl Unpin for SnowflakeDestinationProperties
impl UnwindSafe for SnowflakeDestinationProperties
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