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

ObjectCountByEncryptionType

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

Provides information about the number of objects that are in an S3 bucket and use certain types of server-side encryption, use client-side encryption, or aren't encrypted.

interface ObjectCountByEncryptionType {
customerManaged?: number | null;
kmsManaged?: number | null;
s3Managed?: number | null;
unencrypted?: number | null;
unknown?: number | null;
}

§Properties

§
customerManaged?: number | null
[src]

The total number of objects that are encrypted with a customer-provided key. The objects use customer-provided server-side encryption (SSE-C).

§
kmsManaged?: number | null
[src]

The total number of objects that are encrypted with an KMS key, either an Amazon Web Services managed key or a customer managed key. The objects use KMS encryption (SSE-KMS).

§
s3Managed?: number | null
[src]

The total number of objects that are encrypted with an Amazon S3 managed key. The objects use Amazon S3 managed encryption (SSE-S3).

§
unencrypted?: number | null
[src]

The total number of objects that aren't encrypted or use client-side encryption.

§
unknown?: number | null
[src]

The total number of objects that Amazon Macie doesn't have current encryption metadata for. Macie can't provide current data about the encryption settings for these objects.