[][src]Struct rusoto_apigateway::GetApiKeysRequest

pub struct GetApiKeysRequest {
    pub customer_id: Option<String>,
    pub include_values: Option<bool>,
    pub limit: Option<i64>,
    pub name_query: Option<String>,
    pub position: Option<String>,
}

A request to get information about the current ApiKeys resource.

Fields

customer_id: Option<String>

The identifier of a customer in AWS Marketplace or an external system, such as a developer portal.

include_values: Option<bool>

A boolean flag to specify whether (true) or not (false) the result contains key values.

limit: Option<i64>

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

name_query: Option<String>

The name of queried API keys.

position: Option<String>

The current pagination position in the paged result set.

Trait Implementations

impl Clone for GetApiKeysRequest[src]

impl Debug for GetApiKeysRequest[src]

impl Default for GetApiKeysRequest[src]

impl PartialEq<GetApiKeysRequest> for GetApiKeysRequest[src]

impl Serialize for GetApiKeysRequest[src]

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