Struct rusoto_lambda::DeleteAliasRequest[][src]

pub struct DeleteAliasRequest {
    pub function_name: String,
    pub name: String,
}

Fields

The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing. 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.

Name of the alias to delete.

Trait Implementations

impl Default for DeleteAliasRequest
[src]

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

impl Debug for DeleteAliasRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteAliasRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DeleteAliasRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations