IntegrationsAwsActions
List Lambda functions
List Lambda functions with page size capped at 50. Optionally include published versions. Requires lambda:ListFunctions.
lambda.functions.list · AWS · v1
Details
Scopes
lambda:ListFunctions
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
region | string | No | 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 | integer | No | minimum 1; maximum 50 |
cursor | string | No | minLength 1; maxLength 16384; pattern ^(?!.*://)[^\x00-\x1f\x7f]+$ |
include_versions | boolean | No | — |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
functions | array<object> | Yes | maxItems 50 |
functions[] | object | Yes | additionalProperties false |
functions[].name | string | Yes | minLength 1; maxLength 170 |
functions[].arn | string | Yes | minLength 20; maxLength 2048; pattern ^arn:aws:.+$ |
functions[].runtime | string | No | minLength 1; maxLength 64 |
functions[].handler | string | No | minLength 1; maxLength 256 |
functions[].code_size_bytes | integer | Yes | minimum 0 |
functions[].description | string | No | maxLength 256 |
functions[].timeout_seconds | integer | No | minimum 1; maximum 900 |
functions[].memory_size_mb | integer | No | minimum 128; maximum 10240 |
functions[].last_modified_at | string | No | minLength 1; maxLength 64 |
functions[].version | string | Yes | minLength 1; maxLength 128 |
functions[].package_type | string | No | minLength 1; maxLength 32 |
functions[].architectures | array<string> | No | maxItems 2 |
functions[].architectures[] | string | Yes | minLength 1; maxLength 32 |
functions[].state | string | No | minLength 1; maxLength 64 |
next_cursor | string | No | minLength 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"
]
}