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

S3Destination

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

Specifies an S3 bucket to store data classification results in, and the encryption settings to use when storing results in that bucket.

interface S3Destination {
bucketName: string;
keyPrefix?: string | null;
kmsKeyArn: string;
}

§Properties

§
bucketName: string
[src]

The name of the bucket.

§
keyPrefix?: string | null
[src]

The path prefix to use in the path to the location in the bucket. This prefix specifies where to store classification results in the bucket.

§
kmsKeyArn: string
[src]

The Amazon Resource Name (ARN) of the KMS key to use for encryption of the results. This must be the ARN of an existing, symmetric, customer managed KMS key that's in the same Amazon Web Services Region as the bucket.