get_optimization_recommendations
Analyze AWS Lambda functions to identify performance improvements. Specify function name and analysis type (cold-start, memory, duration, cost, or all) to receive actionable optimization recommendations for enhanced efficiency and reduced costs.
Instructions
Get performance optimization recommendations for Lambda functions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | No | Type of optimization analysis (default: all) | |
functionName | Yes | Name of the Lambda function |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "Type of optimization analysis (default: all)",
"enum": [
"cold-start",
"memory",
"duration",
"cost",
"all"
],
"type": "string"
},
"functionName": {
"description": "Name of the Lambda function",
"type": "string"
}
},
"required": [
"functionName"
],
"type": "object"
}