Struct aws_sdk_appflow::model::SourceFlowConfig
source · [−]#[non_exhaustive]pub struct SourceFlowConfig { /* private fields */ }
Expand description
Contains information about the configuration of the source connector used in the flow.
Implementations
sourceimpl SourceFlowConfig
impl SourceFlowConfig
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 of the connector when it's used as a source in the flow.
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 source_connector_properties(&self) -> Option<&SourceConnectorProperties>
pub fn source_connector_properties(&self) -> Option<&SourceConnectorProperties>
Specifies the information that is required to query a particular source connector.
sourcepub fn incremental_pull_config(&self) -> Option<&IncrementalPullConfig>
pub fn incremental_pull_config(&self) -> Option<&IncrementalPullConfig>
Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.
sourceimpl SourceFlowConfig
impl SourceFlowConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceFlowConfig
.
Trait Implementations
sourceimpl Clone for SourceFlowConfig
impl Clone for SourceFlowConfig
sourcefn clone(&self) -> SourceFlowConfig
fn clone(&self) -> SourceFlowConfig
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 moresourceimpl Debug for SourceFlowConfig
impl Debug for SourceFlowConfig
sourceimpl PartialEq<SourceFlowConfig> for SourceFlowConfig
impl PartialEq<SourceFlowConfig> for SourceFlowConfig
sourcefn eq(&self, other: &SourceFlowConfig) -> bool
fn eq(&self, other: &SourceFlowConfig) -> bool
impl StructuralPartialEq for SourceFlowConfig
Auto Trait Implementations
impl RefUnwindSafe for SourceFlowConfig
impl Send for SourceFlowConfig
impl Sync for SourceFlowConfig
impl Unpin for SourceFlowConfig
impl UnwindSafe for SourceFlowConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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