Struct aws_sdk_appflow::input::ListConnectorEntitiesInput
source · [−]#[non_exhaustive]pub struct ListConnectorEntitiesInput {
pub connector_profile_name: Option<String>,
pub connector_type: Option<ConnectorType>,
pub entities_path: Option<String>,
pub api_version: Option<String>,
}
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.connector_profile_name: Option<String>
The name of the connector profile. The name is unique for each ConnectorProfile
in the Amazon Web Services account, and is used to query the downstream connector.
connector_type: Option<ConnectorType>
The type of connector, such as Salesforce, Amplitude, and so on.
entities_path: Option<String>
This optional parameter is specific to connector implementation. Some connectors support multiple levels or categories of entities. You can find out the list of roots for such providers by sending a request without the entitiesPath
parameter. If the connector supports entities at different roots, this initial request returns the list of roots. Otherwise, this request returns all entities supported by the provider.
api_version: Option<String>
The version of the API that's used by the connector.
Implementations
sourceimpl ListConnectorEntitiesInput
impl ListConnectorEntitiesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListConnectorEntities, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListConnectorEntities, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListConnectorEntities
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListConnectorEntitiesInput
sourceimpl ListConnectorEntitiesInput
impl ListConnectorEntitiesInput
sourcepub fn connector_profile_name(&self) -> Option<&str>
pub fn connector_profile_name(&self) -> Option<&str>
The name of the connector profile. The name is unique for each ConnectorProfile
in the Amazon Web Services account, and is used to query the downstream connector.
sourcepub fn connector_type(&self) -> Option<&ConnectorType>
pub fn connector_type(&self) -> Option<&ConnectorType>
The type of connector, such as Salesforce, Amplitude, and so on.
sourcepub fn entities_path(&self) -> Option<&str>
pub fn entities_path(&self) -> Option<&str>
This optional parameter is specific to connector implementation. Some connectors support multiple levels or categories of entities. You can find out the list of roots for such providers by sending a request without the entitiesPath
parameter. If the connector supports entities at different roots, this initial request returns the list of roots. Otherwise, this request returns all entities supported by the provider.
sourcepub fn api_version(&self) -> Option<&str>
pub fn api_version(&self) -> Option<&str>
The version of the API that's used by the connector.
Trait Implementations
sourceimpl Clone for ListConnectorEntitiesInput
impl Clone for ListConnectorEntitiesInput
sourcefn clone(&self) -> ListConnectorEntitiesInput
fn clone(&self) -> ListConnectorEntitiesInput
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 ListConnectorEntitiesInput
impl Debug for ListConnectorEntitiesInput
sourceimpl PartialEq<ListConnectorEntitiesInput> for ListConnectorEntitiesInput
impl PartialEq<ListConnectorEntitiesInput> for ListConnectorEntitiesInput
sourcefn eq(&self, other: &ListConnectorEntitiesInput) -> bool
fn eq(&self, other: &ListConnectorEntitiesInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListConnectorEntitiesInput) -> bool
fn ne(&self, other: &ListConnectorEntitiesInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListConnectorEntitiesInput
Auto Trait Implementations
impl RefUnwindSafe for ListConnectorEntitiesInput
impl Send for ListConnectorEntitiesInput
impl Sync for ListConnectorEntitiesInput
impl Unpin for ListConnectorEntitiesInput
impl UnwindSafe for ListConnectorEntitiesInput
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