Struct aws_sdk_appflow::model::ConnectorEntity [−][src]
#[non_exhaustive]pub struct ConnectorEntity {
pub name: Option<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: Option<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
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.
Creates a new builder-style object to manufacture ConnectorEntity
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ConnectorEntity
impl Send for ConnectorEntity
impl Sync for ConnectorEntity
impl Unpin for ConnectorEntity
impl UnwindSafe for ConnectorEntity
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more