MemorySizeConfiguration

The memory size configurations of a container.

Cost OptimizationFinOpsMachine LearningResource Recommendations

Properties

Name Type Description
memory object
memoryReservation object
View JSON Schema on GitHub

JSON Schema

compute-optimizer-memory-size-configuration-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-memory-size-configuration-schema.json",
  "title": "MemorySizeConfiguration",
  "description": " The memory size configurations of a container. ",
  "type": "object",
  "properties": {
    "memory": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableMemory"
        },
        {
          "description": " The amount of memory in the container. "
        }
      ]
    },
    "memoryReservation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableMemoryReservation"
        },
        {
          "description": " The limit of memory reserve for the container. "
        }
      ]
    }
  }
}