Amazon Fargate · Schema

LogConfiguration

Log configuration for a container

ComputeContainersECSEKSMicroservicesServerless

Properties

Name Type Description
logDriver string Log driver
options object Log driver options
View JSON Schema on GitHub

JSON Schema

amazon-fargate-log-configuration-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-log-configuration-schema.json",
  "title": "LogConfiguration",
  "description": "Log configuration for a container",
  "type": "object",
  "properties": {
    "logDriver": {
      "type": "string",
      "description": "Log driver",
      "example": "awslogs",
      "enum": [
        "json-file",
        "syslog",
        "journald",
        "gelf",
        "fluentd",
        "awslogs",
        "splunk",
        "awsfirelens"
      ]
    },
    "options": {
      "type": "object",
      "description": "Log driver options",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}