Amazon CodeBuild · Schema

Tag

A tag, consisting of a key and a value.

This tag is available for use by Amazon Web Services services that support tags in CodeBuild.

AmazonCI/CDBuildContinuous IntegrationDevOpsTesting

Properties

Name Type Description
key object
value object
View JSON Schema on GitHub

JSON Schema

amazon-codebuild-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codebuild/refs/heads/main/json-schema/amazon-codebuild-tag-schema.json",
  "title": "Tag",
  "description": "<p>A tag, consisting of a key and a value.</p> <p>This tag is available for use by Amazon Web Services services that support tags in CodeBuild.</p>",
  "type": "object",
  "properties": {
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyInput"
        },
        {
          "description": "The tag's key."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ValueInput"
        },
        {
          "description": "The tag's value."
        }
      ]
    }
  }
}