GetLambdaFunctionRecommendationsResponse

GetLambdaFunctionRecommendationsResponse schema

Cost OptimizationFinOpsMachine LearningResource Recommendations

Properties

Name Type Description
nextToken object
lambdaFunctionRecommendations object
View JSON Schema on GitHub

JSON Schema

compute-optimizer-get-lambda-function-recommendations-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-compute-optimizer/refs/heads/main/json-schema/compute-optimizer-get-lambda-function-recommendations-response-schema.json",
  "title": "GetLambdaFunctionRecommendationsResponse",
  "description": "GetLambdaFunctionRecommendationsResponse schema",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "<p>The token to use to advance to the next page of function recommendations.</p> <p>This value is null when there are no more pages of function recommendations to return.</p>"
        }
      ]
    },
    "lambdaFunctionRecommendations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LambdaFunctionRecommendations"
        },
        {
          "description": "An array of objects that describe function recommendations."
        }
      ]
    }
  }
}