Tag

Tag schema from Amazon Secrets Manager API

ConfigurationCredentialsRotationSecretsSecurity

Properties

Name Type Description
Key string The key identifier or name of the tag.
Value string The string value associated with the key of the tag.
View JSON Schema on GitHub

JSON Schema

amazon-secrets-manager-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-secrets-manager/refs/heads/main/json-schema/amazon-secrets-manager-tag-schema.json",
  "title": "Tag",
  "description": "Tag schema from Amazon Secrets Manager API",
  "type": "object",
  "properties": {
    "Key": {
      "type": "string",
      "description": "The key identifier or name of the tag."
    },
    "Value": {
      "type": "string",
      "description": "The string value associated with the key of the tag."
    }
  }
}