Struct aws_sdk_appflow::types::DestinationFlowConfig
source · #[non_exhaustive]pub struct DestinationFlowConfig { /* private fields */ }
Expand description
Contains information about the configuration of destination connectors present in the flow.
Implementations§
source§impl DestinationFlowConfig
impl DestinationFlowConfig
sourcepub fn connector_type(&self) -> Option<&ConnectorType>
pub fn connector_type(&self) -> Option<&ConnectorType>
The type of connector, such as Salesforce, Amplitude, and so on.
sourcepub fn api_version(&self) -> Option<&str>
pub fn api_version(&self) -> Option<&str>
The API version that the destination connector uses.
sourcepub fn connector_profile_name(&self) -> Option<&str>
pub fn connector_profile_name(&self) -> Option<&str>
The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account.
sourcepub fn destination_connector_properties(
&self
) -> Option<&DestinationConnectorProperties>
pub fn destination_connector_properties( &self ) -> Option<&DestinationConnectorProperties>
This stores the information that is required to query a particular connector.
source§impl DestinationFlowConfig
impl DestinationFlowConfig
sourcepub fn builder() -> DestinationFlowConfigBuilder
pub fn builder() -> DestinationFlowConfigBuilder
Creates a new builder-style object to manufacture DestinationFlowConfig
.
Trait Implementations§
source§impl Clone for DestinationFlowConfig
impl Clone for DestinationFlowConfig
source§fn clone(&self) -> DestinationFlowConfig
fn clone(&self) -> DestinationFlowConfig
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 Debug for DestinationFlowConfig
impl Debug for DestinationFlowConfig
source§impl PartialEq<DestinationFlowConfig> for DestinationFlowConfig
impl PartialEq<DestinationFlowConfig> for DestinationFlowConfig
source§fn eq(&self, other: &DestinationFlowConfig) -> bool
fn eq(&self, other: &DestinationFlowConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DestinationFlowConfig
Auto Trait Implementations§
impl RefUnwindSafe for DestinationFlowConfig
impl Send for DestinationFlowConfig
impl Sync for DestinationFlowConfig
impl Unpin for DestinationFlowConfig
impl UnwindSafe for DestinationFlowConfig
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