Struct aws_sdk_appflow::types::SourceFlowConfig
source · #[non_exhaustive]pub struct SourceFlowConfig {
pub connector_type: ConnectorType,
pub api_version: Option<String>,
pub connector_profile_name: Option<String>,
pub source_connector_properties: Option<SourceConnectorProperties>,
pub incremental_pull_config: Option<IncrementalPullConfig>,
}
Expand description
Contains information about the configuration of the source connector used 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 of the connector when it's used as a source in the flow.
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.
source_connector_properties: Option<SourceConnectorProperties>
Specifies the information that is required to query a particular source connector.
incremental_pull_config: 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.
Implementations§
source§impl SourceFlowConfig
impl SourceFlowConfig
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 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.
source§impl SourceFlowConfig
impl SourceFlowConfig
sourcepub fn builder() -> SourceFlowConfigBuilder
pub fn builder() -> SourceFlowConfigBuilder
Creates a new builder-style object to manufacture SourceFlowConfig
.
Trait Implementations§
source§impl Clone for SourceFlowConfig
impl Clone for SourceFlowConfig
source§fn clone(&self) -> SourceFlowConfig
fn clone(&self) -> SourceFlowConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SourceFlowConfig
impl Debug for SourceFlowConfig
source§impl PartialEq for SourceFlowConfig
impl PartialEq for SourceFlowConfig
source§fn eq(&self, other: &SourceFlowConfig) -> bool
fn eq(&self, other: &SourceFlowConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SourceFlowConfig
Auto Trait Implementations§
impl Freeze for SourceFlowConfig
impl RefUnwindSafe for SourceFlowConfig
impl Send for SourceFlowConfig
impl Sync for SourceFlowConfig
impl Unpin for SourceFlowConfig
impl UnwindSafe for SourceFlowConfig
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