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

ReportDeliveryChannel

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

Contains information from your report plan about where to deliver your reports, specifically your Amazon S3 bucket name, S3 key prefix, and the formats of your reports.

interface ReportDeliveryChannel {
Formats?: string[] | null;
S3BucketName: string;
S3KeyPrefix?: string | null;
}

§Properties

§
Formats?: string[] | null
[src]

A list of the format of your reports: CSV, JSON, or both. If not specified, the default format is CSV.

§
S3BucketName: string
[src]

The unique name of the S3 bucket that receives your reports.

§
S3KeyPrefix?: string | null
[src]

The prefix for where Backup Audit Manager delivers your reports to Amazon S3. The prefix is this part of the following path: s3://your-bucket-name/prefix/Backup/us-west-2/year/month/day/report-name. If not specified, there is no prefix.