GetECSServiceRecommendationsResponse schema
{ "$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. " } ] } } }