pub struct DeleteFunctionEventInvokeConfigRequest {
pub function_name: String,
pub qualifier: Option<String>,
}
Fields§
§function_name: String
The name of the Lambda function, version, or alias.
Name formats
-
Function name -
my-function
(name-only),my-function:v1
(with alias). -
Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. -
Partial ARN -
123456789012:function:my-function
.
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
qualifier: Option<String>
A version number or alias name.
Trait Implementations§
Source§impl Clone for DeleteFunctionEventInvokeConfigRequest
impl Clone for DeleteFunctionEventInvokeConfigRequest
Source§fn clone(&self) -> DeleteFunctionEventInvokeConfigRequest
fn clone(&self) -> DeleteFunctionEventInvokeConfigRequest
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 Default for DeleteFunctionEventInvokeConfigRequest
impl Default for DeleteFunctionEventInvokeConfigRequest
Source§fn default() -> DeleteFunctionEventInvokeConfigRequest
fn default() -> DeleteFunctionEventInvokeConfigRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFunctionEventInvokeConfigRequest
impl PartialEq for DeleteFunctionEventInvokeConfigRequest
Source§fn eq(&self, other: &DeleteFunctionEventInvokeConfigRequest) -> bool
fn eq(&self, other: &DeleteFunctionEventInvokeConfigRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteFunctionEventInvokeConfigRequest
Auto Trait Implementations§
impl Freeze for DeleteFunctionEventInvokeConfigRequest
impl RefUnwindSafe for DeleteFunctionEventInvokeConfigRequest
impl Send for DeleteFunctionEventInvokeConfigRequest
impl Sync for DeleteFunctionEventInvokeConfigRequest
impl Unpin for DeleteFunctionEventInvokeConfigRequest
impl UnwindSafe for DeleteFunctionEventInvokeConfigRequest
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