You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::LambdaPreview::Types::UpdateFunctionConfigurationRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateFunctionConfigurationRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  function_name: "FunctionName", # required
  role: "RoleArn",
  handler: "Handler",
  description: "Description",
  timeout: 1,
  memory_size: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A short user-defined function description. Lambda does not use this value. Assign a meaningful description as you see fit.

Returns:

  • (String)

    A short user-defined function description.

#function_nameString

The name of the Lambda function.

Returns:

  • (String)

    The name of the Lambda function.

#handlerString

The function that Lambda calls to begin executing your function. For Node.js, it is the module-name.export value in your function.

Returns:

  • (String)

    The function that Lambda calls to begin executing your function.

#memory_sizeInteger

The amount of memory, in MB, your Lambda function is given. 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.

Returns:

  • (Integer)

    The amount of memory, in MB, your Lambda function is given.

#roleString

The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the IAM role that Lambda will assume when it executes your function.

#timeoutInteger

The function execution time at which 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.

Returns:

  • (Integer)

    The function execution time at which Lambda should terminate the function.