Struct rusoto_lambda::ListVersionsByFunctionRequest [−][src]
pub struct ListVersionsByFunctionRequest {
pub function_name: String,
pub marker: Option<String>,
pub max_items: Option<i64>,
}Fields
function_name: String
Function name whose versions to list. You can specify a function name (for example, Thumbnail) or you can specify Amazon Resource Name (ARN) of the function (for example, arn:aws:lambda:us-west-2:account-id:function:ThumbNail). AWS Lambda also allows you to specify a partial ARN (for example, account-id:Thumbnail). Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.
marker: Option<String>
Optional string. An opaque pagination token returned from a previous ListVersionsByFunction operation. If present, indicates where to continue the listing.
max_items: Option<i64>
Optional integer. Specifies the maximum number of AWS Lambda function versions to return in response. This parameter value must be greater than 0.
Trait Implementations
impl Default for ListVersionsByFunctionRequest[src]
impl Default for ListVersionsByFunctionRequestfn default() -> ListVersionsByFunctionRequest[src]
fn default() -> ListVersionsByFunctionRequestReturns the "default value" for a type. Read more
impl Debug for ListVersionsByFunctionRequest[src]
impl Debug for ListVersionsByFunctionRequestfn 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 ListVersionsByFunctionRequest[src]
impl Clone for ListVersionsByFunctionRequestfn clone(&self) -> ListVersionsByFunctionRequest[src]
fn clone(&self) -> ListVersionsByFunctionRequestReturns 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 ListVersionsByFunctionRequest[src]
impl PartialEq for ListVersionsByFunctionRequestfn eq(&self, other: &ListVersionsByFunctionRequest) -> bool[src]
fn eq(&self, other: &ListVersionsByFunctionRequest) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ListVersionsByFunctionRequest) -> bool[src]
fn ne(&self, other: &ListVersionsByFunctionRequest) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for ListVersionsByFunctionRequest
impl Send for ListVersionsByFunctionRequestimpl Sync for ListVersionsByFunctionRequest
impl Sync for ListVersionsByFunctionRequest