Struct aws_sdk_appflow::model::DestinationFlowConfig
source · [−]#[non_exhaustive]pub struct DestinationFlowConfig {
pub connector_type: Option<ConnectorType>,
pub api_version: Option<String>,
pub connector_profile_name: Option<String>,
pub destination_connector_properties: Option<DestinationConnectorProperties>,
}
Expand description
Contains information about the configuration of destination connectors present in the flow.
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.connector_type: Option<ConnectorType>
The type of connector, such as Salesforce, Amplitude, and so on.
api_version: Option<String>
The API version that the destination connector uses.
connector_profile_name: Option<String>
The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account.
destination_connector_properties: Option<DestinationConnectorProperties>
This stores the information that is required to query a particular connector.
Implementations
sourceimpl 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.
sourceimpl DestinationFlowConfig
impl DestinationFlowConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DestinationFlowConfig
Trait Implementations
sourceimpl Clone for DestinationFlowConfig
impl Clone for DestinationFlowConfig
sourcefn clone(&self) -> DestinationFlowConfig
fn clone(&self) -> DestinationFlowConfig
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 Debug for DestinationFlowConfig
impl Debug for DestinationFlowConfig
sourceimpl PartialEq<DestinationFlowConfig> for DestinationFlowConfig
impl PartialEq<DestinationFlowConfig> for DestinationFlowConfig
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &DestinationFlowConfig) -> bool
fn ne(&self, other: &DestinationFlowConfig) -> bool
This method tests for !=
.
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
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