Snowflake · Schema

Encryption

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
type string Specifies the encryption type used.
kms_key_id string Specifies the ID for the Cloud KMS-managed key used to encrypt files written to the bucket.
View JSON Schema on GitHub

JSON Schema

snowflake-encryption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Encryption",
  "title": "Encryption",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "NONE",
        "AWS_SSE_S3",
        "AWS_SSE_KMS",
        "GCS_SSE_KMS"
      ],
      "description": "Specifies the encryption type used.",
      "example": "NONE"
    },
    "kms_key_id": {
      "type": "string",
      "description": "Specifies the ID for the Cloud KMS-managed key used to encrypt files written to the bucket.",
      "example": "500123"
    }
  },
  "required": [
    "type"
  ]
}