Struct rusoto_discovery::ListServerNeighborsResponse[][src]

pub struct ListServerNeighborsResponse {
    pub known_dependency_count: Option<i64>,
    pub neighbors: Vec<NeighborConnectionDetail>,
    pub next_token: Option<String>,
}

Fields

Count of distinct servers that are one hop away from the given server.

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.

Trait Implementations

impl Default for ListServerNeighborsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for ListServerNeighborsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for ListServerNeighborsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListServerNeighborsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations