Properties
| Name | Type | Description |
|---|---|---|
| FunctionUrl | string | The HTTP URL endpoint for the function |
| FunctionArn | string | The ARN of the function |
| AuthType | string | The type of authentication the function URL uses |
| CreationTime | string | When the function URL was created in ISO 8601 format |
| LastModifiedTime | string | When the function URL was last modified |
| InvokeMode | string | Use BUFFERED for synchronous invocation or RESPONSE_STREAM for response streaming |
JSON Schema
{
"$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"
}
}
}