CreateDatastoreRequest

HealthcareHIPAAMachine LearningMedical ImagingDICOM

Properties

Name Type Description
datastoreName object
clientToken object
tags object
kmsKeyArn object
View JSON Schema on GitHub

JSON Schema

healthimaging-create-datastore-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthimaging/refs/heads/main/json-schema/healthimaging-create-datastore-request-schema.json",
  "title": "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."
        }
      ]
    }
  }
}