Amazon Fargate · Schema

ClusterSetting

A cluster setting

ComputeContainersECSEKSMicroservicesServerless

Properties

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

JSON Schema

amazon-fargate-cluster-setting-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-cluster-setting-schema.json",
  "title": "ClusterSetting",
  "description": "A cluster setting",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Setting name",
      "example": "containerInsights"
    },
    "value": {
      "type": "string",
      "description": "Setting value",
      "example": "enabled"
    }
  }
}