[][src]Struct rusoto_managedblockchain::ListMembersInput

pub struct ListMembersInput {
    pub is_owned: Option<bool>,
    pub max_results: Option<i64>,
    pub name: Option<String>,
    pub network_id: String,
    pub next_token: Option<String>,
    pub status: Option<String>,
}

Fields

is_owned: Option<bool>

An optional Boolean value. If provided, the request is limited either to members that the current AWS account owns (true) or that other AWS accounts own (false). If omitted, all members are listed.

max_results: Option<i64>

The maximum number of members to return in the request.

name: Option<String>

The optional name of the member to list.

network_id: String

The unique identifier of the network for which to list members.

next_token: Option<String>

The pagination token that indicates the next set of results to retrieve.

status: Option<String>

An optional status specifier. If provided, only members currently in this status are listed.

Trait Implementations

impl Clone for ListMembersInput[src]

impl Debug for ListMembersInput[src]

impl Default for ListMembersInput[src]

impl PartialEq<ListMembersInput> for ListMembersInput[src]

impl Serialize for ListMembersInput[src]

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