Struct rusoto_lambda::GetFunctionResponse [−][src]
pub struct GetFunctionResponse {
pub code: Option<FunctionCodeLocation>,
pub concurrency: Option<Concurrency>,
pub configuration: Option<FunctionConfiguration>,
pub tags: Option<HashMap<String, String>>,
}This response contains the object for the Lambda function location (see FunctionCodeLocation.
Fields
code: Option<FunctionCodeLocation>
concurrency: Option<Concurrency>
The concurrent execution limit set for this function. For more information, see concurrent-executions.
configuration: Option<FunctionConfiguration>
Returns the list of tags associated with the function. For more information, see Tagging Lambda Functions in the AWS Lambda Developer Guide.
Trait Implementations
impl Default for GetFunctionResponse[src]
impl Default for GetFunctionResponsefn default() -> GetFunctionResponse[src]
fn default() -> GetFunctionResponseReturns the "default value" for a type. Read more
impl Debug for GetFunctionResponse[src]
impl Debug for GetFunctionResponsefn 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 GetFunctionResponse[src]
impl Clone for GetFunctionResponsefn clone(&self) -> GetFunctionResponse[src]
fn clone(&self) -> GetFunctionResponseReturns 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)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for GetFunctionResponse[src]
impl PartialEq for GetFunctionResponsefn eq(&self, other: &GetFunctionResponse) -> bool[src]
fn eq(&self, other: &GetFunctionResponse) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &GetFunctionResponse) -> bool[src]
fn ne(&self, other: &GetFunctionResponse) -> boolThis method tests for !=.
Auto Trait Implementations
impl Send for GetFunctionResponse
impl Send for GetFunctionResponseimpl Sync for GetFunctionResponse
impl Sync for GetFunctionResponse