#[non_exhaustive]pub struct ListConnectorEntitiesOutput {
pub connector_entity_map: HashMap<String, Vec<ConnectorEntity>>,
pub next_token: Option<String>,
/* private fields */
}
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_entity_map: HashMap<String, Vec<ConnectorEntity>>
The response of ListConnectorEntities
lists entities grouped by category. This map's key represents the group name, and its value contains the list of entities belonging to that group.
next_token: Option<String>
A token that you specify in your next ListConnectorEntities
operation to get the next page of results in paginated response. The ListConnectorEntities
operation provides this token if the response is too big for the page size.
Implementations§
source§impl ListConnectorEntitiesOutput
impl ListConnectorEntitiesOutput
sourcepub fn connector_entity_map(&self) -> &HashMap<String, Vec<ConnectorEntity>>
pub fn connector_entity_map(&self) -> &HashMap<String, Vec<ConnectorEntity>>
The response of ListConnectorEntities
lists entities grouped by category. This map's key represents the group name, and its value contains the list of entities belonging to that group.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A token that you specify in your next ListConnectorEntities
operation to get the next page of results in paginated response. The ListConnectorEntities
operation provides this token if the response is too big for the page size.
source§impl ListConnectorEntitiesOutput
impl ListConnectorEntitiesOutput
sourcepub fn builder() -> ListConnectorEntitiesOutputBuilder
pub fn builder() -> ListConnectorEntitiesOutputBuilder
Creates a new builder-style object to manufacture ListConnectorEntitiesOutput
.
Trait Implementations§
source§impl Clone for ListConnectorEntitiesOutput
impl Clone for ListConnectorEntitiesOutput
source§fn clone(&self) -> ListConnectorEntitiesOutput
fn clone(&self) -> ListConnectorEntitiesOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListConnectorEntitiesOutput
impl Debug for ListConnectorEntitiesOutput
source§impl PartialEq for ListConnectorEntitiesOutput
impl PartialEq for ListConnectorEntitiesOutput
source§fn eq(&self, other: &ListConnectorEntitiesOutput) -> bool
fn eq(&self, other: &ListConnectorEntitiesOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListConnectorEntitiesOutput
impl RequestId for ListConnectorEntitiesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.