Amazon Fargate · Schema

Tag

A tag applied to an ECS resource

ComputeContainersECSEKSMicroservicesServerless

Properties

Name Type Description
key string The tag key
value string The tag value
View JSON Schema on GitHub

JSON Schema

amazon-fargate-tag-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-tag-schema.json",
  "title": "Tag",
  "description": "A tag applied to an ECS resource",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The tag key",
      "example": "Environment"
    },
    "value": {
      "type": "string",
      "description": "The tag value",
      "example": "production"
    }
  }
}