AWS HealthLake · Schema

TagResourceRequest

AWS HealthLake TagResourceRequest

HealthcareFHIRHealth DataClinical DataHIPAAInteroperabilityNLPMedicalHL7

Properties

Name Type Description
ResourceARN string
Tags array
View JSON Schema on GitHub

JSON Schema

TagResourceRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/TagResourceRequest.json",
  "title": "TagResourceRequest",
  "description": "AWS HealthLake TagResourceRequest",
  "type": "object",
  "properties": {
    "ResourceARN": {
      "type": "string",
      "minLength": 1,
      "maxLength": 1011,
      "pattern": "^arn:aws((-us-gov)|(-iso)|(-iso-b)|(-cn))?:healthlake:[a-z0-9-]+:\\d{12}:datastore\\/fhir\\/.{32}"
    },
    "Tags": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Key": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128,
            "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
          },
          "Value": {
            "type": "string",
            "minLength": 0,
            "maxLength": 256,
            "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
          }
        },
        "required": [
          "Key",
          "Value"
        ]
      }
    }
  },
  "required": [
    "ResourceARN",
    "Tags"
  ]
}