Struct aws_sdk_appflow::model::SourceFieldProperties
source · [−]#[non_exhaustive]pub struct SourceFieldProperties {
pub is_retrievable: bool,
pub is_queryable: bool,
pub is_timestamp_field_for_incremental_queries: bool,
}
Expand description
The properties that can be applied to a field when the connector is being used as a source.
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.is_retrievable: bool
Indicates whether the field can be returned in a search result.
is_queryable: bool
Indicates if the field can be queried.
is_timestamp_field_for_incremental_queries: bool
Indicates if this timestamp field can be used for incremental queries.
Implementations
sourceimpl SourceFieldProperties
impl SourceFieldProperties
sourcepub fn is_retrievable(&self) -> bool
pub fn is_retrievable(&self) -> bool
Indicates whether the field can be returned in a search result.
sourcepub fn is_queryable(&self) -> bool
pub fn is_queryable(&self) -> bool
Indicates if the field can be queried.
sourcepub fn is_timestamp_field_for_incremental_queries(&self) -> bool
pub fn is_timestamp_field_for_incremental_queries(&self) -> bool
Indicates if this timestamp field can be used for incremental queries.
sourceimpl SourceFieldProperties
impl SourceFieldProperties
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceFieldProperties
Trait Implementations
sourceimpl Clone for SourceFieldProperties
impl Clone for SourceFieldProperties
sourcefn clone(&self) -> SourceFieldProperties
fn clone(&self) -> SourceFieldProperties
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 SourceFieldProperties
impl Debug for SourceFieldProperties
sourceimpl PartialEq<SourceFieldProperties> for SourceFieldProperties
impl PartialEq<SourceFieldProperties> for SourceFieldProperties
sourcefn eq(&self, other: &SourceFieldProperties) -> bool
fn eq(&self, other: &SourceFieldProperties) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SourceFieldProperties) -> bool
fn ne(&self, other: &SourceFieldProperties) -> bool
This method tests for !=
.
impl StructuralPartialEq for SourceFieldProperties
Auto Trait Implementations
impl RefUnwindSafe for SourceFieldProperties
impl Send for SourceFieldProperties
impl Sync for SourceFieldProperties
impl Unpin for SourceFieldProperties
impl UnwindSafe for SourceFieldProperties
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