Amazon Compute Optimizer · JSON Structure

Compute Optimizer Memory Size Configuration Structure

The memory size configurations of a container.

Type: object Properties: 2
Cost OptimizationFinOpsMachine LearningResource Recommendations

MemorySizeConfiguration is a JSON Structure definition published by Amazon Compute Optimizer, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

memory memoryReservation

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-compute-optimizer/refs/heads/main/json-structure/compute-optimizer-memory-size-configuration-structure.json",
  "name": "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. "
        }
      ]
    }
  }
}