ContainerConfiguration

Describes the container configurations within the tasks of your Amazon ECS service.

Cost OptimizationFinOpsMachine LearningResource Recommendations

Properties

Name Type Description
containerName object
memorySizeConfiguration object
cpu object
View JSON Schema on GitHub

JSON Schema

compute-optimizer-container-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-container-configuration-schema.json",
  "title": "ContainerConfiguration",
  "description": " Describes the container configurations within the tasks of your Amazon ECS service. ",
  "type": "object",
  "properties": {
    "containerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ContainerName"
        },
        {
          "description": " The name of the container. "
        }
      ]
    },
    "memorySizeConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MemorySizeConfiguration"
        },
        {
          "description": " The memory size configurations for the container. "
        }
      ]
    },
    "cpu": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NullableCpu"
        },
        {
          "description": " The number of CPU units reserved for the container. "
        }
      ]
    }
  }
}