Amazon HealthLake · JSON Structure

Healthlake Tag Resource Request Structure

Type: object Properties: 2 Required: 2
FHIRHealth DataHealthcareHIPAACloud Computing

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

Properties

ResourceARN Tags

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-healthlake/refs/heads/main/json-schema/healthlake-tag-resource-request-schema.json",
  "name": "TagResourceRequest",
  "type": "object",
  "required": [
    "ResourceARN",
    "Tags"
  ],
  "properties": {
    "ResourceARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AmazonResourceName"
        },
        {
          "description": " The Amazon Resource Name(ARN)that gives AWS HealthLake access to the data store which tags are being added to. "
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagList"
        },
        {
          "description": " The user specified key and value pair tags being added to a data store. "
        }
      ]
    }
  }
}