Struct aws_sdk_appflow::types::DestinationFlowConfig
source · #[non_exhaustive]pub struct DestinationFlowConfig {
pub connector_type: 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: 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§
source§impl DestinationFlowConfig
impl DestinationFlowConfig
sourcepub fn connector_type(&self) -> &ConnectorType
pub fn connector_type(&self) -> &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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DestinationFlowConfig
impl Debug for DestinationFlowConfig
source§impl PartialEq for DestinationFlowConfig
impl PartialEq for DestinationFlowConfig
source§fn eq(&self, other: &DestinationFlowConfig) -> bool
fn eq(&self, other: &DestinationFlowConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DestinationFlowConfig
Auto Trait Implementations§
impl Freeze for DestinationFlowConfig
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more