Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataEncryptionMetadata

import type { DataEncryptionMetadata } from "https://aws-api.deno.dev/v0.4/services/cleanrooms.ts?docs=full";

The settings for client-side encryption for cryptographic computing.

interface DataEncryptionMetadata {
allowCleartext: boolean;
allowDuplicates: boolean;
allowJoinsOnColumnsWithDifferentNames: boolean;
preserveNulls: boolean;
}

§Properties

§
allowCleartext: boolean
[src]

Indicates whether encrypted tables can contain cleartext data (true) or are to cryptographically process every column (false).

§
allowDuplicates: boolean
[src]

Indicates whether Fingerprint columns can contain duplicate entries (true) or are to contain only non-repeated values (false).

§
allowJoinsOnColumnsWithDifferentNames: boolean
[src]

Indicates whether Fingerprint columns can be joined on any other Fingerprint column with a different name (true) or can only be joined on Fingerprint columns of the same name (false).

§
preserveNulls: boolean
[src]

Indicates whether NULL values are to be copied as NULL to encrypted tables (true) or cryptographically processed (false).