#[non_exhaustive]pub struct CustomConnectorDestinationProperties { /* private fields */ }
Expand description
The properties that are applied when the custom connector is being used as a destination.
Implementations
sourceimpl CustomConnectorDestinationProperties
impl CustomConnectorDestinationProperties
sourcepub fn entity_name(&self) -> Option<&str>
pub fn entity_name(&self) -> Option<&str>
The entity specified in the custom connector as a destination in the flow.
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 custom connector as destination.
sourcepub fn write_operation_type(&self) -> Option<&WriteOperationType>
pub fn write_operation_type(&self) -> Option<&WriteOperationType>
Specifies the type of write operation to be performed in the custom connector when it's used as destination.
sourcepub fn id_field_names(&self) -> Option<&[String]>
pub fn id_field_names(&self) -> Option<&[String]>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.
sourceimpl CustomConnectorDestinationProperties
impl CustomConnectorDestinationProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CustomConnectorDestinationProperties
.
Trait Implementations
sourceimpl Clone for CustomConnectorDestinationProperties
impl Clone for CustomConnectorDestinationProperties
sourcefn clone(&self) -> CustomConnectorDestinationProperties
fn clone(&self) -> CustomConnectorDestinationProperties
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 PartialEq<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
impl PartialEq<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
sourcefn eq(&self, other: &CustomConnectorDestinationProperties) -> bool
fn eq(&self, other: &CustomConnectorDestinationProperties) -> bool
impl StructuralPartialEq for CustomConnectorDestinationProperties
Auto Trait Implementations
impl RefUnwindSafe for CustomConnectorDestinationProperties
impl Send for CustomConnectorDestinationProperties
impl Sync for CustomConnectorDestinationProperties
impl Unpin for CustomConnectorDestinationProperties
impl UnwindSafe for CustomConnectorDestinationProperties
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