[][src]Struct rusoto_discovery::ListServerNeighborsRequest

pub struct ListServerNeighborsRequest {
    pub configuration_id: String,
    pub max_results: Option<i64>,
    pub neighbor_configuration_ids: Option<Vec<String>>,
    pub next_token: Option<String>,
    pub port_information_needed: Option<bool>,
}

Fields

configuration_id: String

Configuration ID of the server for which neighbors are being listed.

max_results: Option<i64>

Maximum number of results to return in a single page of output.

neighbor_configuration_ids: Option<Vec<String>>

List of configuration IDs to test for one-hop-away.

next_token: Option<String>

Token to retrieve the next set of results. For example, if you previously specified 100 IDs for ListServerNeighborsRequest$neighborConfigurationIds but set ListServerNeighborsRequest$maxResults to 10, you received a set of 10 results along with a token. Use that token in this query to get the next set of 10.

port_information_needed: Option<bool>

Flag to indicate if port and protocol information is needed as part of the response.

Trait Implementations

impl Clone for ListServerNeighborsRequest[src]

impl Debug for ListServerNeighborsRequest[src]

impl Default for ListServerNeighborsRequest[src]

impl PartialEq<ListServerNeighborsRequest> for ListServerNeighborsRequest[src]

impl Serialize for ListServerNeighborsRequest[src]

impl StructuralPartialEq for ListServerNeighborsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.