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

Encryption

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

Contains the type of server-side encryption used.

interface Encryption {
EncryptionType: ServerSideEncryption;
KMSContext?: string | null;
KMSKeyId?: string | null;
}

§Properties

§

The server-side encryption algorithm used when storing job results in Amazon S3 (for example, AES256, aws:kms).

§
KMSContext?: string | null
[src]

If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.

§
KMSKeyId?: string | null
[src]

If the encryption type is aws:kms, this optional value specifies the ID of the symmetric customer managed key to use for encryption of job results. Amazon S3 only supports symmetric keys. For more information, see Using symmetric and asymmetric keys in the Amazon Web Services Key Management Service Developer Guide.