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

BucketCountByEncryptionType

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

Provides information about the number of S3 buckets that use certain types of server-side encryption by default or don't encrypt new objects by default. For detailed information about these settings, see Setting default server-side encryption behavior for Amazon S3 buckets in the Amazon Simple Storage Service User Guide.

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

§Properties

§
kmsManaged?: number | null
[src]

The total number of buckets that use an KMS key to encrypt new objects by default, either an Amazon Web Services managed key or a customer managed key. These buckets use KMS encryption (SSE-KMS) by default.

§
s3Managed?: number | null
[src]

The total number of buckets that use an Amazon S3 managed key to encrypt new objects by default. These buckets use Amazon S3 managed encryption (SSE-S3) by default.

§
unencrypted?: number | null
[src]

The total number of buckets that don't encrypt new objects by default. Default encryption is disabled for these buckets.

§
unknown?: number | null
[src]

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