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

InventoryS3BucketDestination

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

Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where inventory results are published.

interface InventoryS3BucketDestination {
AccountId?: string | null;
Bucket: string;
Encryption?: InventoryEncryption | null;
Prefix?: string | null;
}

§Properties

§
AccountId?: string | null
[src]

The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data.

Note: Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.

§
Bucket: string
[src]

The Amazon Resource Name (ARN) of the bucket where inventory results will be published.

§
Encryption?: InventoryEncryption | null
[src]

Contains the type of server-side encryption used to encrypt the inventory results.

§

Specifies the output format of the inventory results.

§
Prefix?: string | null
[src]

The prefix that is prepended to all inventory results.