Struct aws_sdk_appflow::types::ConnectorEntity
source · #[non_exhaustive]pub struct ConnectorEntity {
pub name: String,
pub label: Option<String>,
pub has_nested_entities: bool,
}
Expand description
The high-level entity that can be queried in Amazon AppFlow. For example, a Salesforce entity might be an Account or Opportunity, whereas a ServiceNow entity might be an Incident.
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.name: String
The name of the connector entity.
label: Option<String>
The label applied to the connector entity.
has_nested_entities: bool
Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with entitiesPath = "the_current_entity_name_with_hasNestedEntities_true"
, then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.
Implementations§
source§impl ConnectorEntity
impl ConnectorEntity
sourcepub fn has_nested_entities(&self) -> bool
pub fn has_nested_entities(&self) -> bool
Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with entitiesPath = "the_current_entity_name_with_hasNestedEntities_true"
, then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.
source§impl ConnectorEntity
impl ConnectorEntity
sourcepub fn builder() -> ConnectorEntityBuilder
pub fn builder() -> ConnectorEntityBuilder
Creates a new builder-style object to manufacture ConnectorEntity
.
Trait Implementations§
source§impl Clone for ConnectorEntity
impl Clone for ConnectorEntity
source§fn clone(&self) -> ConnectorEntity
fn clone(&self) -> ConnectorEntity
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ConnectorEntity
impl Debug for ConnectorEntity
source§impl PartialEq for ConnectorEntity
impl PartialEq for ConnectorEntity
source§fn eq(&self, other: &ConnectorEntity) -> bool
fn eq(&self, other: &ConnectorEntity) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConnectorEntity
Auto Trait Implementations§
impl Freeze for ConnectorEntity
impl RefUnwindSafe for ConnectorEntity
impl Send for ConnectorEntity
impl Sync for ConnectorEntity
impl Unpin for ConnectorEntity
impl UnwindSafe for ConnectorEntity
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