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

EncryptionConfig

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

Encryption config for Connect Instance. Note that sensitive data will always be encrypted. If disabled, service will perform encryption with its own key. If enabled, a KMS key id needs to be provided and KMS charges will apply. KMS is only type supported

interface EncryptionConfig {
enabled: boolean;
encryptionType?: EncryptionType | null;
keyArn?: string | null;
}

§Properties

§
enabled: boolean
[src]
§
encryptionType?: EncryptionType | null
[src]
§
keyArn?: string | null
[src]