#[non_exhaustive]pub struct ListServerNeighborsOutput {
pub neighbors: Option<Vec<NeighborConnectionDetail>>,
pub next_token: Option<String>,
pub known_dependency_count: i64,
}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.neighbors: Option<Vec<NeighborConnectionDetail>>List of distinct servers that are one hop away from the given server.
next_token: Option<String>Token to retrieve the next set of results. For example, if you specified 100 IDs for ListServerNeighborsRequest$neighborConfigurationIds but set ListServerNeighborsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.
known_dependency_count: i64Count of distinct servers that are one hop away from the given server.
Implementations
List of distinct servers that are one hop away from the given server.
Token to retrieve the next set of results. For example, if you specified 100 IDs for ListServerNeighborsRequest$neighborConfigurationIds but set ListServerNeighborsRequest$maxResults to 10, you received a set of 10 results along with this token. Use this token in the next query to retrieve the next set of 10.
Count of distinct servers that are one hop away from the given server.
Creates a new builder-style object to manufacture ListServerNeighborsOutput
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 ListServerNeighborsOutput
impl Send for ListServerNeighborsOutput
impl Sync for ListServerNeighborsOutput
impl Unpin for ListServerNeighborsOutput
impl UnwindSafe for ListServerNeighborsOutput
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