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

ServerSideEncryption

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

Provides information about the server-side encryption settings for an S3 bucket or S3 object.

interface ServerSideEncryption {
encryptionType?: EncryptionType | null;
kmsMasterKeyId?: string | null;
}

§Properties

§
encryptionType?: EncryptionType | null
[src]

The server-side encryption algorithm that's used when storing data in the bucket or object. If default encryption is disabled for the bucket or the object isn't encrypted using server-side encryption, this value is NONE.

§
kmsMasterKeyId?: string | null
[src]

The Amazon Resource Name (ARN) or unique identifier (key ID) for the KMS key that's used to encrypt data in the bucket or the object. This value is null if an KMS key isn't used to encrypt the data.