GetECSServiceRecommendationsResponse

GetECSServiceRecommendationsResponse schema

Cost OptimizationFinOpsMachine LearningResource Recommendations

Properties

Name Type Description
nextToken object
ecsServiceRecommendations object
errors object
View JSON Schema on GitHub

JSON Schema

compute-optimizer-get-ecs-service-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-ecs-service-recommendations-response-schema.json",
  "title": "GetECSServiceRecommendationsResponse",
  "description": "GetECSServiceRecommendationsResponse schema",
  "type": "object",
  "properties": {
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": " The token to advance to the next page of Amazon ECS service recommendations. "
        }
      ]
    },
    "ecsServiceRecommendations": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ECSServiceRecommendations"
        },
        {
          "description": " An array of objects that describe the Amazon ECS service recommendations. "
        }
      ]
    },
    "errors": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GetRecommendationErrors"
        },
        {
          "description": " An array of objects that describe errors of the request. "
        }
      ]
    }
  }
}