Struct rusoto_lambda::ListFunctionsRequest [] [src]

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

Fields

Optional string. If not specified, only the unqualified functions ARNs (Amazon Resource Names) will be returned.

Valid value:

ALL: Will return all versions, including $LATEST which will have fully qualified ARNs (Amazon Resource Names).

Optional string. An opaque pagination token returned from a previous ListFunctions operation. If present, indicates where to continue the listing.

Optional string. If not specified, will return only regular function versions (i.e., non-replicated versions).

Valid values are:

The region from which the functions are replicated. For example, if you specify us-east-1, only functions replicated from that region will be returned.

ALL: Will return all functions from any region. If specified, you also must specify a valid FunctionVersion parameter.

Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.

Trait Implementations

impl Default for ListFunctionsRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for ListFunctionsRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListFunctionsRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations