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

S3EncryptionConfig

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

A structure that contains the configuration of encryption-at-rest settings for canary artifacts that the canary uploads to Amazon S3.

For more information, see Encrypting canary artifacts

interface S3EncryptionConfig {
EncryptionMode?: EncryptionMode | null;
KmsKeyArn?: string | null;
}

§Properties

§
EncryptionMode?: EncryptionMode | null
[src]

The encryption method to use for artifacts created by this canary. Specify SSE_S3 to use server-side encryption (SSE) with an Amazon S3-managed key. Specify SSE-KMS to use server-side encryption with a customer-managed KMS key.

If you omit this parameter, an Amazon Web Services-managed KMS key is used.

§
KmsKeyArn?: string | null
[src]

The ARN of the customer-managed KMS key to use, if you specify SSE-KMS for EncryptionMode