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 ==
.