AWS HealthLake · Schema

UntagResourceRequest

AWS HealthLake UntagResourceRequest

HealthcareFHIRHealth DataClinical DataHIPAAInteroperabilityNLPMedicalHL7

Properties

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

JSON Schema

UntagResourceRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/UntagResourceRequest.json",
  "title": "UntagResourceRequest",
  "description": "AWS HealthLake UntagResourceRequest",
  "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}"
    },
    "TagKeys": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 128,
        "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
      }
    }
  },
  "required": [
    "ResourceARN",
    "TagKeys"
  ]
}