#[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.impl StructuralPartialEq for ListConnectorEntitiesOutput
Auto Trait Implementations§
impl Freeze for ListConnectorEntitiesOutput
impl RefUnwindSafe for ListConnectorEntitiesOutput
impl Send for ListConnectorEntitiesOutput
impl Sync for ListConnectorEntitiesOutput
impl Unpin for ListConnectorEntitiesOutput
impl UnwindSafe for ListConnectorEntitiesOutput
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> 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