actionLambda

delete_function_concurrency

Removes concurrency limit applied to the specified Lambda

Activity as code

Below are the details and signature of the activity Python module.

Typeaction
Modulechaosaws.awslambda.actions
Namedelete_function_concurrency
Returnmapping

Usage

JSON

{
  "name": "delete-function-concurrency",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaosaws.awslambda.actions",
    "func": "delete_function_concurrency",
    "arguments": {
      "function_name": ""
    }
  }
}

YAML

name: delete-function-concurrency
provider:
  arguments:
    function_name: ""
  func: delete_function_concurrency
  module: chaosaws.awslambda.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
function_namestringYesFunction NameName of the function

Signature

def delete_function_concurrency(
        function_name: str,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> Dict[str, Any]:
    pass