Amazon ECS · Schema

KeyValuePair

AmazonAwsContainersDockerEcsOrchestration

Properties

Name Type Description
name string The name of the key-value pair.
value string The value of the key-value pair.
View JSON Schema on GitHub

JSON Schema

amazon-ecs-key-value-pair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "KeyValuePair",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the key-value pair."
    },
    "value": {
      "type": "string",
      "description": "The value of the key-value pair."
    }
  }
}