pub struct DeleteAliasRequest {
pub function_name: String,
pub name: String,
}
Fields§
§function_name: String
The name of the Lambda function.
Name formats
-
Function name -
MyFunction
. -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:MyFunction
. -
Partial ARN -
123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
name: String
The name of the alias.
Trait Implementations§
Source§impl Clone for DeleteAliasRequest
impl Clone for DeleteAliasRequest
Source§fn clone(&self) -> DeleteAliasRequest
fn clone(&self) -> DeleteAliasRequest
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DeleteAliasRequest
impl Debug for DeleteAliasRequest
Source§impl Default for DeleteAliasRequest
impl Default for DeleteAliasRequest
Source§fn default() -> DeleteAliasRequest
fn default() -> DeleteAliasRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteAliasRequest
impl PartialEq for DeleteAliasRequest
Source§impl Serialize for DeleteAliasRequest
impl Serialize for DeleteAliasRequest
impl StructuralPartialEq for DeleteAliasRequest
Auto Trait Implementations§
impl Freeze for DeleteAliasRequest
impl RefUnwindSafe for DeleteAliasRequest
impl Send for DeleteAliasRequest
impl Sync for DeleteAliasRequest
impl Unpin for DeleteAliasRequest
impl UnwindSafe for DeleteAliasRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more