Amazon IAM · JSON Structure

Amazon Iam Tag Structure

Tag schema from AWS IAM API

Type: object Properties: 2 Required: 2
Access ManagementAuthenticationAuthorizationIdentitySecurity

Tag is a JSON Structure definition published by Amazon IAM, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Key Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iam/refs/heads/main/json-structure/amazon-iam-tag-structure.json",
  "name": "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"
  ]
}