[][src]Struct rusoto_networkmanager::GetLinksRequest

pub struct GetLinksRequest {
    pub global_network_id: String,
    pub link_ids: Option<Vec<String>>,
    pub max_results: Option<i64>,
    pub next_token: Option<String>,
    pub provider: Option<String>,
    pub site_id: Option<String>,
    pub type_: Option<String>,
}

Fields

global_network_id: String

The ID of the global network.

link_ids: Option<Vec<String>>

One or more link IDs. The maximum is 10.

max_results: Option<i64>

The maximum number of results to return.

next_token: Option<String>

The token for the next page of results.

provider: Option<String>

The link provider.

site_id: Option<String>

The ID of the site.

type_: Option<String>

The link type.

Trait Implementations

impl Clone for GetLinksRequest[src]

impl Debug for GetLinksRequest[src]

impl Default for GetLinksRequest[src]

impl PartialEq<GetLinksRequest> for GetLinksRequest[src]

impl Serialize for GetLinksRequest[src]

impl StructuralPartialEq for GetLinksRequest[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.