aws-cdk-lib.aws_codebuild.CfnReportGroup.S3ReportExportConfigProperty

interface S3ReportExportConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeBuild.CfnReportGroup.S3ReportExportConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#CfnReportGroup_S3ReportExportConfigProperty
Javasoftware.amazon.awscdk.services.codebuild.CfnReportGroup.S3ReportExportConfigProperty
Pythonaws_cdk.aws_codebuild.CfnReportGroup.S3ReportExportConfigProperty
TypeScript aws-cdk-lib » aws_codebuild » CfnReportGroup » S3ReportExportConfigProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codebuild as codebuild } from 'aws-cdk-lib';
const s3ReportExportConfigProperty: codebuild.CfnReportGroup.S3ReportExportConfigProperty = {
  bucket: 'bucket',

  // the properties below are optional
  bucketOwner: 'bucketOwner',
  encryptionDisabled: false,
  encryptionKey: 'encryptionKey',
  packaging: 'packaging',
  path: 'path',
};

Properties

NameTypeDescription
bucketstringThe name of the S3 bucket where the raw data of a report are exported.
bucketOwner?stringThe AWS account identifier of the owner of the Amazon S3 bucket.
encryptionDisabled?boolean | IResolvableA boolean value that specifies if the results of a report are encrypted.
encryptionKey?stringThe encryption key for the report's encrypted raw data.
packaging?stringThe type of build output artifact to create. Valid values include:.
path?stringThe path to the exported report's raw data results.

bucket

Type: string

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


bucketOwner?

Type: string (optional)

The AWS 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?

Type: boolean | IResolvable (optional)

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


encryptionKey?

Type: string (optional)

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


packaging?

Type: string (optional)

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?

Type: string (optional)

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