Struct aws_sdk_appflow::model::ConnectorEntityField
source · [−]#[non_exhaustive]pub struct ConnectorEntityField { /* private fields */ }
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.
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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more