{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "FunctionUrlConfig", "type": "object", "description": "Configuration for a Lambda function URL", "properties": { "FunctionUrl": { "type": "string", "description": "The HTTP URL endpoint for the function" }, "FunctionArn": { "type": "string", "description": "The ARN of the function" }, "AuthType": { "type": "string", "description": "The type of authentication the function URL uses" }, "CreationTime": { "type": "string", "description": "When the function URL was created in ISO 8601 format" }, "LastModifiedTime": { "type": "string", "description": "When the function URL was last modified" }, "InvokeMode": { "type": "string", "description": "Use BUFFERED for synchronous invocation or RESPONSE_STREAM for response streaming" } } }