Struct rusoto_lambda::ListAliasesRequest [] [src]

pub struct ListAliasesRequest {
    pub function_name: String,
    pub function_version: Option<String>,
    pub marker: Option<String>,
    pub max_items: Option<i64>,
}

Fields

Lambda function name for which the alias is created. Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.

If you specify this optional parameter, the API returns only the aliases that are pointing to the specific Lambda function version, otherwise the API returns all of the aliases created for the Lambda function.

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

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

Trait Implementations

impl Default for ListAliasesRequest
[src]

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

impl Debug for ListAliasesRequest
[src]

Formats the value using the given formatter.

impl Clone for ListAliasesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more