Amazon HealthImaging · JSON Structure

Healthimaging Create Datastore Request Structure

Type: object Properties: 4 Required: 1
HealthcareHIPAAMachine LearningMedical ImagingDICOM

CreateDatastoreRequest is a JSON Structure definition published by Amazon HealthImaging, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

datastoreName clientToken tags kmsKeyArn

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-healthimaging/refs/heads/main/json-schema/healthimaging-create-datastore-request-schema.json",
  "name": "CreateDatastoreRequest",
  "type": "object",
  "required": [
    "clientToken"
  ],
  "properties": {
    "datastoreName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DatastoreName"
        },
        {
          "description": "The data store name."
        }
      ]
    },
    "clientToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientToken"
        },
        {
          "description": "A unique identifier for API idempotency."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "The tags provided when creating a data store."
        }
      ]
    },
    "kmsKeyArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KmsKeyArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) assigned to the AWS Key Management Service (AWS KMS) key for accessing encrypted data."
        }
      ]
    }
  }
}