AWS HealthLake · Schema

ListFHIRDatastoresRequest

AWS HealthLake ListFHIRDatastoresRequest

HealthcareFHIRHealth DataClinical DataHIPAAInteroperabilityNLPMedicalHL7

Properties

Name Type Description
Filter object
NextToken string
MaxResults integer
View JSON Schema on GitHub

JSON Schema

ListFHIRDatastoresRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-healthlake/main/json-schema/ListFHIRDatastoresRequest.json",
  "title": "ListFHIRDatastoresRequest",
  "description": "AWS HealthLake ListFHIRDatastoresRequest",
  "type": "object",
  "properties": {
    "Filter": {
      "type": "object",
      "properties": {
        "DatastoreName": {
          "type": "string",
          "minLength": 1,
          "maxLength": 256,
          "pattern": "^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-%@]*)$"
        },
        "DatastoreStatus": {
          "type": "string",
          "enum": [
            "CREATING",
            "ACTIVE",
            "DELETING",
            "DELETED",
            "CREATE_FAILED"
          ]
        },
        "CreatedBefore": {
          "type": "string",
          "format": "date-time"
        },
        "CreatedAfter": {
          "type": "string",
          "format": "date-time"
        }
      }
    },
    "NextToken": {
      "type": "string",
      "maxLength": 8192,
      "pattern": "\\p{ASCII}{0,8192}"
    },
    "MaxResults": {
      "type": "integer",
      "format": "int32",
      "minimum": 1,
      "maximum": 500
    }
  }
}