Amazon Fargate · Schema

KeyValuePair

A key-value pair

ComputeContainersECSEKSMicroservicesServerless

Properties

Name Type Description
name string Key name
value string Key value
View JSON Schema on GitHub

JSON Schema

amazon-fargate-key-value-pair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-fargate/refs/heads/main/json-schema/amazon-fargate-key-value-pair-schema.json",
  "title": "KeyValuePair",
  "description": "A key-value pair",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Key name",
      "example": "LOG_LEVEL"
    },
    "value": {
      "type": "string",
      "description": "Key value",
      "example": "INFO"
    }
  }
}