#[non_exhaustive]pub struct CustomConnectorDestinationProperties {
pub entity_name: Option<String>,
pub error_handling_config: Option<ErrorHandlingConfig>,
pub write_operation_type: Option<WriteOperationType>,
pub id_field_names: Option<Vec<String>>,
pub custom_properties: Option<HashMap<String, String>>,
}
Expand description
The properties that are applied when the custom connector is being used as a destination.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.entity_name: Option<String>
The entity specified in the custom connector as a destination in the flow.
error_handling_config: Option<ErrorHandlingConfig>
The settings that determine how Amazon AppFlow handles an error when placing data in the custom connector as destination.
write_operation_type: Option<WriteOperationType>
Specifies the type of write operation to be performed in the custom connector when it's used as destination.
id_field_names: Option<Vec<String>>
The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update, delete, or upsert.
custom_properties: Option<HashMap<String, String>>
The custom properties that are specific to the connector when it's used as a destination in the flow.
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.
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 more
sourceimpl PartialEq<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
impl PartialEq<CustomConnectorDestinationProperties> for CustomConnectorDestinationProperties
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &CustomConnectorDestinationProperties) -> bool
fn ne(&self, other: &CustomConnectorDestinationProperties) -> bool
This method tests for !=
.
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more