pub struct GetAliasRequest {
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 GetAliasRequest
impl Clone for GetAliasRequest
Source§fn clone(&self) -> GetAliasRequest
fn clone(&self) -> GetAliasRequest
Returns a duplicate 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 GetAliasRequest
impl Debug for GetAliasRequest
Source§impl Default for GetAliasRequest
impl Default for GetAliasRequest
Source§fn default() -> GetAliasRequest
fn default() -> GetAliasRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetAliasRequest
impl PartialEq for GetAliasRequest
Source§impl Serialize for GetAliasRequest
impl Serialize for GetAliasRequest
impl StructuralPartialEq for GetAliasRequest
Auto Trait Implementations§
impl Freeze for GetAliasRequest
impl RefUnwindSafe for GetAliasRequest
impl Send for GetAliasRequest
impl Sync for GetAliasRequest
impl Unpin for GetAliasRequest
impl UnwindSafe for GetAliasRequest
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