pub struct ListFunctionsRequest {
pub function_version: Option<String>,
pub marker: Option<String>,
pub master_region: Option<String>,
pub max_items: Option<i64>,
}
Fields§
§function_version: Option<String>
Set to ALL
to include entries for all published versions of each function.
marker: Option<String>
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
master_region: Option<String>
For Lambda@Edge functions, the AWS Region of the master function. For example, us-east-1
filters the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set FunctionVersion
to ALL
.
max_items: Option<i64>
The maximum number of functions to return.
Trait Implementations§
Source§impl Clone for ListFunctionsRequest
impl Clone for ListFunctionsRequest
Source§fn clone(&self) -> ListFunctionsRequest
fn clone(&self) -> ListFunctionsRequest
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 ListFunctionsRequest
impl Debug for ListFunctionsRequest
Source§impl Default for ListFunctionsRequest
impl Default for ListFunctionsRequest
Source§fn default() -> ListFunctionsRequest
fn default() -> ListFunctionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListFunctionsRequest
impl PartialEq for ListFunctionsRequest
Source§impl Serialize for ListFunctionsRequest
impl Serialize for ListFunctionsRequest
impl StructuralPartialEq for ListFunctionsRequest
Auto Trait Implementations§
impl Freeze for ListFunctionsRequest
impl RefUnwindSafe for ListFunctionsRequest
impl Send for ListFunctionsRequest
impl Sync for ListFunctionsRequest
impl Unpin for ListFunctionsRequest
impl UnwindSafe for ListFunctionsRequest
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