Struct aws_sdk_appflow::model::ConnectorEntityField
source · [−]#[non_exhaustive]pub struct ConnectorEntityField {
pub identifier: Option<String>,
pub parent_identifier: Option<String>,
pub label: Option<String>,
pub is_primary_key: bool,
pub default_value: Option<String>,
pub is_deprecated: bool,
pub supported_field_type_details: Option<SupportedFieldTypeDetails>,
pub description: Option<String>,
pub source_properties: Option<SourceFieldProperties>,
pub destination_properties: Option<DestinationFieldProperties>,
pub custom_properties: Option<HashMap<String, String>>,
}
Expand description
Describes the data model of a connector field. For example, for an account entity, the fields would be account name, account ID, and so on.
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.identifier: Option<String>
The unique identifier of the connector field.
parent_identifier: Option<String>
The parent identifier of the connector field.
label: Option<String>
The label applied to a connector entity field.
is_primary_key: bool
Booelan value that indicates whether this field can be used as a primary key.
default_value: Option<String>
Default value that can be assigned to this field.
is_deprecated: bool
Booelan value that indicates whether this field is deprecated or not.
supported_field_type_details: Option<SupportedFieldTypeDetails>
Contains details regarding the supported FieldType
, including the corresponding filterOperators
and supportedValues
.
description: Option<String>
A description of the connector entity field.
source_properties: Option<SourceFieldProperties>
The properties that can be applied to a field when the connector is being used as a source.
destination_properties: Option<DestinationFieldProperties>
The properties applied to a field when the connector is being used as a destination.
custom_properties: Option<HashMap<String, String>>
A map that has specific properties related to the ConnectorEntityField.
Implementations
sourceimpl ConnectorEntityField
impl ConnectorEntityField
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The unique identifier of the connector field.
sourcepub fn parent_identifier(&self) -> Option<&str>
pub fn parent_identifier(&self) -> Option<&str>
The parent identifier of the connector field.
sourcepub fn is_primary_key(&self) -> bool
pub fn is_primary_key(&self) -> bool
Booelan value that indicates whether this field can be used as a primary key.
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
Default value that can be assigned to this field.
sourcepub fn is_deprecated(&self) -> bool
pub fn is_deprecated(&self) -> bool
Booelan value that indicates whether this field is deprecated or not.
sourcepub fn supported_field_type_details(&self) -> Option<&SupportedFieldTypeDetails>
pub fn supported_field_type_details(&self) -> Option<&SupportedFieldTypeDetails>
Contains details regarding the supported FieldType
, including the corresponding filterOperators
and supportedValues
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the connector entity field.
sourcepub fn source_properties(&self) -> Option<&SourceFieldProperties>
pub fn source_properties(&self) -> Option<&SourceFieldProperties>
The properties that can be applied to a field when the connector is being used as a source.
sourcepub fn destination_properties(&self) -> Option<&DestinationFieldProperties>
pub fn destination_properties(&self) -> Option<&DestinationFieldProperties>
The properties applied to a field when the connector is being used as a destination.
sourceimpl ConnectorEntityField
impl ConnectorEntityField
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ConnectorEntityField
Trait Implementations
sourceimpl Clone for ConnectorEntityField
impl Clone for ConnectorEntityField
sourcefn clone(&self) -> ConnectorEntityField
fn clone(&self) -> ConnectorEntityField
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 ConnectorEntityField
impl Debug for ConnectorEntityField
sourceimpl PartialEq<ConnectorEntityField> for ConnectorEntityField
impl PartialEq<ConnectorEntityField> for ConnectorEntityField
sourcefn eq(&self, other: &ConnectorEntityField) -> bool
fn eq(&self, other: &ConnectorEntityField) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ConnectorEntityField) -> bool
fn ne(&self, other: &ConnectorEntityField) -> bool
This method tests for !=
.
impl StructuralPartialEq for ConnectorEntityField
Auto Trait Implementations
impl RefUnwindSafe for ConnectorEntityField
impl Send for ConnectorEntityField
impl Sync for ConnectorEntityField
impl Unpin for ConnectorEntityField
impl UnwindSafe for ConnectorEntityField
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