Struct rusoto_lambda::ListFunctionsRequest [−][src]
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>
Optional string. If not specified, only the unqualified functions ARNs (Amazon Resource Names) will be returned.
Valid value:
ALL: Will return all versions, including $LATEST which will have fully qualified ARNs (Amazon Resource Names).
marker: Option<String>
Optional string. An opaque pagination token returned from a previous ListFunctions operation. If present, indicates where to continue the listing.
master_region: Option<String>
Optional string. If not specified, will return only regular function versions (i.e., non-replicated versions).
Valid values are:
The region from which the functions are replicated. For example, if you specify us-east-1, only functions replicated from that region will be returned.
ALL: Will return all functions from any region. If specified, you also must specify a valid FunctionVersion parameter.
max_items: Option<i64>
Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
Trait Implementations
impl Default for ListFunctionsRequest[src]
impl Default for ListFunctionsRequestfn default() -> ListFunctionsRequest[src]
fn default() -> ListFunctionsRequestReturns the "default value" for a type. Read more
impl Debug for ListFunctionsRequest[src]
impl Debug for ListFunctionsRequestfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for ListFunctionsRequest[src]
impl Clone for ListFunctionsRequestfn clone(&self) -> ListFunctionsRequest[src]
fn clone(&self) -> ListFunctionsRequestReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialEq for ListFunctionsRequest[src]
impl PartialEq for ListFunctionsRequestfn eq(&self, other: &ListFunctionsRequest) -> bool[src]
fn eq(&self, other: &ListFunctionsRequest) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ListFunctionsRequest) -> bool[src]
fn ne(&self, other: &ListFunctionsRequest) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ListFunctionsRequest
impl Send for ListFunctionsRequestimpl Sync for ListFunctionsRequest
impl Sync for ListFunctionsRequest