Amazon IAM · Schema

Tag

Tag schema from AWS IAM API

Access ManagementAuthenticationAuthorizationIdentitySecurity

Properties

Name Type Description
Key string The key name for the tag.
Value string The value for the tag.
View JSON Schema on GitHub

JSON Schema

amazon-iam-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam/refs/heads/main/json-schema/amazon-iam-tag-schema.json",
  "title": "Tag",
  "description": "Tag schema from AWS IAM API",
  "type": "object",
  "properties": {
    "Key": {
      "type": "string",
      "description": "The key name for the tag.",
      "minLength": 1,
      "maxLength": 128
    },
    "Value": {
      "type": "string",
      "description": "The value for the tag.",
      "maxLength": 256
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}