A list of Lambda functions.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ListFunctionsResponse", "title": "ListFunctionsResponse", "type": "object", "properties": { "NextMarker": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The pagination token that's included if more results are available." } ] }, "Functions": { "allOf": [ { "$ref": "#/components/schemas/FunctionList" }, { "description": "A list of Lambda functions." } ] } }, "description": "A list of Lambda functions." }