Amazon HealthLake · JSON Structure

Healthlake Kms Encryption Config Structure

The customer-managed-key(CMK) used when creating a data store. If a customer owned key is not specified, an AWS owned key will be used for encryption.

Type: object Properties: 2 Required: 1
FHIRHealth DataHealthcareHIPAACloud Computing

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

Properties

CmkType KmsKeyId

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-healthlake/refs/heads/main/json-schema/healthlake-kms-encryption-config-schema.json",
  "name": "KmsEncryptionConfig",
  "type": "object",
  "required": [
    "CmkType"
  ],
  "properties": {
    "CmkType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CmkType"
        },
        {
          "description": " The type of customer-managed-key(CMK) used for encryption. The two types of supported CMKs are customer owned CMKs and AWS owned CMKs. "
        }
      ]
    },
    "KmsKeyId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EncryptionKeyID"
        },
        {
          "description": " The KMS encryption key id/alias used to encrypt the data store contents at rest. "
        }
      ]
    }
  },
  "description": " The customer-managed-key(CMK) used when creating a data store. If a customer owned key is not specified, an AWS owned key will be used for encryption. "
}