Amazon Macie · JSON Structure

Amazon Macie Key Value Pair Structure

Provides information about the tags that are associated with an S3 bucket or object. Each tag consists of a required tag key and an associated tag value.

Type: object Properties: 2
Data SecuritySensitive DataPrivacyComplianceMachine LearningS3

KeyValuePair is a JSON Structure definition published by Amazon Macie, describing 2 properties. 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-macie/refs/heads/main/json-structure/amazon-macie-key-value-pair-structure.json",
  "name": "KeyValuePair",
  "description": "Provides information about the tags that are associated with an S3 bucket or object. Each tag consists of a required tag key and an associated tag value.",
  "type": "object",
  "properties": {
    "key": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "One part of a key-value pair that comprises a tag. A tag key is a general label that acts as a category for more specific tag values."
        }
      ]
    },
    "value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be an empty string."
        }
      ]
    }
  }
}