pub struct ListVersionsByFunctionRequest {
pub function_name: String,
pub marker: Option<String>,
pub max_items: Option<i64>,
}
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.
marker: Option<String>
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
max_items: Option<i64>
The maximum number of versions to return.
Trait Implementations§
Source§impl Clone for ListVersionsByFunctionRequest
impl Clone for ListVersionsByFunctionRequest
Source§fn clone(&self) -> ListVersionsByFunctionRequest
fn clone(&self) -> ListVersionsByFunctionRequest
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 ListVersionsByFunctionRequest
impl Default for ListVersionsByFunctionRequest
Source§fn default() -> ListVersionsByFunctionRequest
fn default() -> ListVersionsByFunctionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListVersionsByFunctionRequest
impl PartialEq for ListVersionsByFunctionRequest
Source§fn eq(&self, other: &ListVersionsByFunctionRequest) -> bool
fn eq(&self, other: &ListVersionsByFunctionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListVersionsByFunctionRequest
Auto Trait Implementations§
impl Freeze for ListVersionsByFunctionRequest
impl RefUnwindSafe for ListVersionsByFunctionRequest
impl Send for ListVersionsByFunctionRequest
impl Sync for ListVersionsByFunctionRequest
impl Unpin for ListVersionsByFunctionRequest
impl UnwindSafe for ListVersionsByFunctionRequest
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