#[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§
source§impl 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.
source§impl CustomConnectorDestinationProperties
impl CustomConnectorDestinationProperties
sourcepub fn builder() -> CustomConnectorDestinationPropertiesBuilder
pub fn builder() -> CustomConnectorDestinationPropertiesBuilder
Creates a new builder-style object to manufacture CustomConnectorDestinationProperties
.
Trait Implementations§
source§impl Clone for CustomConnectorDestinationProperties
impl Clone for CustomConnectorDestinationProperties
source§fn clone(&self) -> CustomConnectorDestinationProperties
fn clone(&self) -> CustomConnectorDestinationProperties
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<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
impl PartialEq<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
source§fn eq(&self, other: &CustomConnectorDestinationProperties) -> bool
fn eq(&self, other: &CustomConnectorDestinationProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
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