[][src]Struct rusoto_lambda::ListFunctionsRequest

pub struct ListFunctionsRequest {
    pub function_version: Option<String>,
    pub marker: Option<String>,
    pub master_region: Option<String>,
    pub max_items: Option<i64>,
}

Fields

function_version: Option<String>

Set to ALL to include entries for all published versions of each function.

marker: Option<String>

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

master_region: Option<String>

For Lambda@Edge functions, the AWS Region of the master function. For example, us-east-1 filters the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set FunctionVersion to ALL.

max_items: Option<i64>

The maximum number of functions to return.

Trait Implementations

impl Clone for ListFunctionsRequest[src]

impl Debug for ListFunctionsRequest[src]

impl Default for ListFunctionsRequest[src]

impl PartialEq<ListFunctionsRequest> for ListFunctionsRequest[src]

impl Serialize for ListFunctionsRequest[src]

impl StructuralPartialEq for ListFunctionsRequest[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> Sealed<T> for T where
    T: ?Sized

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.