Skip to main content
FuseFuse
IntegrationsAwsActions

List Lambda functions

List Lambda functions with page size capped at 50. Optionally include published versions. Requires lambda:ListFunctions.

Agent markdown

lambda.functions.list · AWS · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • lambda:ListFunctions

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
regionstringNoenum us-east-1 | us-east-2 | us-west-1 | us-west-2 | af-south-1 | ap-east-1 | ap-east-2 | ap-south-1 | ap-south-2 | ap-southeast-1 | ap-southeast-2 | ap-southeast-3 | ap-southeast-4 | ap-southeast-5 | ap-southeast-6 | ap-southeast-7 | ap-northeast-1 | ap-northeast-2 | ap-northeast-3 | ca-central-1 | ca-west-1 | eu-central-1 | eu-central-2 | eu-west-1 | eu-west-2 | eu-west-3 | eu-north-1 | eu-south-1 | eu-south-2 | il-central-1 | me-central-1 | me-south-1 | mx-central-1 | sa-east-1
page_sizeintegerNominimum 1; maximum 50
cursorstringNominLength 1; maxLength 16384; pattern ^(?!.*://)[^\x00-\x1f\x7f]+$
include_versionsbooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
functionsarray<object>YesmaxItems 50
functions[]objectYesadditionalProperties false
functions[].namestringYesminLength 1; maxLength 170
functions[].arnstringYesminLength 20; maxLength 2048; pattern ^arn:aws:.+$
functions[].runtimestringNominLength 1; maxLength 64
functions[].handlerstringNominLength 1; maxLength 256
functions[].code_size_bytesintegerYesminimum 0
functions[].descriptionstringNomaxLength 256
functions[].timeout_secondsintegerNominimum 1; maximum 900
functions[].memory_size_mbintegerNominimum 128; maximum 10240
functions[].last_modified_atstringNominLength 1; maxLength 64
functions[].versionstringYesminLength 1; maxLength 128
functions[].package_typestringNominLength 1; maxLength 32
functions[].architecturesarray<string>NomaxItems 2
functions[].architectures[]stringYesminLength 1; maxLength 32
functions[].statestringNominLength 1; maxLength 64
next_cursorstringNominLength 1; maxLength 16384; pattern ^(?!.*://)[^\x00-\x1f\x7f]+$

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "region": {
      "type": "string",
      "enum": [
        "us-east-1",
        "us-east-2",
        "us-west-1",
        "us-west-2",
        "af-south-1",
        "ap-east-1",
        "ap-east-2",
        "ap-south-1",
        "ap-south-2",
        "ap-southeast-1",
        "ap-southeast-2",
        "ap-southeast-3",
        "ap-southeast-4",
        "ap-southeast-5",
        "ap-southeast-6",
        "ap-southeast-7",
        "ap-northeast-1",
        "ap-northeast-2",
        "ap-northeast-3",
        "ca-central-1",
        "ca-west-1",
        "eu-central-1",
        "eu-central-2",
        "eu-west-1",
        "eu-west-2",
        "eu-west-3",
        "eu-north-1",
        "eu-south-1",
        "eu-south-2",
        "il-central-1",
        "me-central-1",
        "me-south-1",
        "mx-central-1",
        "sa-east-1"
      ]
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 16384,
      "pattern": "^(?!.*://)[^\\x00-\\x1f\\x7f]+$"
    },
    "include_versions": {
      "type": "boolean"
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "functions": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 170
          },
          "arn": {
            "type": "string",
            "minLength": 20,
            "maxLength": 2048,
            "pattern": "^arn:aws:.+$"
          },
          "runtime": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "handler": {
            "type": "string",
            "minLength": 1,
            "maxLength": 256
          },
          "code_size_bytes": {
            "type": "integer",
            "minimum": 0
          },
          "description": {
            "type": "string",
            "maxLength": 256
          },
          "timeout_seconds": {
            "type": "integer",
            "minimum": 1,
            "maximum": 900
          },
          "memory_size_mb": {
            "type": "integer",
            "minimum": 128,
            "maximum": 10240
          },
          "last_modified_at": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "version": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "package_type": {
            "type": "string",
            "minLength": 1,
            "maxLength": 32
          },
          "architectures": {
            "type": "array",
            "items": {
              "type": "string",
              "minLength": 1,
              "maxLength": 32
            },
            "maxItems": 2
          },
          "state": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          }
        },
        "required": [
          "name",
          "arn",
          "code_size_bytes",
          "version"
        ]
      },
      "maxItems": 50
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 16384,
      "pattern": "^(?!.*://)[^\\x00-\\x1f\\x7f]+$"
    }
  },
  "required": [
    "functions"
  ]
}