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

ReportExportConfig

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

Information about the location where the run of a report is exported.

interface ReportExportConfig {
exportConfigType?: ReportExportConfigType | null;
s3Destination?: S3ReportExportConfig | null;
}

§Properties

§
exportConfigType?: ReportExportConfigType | null
[src]

The export configuration type. Valid values are:

  • S3: The report results are exported to an S3 bucket.
  • NO_EXPORT: The report results are not exported.
§
s3Destination?: S3ReportExportConfig | null
[src]

A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.