[−][src]Struct rusoto_lambda::UpdateFunctionConfigurationRequest
Fields
dead_letter_config: Option<DeadLetterConfig>
The parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic. For more information, see dlq.
description: Option<String>
A short user-defined function description. AWS Lambda does not use this value. Assign a meaningful description as you see fit.
environment: Option<Environment>
The parent object that contains your environment's configuration settings.
function_name: String
The name of the Lambda function.
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 character in length.
handler: Option<String>
The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export value in your function.
kms_key_arn: Option<String>
The Amazon Resource Name (ARN) of the KMS key used to encrypt your function's environment variables. If you elect to use the AWS Lambda default service key, pass in an empty string ("") for this parameter.
memory_size: Option<i64>
The amount of memory, in MB, your Lambda function is given. AWS Lambda uses this memory size to infer the amount of CPU allocated to your function. Your function use-case determines your CPU and memory requirements. For example, a database operation might need less memory compared to an image processing function. The default value is 128 MB. The value must be a multiple of 64 MB.
revision_id: Option<String>
An optional value you can use to ensure you are updating the latest update of the function version or alias. If the RevisionID you pass doesn't match the latest RevisionId of the function or alias, it will fail with an error message, advising you to retrieve the latest function version or alias RevisionID using either or .
role: Option<String>
The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.
runtime: Option<String>
The runtime environment for the Lambda function.
To use the Python runtime v3.6, set the value to "python3.6". To use the Python runtime v2.7, set the value to "python2.7". To use the Node.js runtime v6.10, set the value to "nodejs6.10". To use the Node.js runtime v4.3, set the value to "nodejs4.3". To use the .NET Core runtime v1.0, set the value to "dotnetcore1.0". To use the .NET Core runtime v2.0, set the value to "dotnetcore2.0".
Node v0.10.42 is currently marked as deprecated. You must migrate existing functions to the newer Node.js runtime versions available on AWS Lambda (nodejs4.3 or nodejs6.10) as soon as possible. Failure to do so will result in an invalid parameter error being returned. Note that you will have to follow this procedure for each region that contains functions written in the Node v0.10.42 runtime.
timeout: Option<i64>
The function execution time at which AWS Lambda should terminate the function. Because the execution time has cost implications, we recommend you set this value based on your expected execution time. The default is 3 seconds.
tracing_config: Option<TracingConfig>
The parent object that contains your function's tracing settings.
vpc_config: Option<VpcConfig>
Trait Implementations
impl Clone for UpdateFunctionConfigurationRequest[src]
impl Clone for UpdateFunctionConfigurationRequestfn clone(&self) -> UpdateFunctionConfigurationRequest[src]
fn clone(&self) -> UpdateFunctionConfigurationRequestReturns 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 Default for UpdateFunctionConfigurationRequest[src]
impl Default for UpdateFunctionConfigurationRequestfn default() -> UpdateFunctionConfigurationRequest[src]
fn default() -> UpdateFunctionConfigurationRequestReturns the "default value" for a type. Read more
impl PartialEq<UpdateFunctionConfigurationRequest> for UpdateFunctionConfigurationRequest[src]
impl PartialEq<UpdateFunctionConfigurationRequest> for UpdateFunctionConfigurationRequestfn eq(&self, other: &UpdateFunctionConfigurationRequest) -> bool[src]
fn eq(&self, other: &UpdateFunctionConfigurationRequest) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &UpdateFunctionConfigurationRequest) -> bool[src]
fn ne(&self, other: &UpdateFunctionConfigurationRequest) -> boolThis method tests for !=.
impl Debug for UpdateFunctionConfigurationRequest[src]
impl Debug for UpdateFunctionConfigurationRequestfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Serialize for UpdateFunctionConfigurationRequest[src]
impl Serialize for UpdateFunctionConfigurationRequestAuto Trait Implementations
impl Send for UpdateFunctionConfigurationRequest
impl Send for UpdateFunctionConfigurationRequestimpl Sync for UpdateFunctionConfigurationRequest
impl Sync for UpdateFunctionConfigurationRequestBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T> Erased for T
impl<T> Erased for Timpl<T> Same for T
impl<T> Same for Ttype Output = T
Should always be Self