[][src]Struct rusoto_dynamodb::ListGlobalTablesInput

pub struct ListGlobalTablesInput {
    pub exclusive_start_global_table_name: Option<String>,
    pub limit: Option<i64>,
    pub region_name: Option<String>,
}

Fields

exclusive_start_global_table_name: Option<String>

The first global table name that this operation will evaluate.

limit: Option<i64>

The maximum number of table names to return.

region_name: Option<String>

Lists the global tables in a specific Region.

Trait Implementations

impl Clone for ListGlobalTablesInput[src]

impl Debug for ListGlobalTablesInput[src]

impl Default for ListGlobalTablesInput[src]

impl PartialEq<ListGlobalTablesInput> for ListGlobalTablesInput[src]

impl Serialize for ListGlobalTablesInput[src]

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