#[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>,
pub max_results: Option<i32>,
pub next_token: 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.
max_results: Option<i32>
The maximum number of items that the operation returns in the response.
next_token: Option<String>
A token that was provided by your prior ListConnectorEntities
operation if the response was too big for the page size. You specify this token to get the next page of results in paginated response.
Implementations§
source§impl 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.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items that the operation returns in the response.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that was provided by your prior ListConnectorEntities
operation if the response was too big for the page size. You specify this token to get the next page of results in paginated response.
source§impl ListConnectorEntitiesInput
impl ListConnectorEntitiesInput
sourcepub fn builder() -> ListConnectorEntitiesInputBuilder
pub fn builder() -> ListConnectorEntitiesInputBuilder
Creates a new builder-style object to manufacture ListConnectorEntitiesInput
.
Trait Implementations§
source§impl Clone for ListConnectorEntitiesInput
impl Clone for ListConnectorEntitiesInput
source§fn clone(&self) -> ListConnectorEntitiesInput
fn clone(&self) -> ListConnectorEntitiesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListConnectorEntitiesInput
impl Debug for ListConnectorEntitiesInput
source§impl PartialEq for ListConnectorEntitiesInput
impl PartialEq for ListConnectorEntitiesInput
source§fn eq(&self, other: &ListConnectorEntitiesInput) -> bool
fn eq(&self, other: &ListConnectorEntitiesInput) -> bool
self
and other
values to be equal, and is used
by ==
.