Summary

The summary of a recommendation.

Cost OptimizationFinOpsMachine LearningResource Recommendations

Properties

Name Type Description
name object
value object
reasonCodeSummaries object
View JSON Schema on GitHub

JSON Schema

compute-optimizer-summary-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-summary-schema.json",
  "title": "Summary",
  "description": "The summary of a recommendation.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Finding"
        },
        {
          "description": "The finding classification of the recommendation."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SummaryValue"
        },
        {
          "description": "The value of the recommendation summary."
        }
      ]
    },
    "reasonCodeSummaries": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReasonCodeSummaries"
        },
        {
          "description": "An array of objects that summarize a finding reason code."
        }
      ]
    }
  }
}