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

S3ReportExportConfig

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

Information about the S3 bucket where the raw data of a report are exported.

interface S3ReportExportConfig {
bucket?: string | null;
bucketOwner?: string | null;
encryptionDisabled?: boolean | null;
encryptionKey?: string | null;
packaging?: ReportPackagingType | null;
path?: string | null;
}

§Properties

§
bucket?: string | null
[src]

The name of the S3 bucket where the raw data of a report are exported.

§
bucketOwner?: string | null
[src]

The Amazon Web Services account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.

§
encryptionDisabled?: boolean | null
[src]

A boolean value that specifies if the results of a report are encrypted.

§
encryptionKey?: string | null
[src]

The encryption key for the report's encrypted raw data.

§
packaging?: ReportPackagingType | null
[src]

The type of build output artifact to create. Valid values include:

  • NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified.
  • ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
§
path?: string | null
[src]

The path to the exported report's raw data results.