aws-cdk-lib.aws_codebuild.CfnReportGroup.ReportExportConfigProperty

interface ReportExportConfigProperty

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

Information about the location where the run of a report is 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 reportExportConfigProperty: codebuild.CfnReportGroup.ReportExportConfigProperty = {
  exportConfigType: 'exportConfigType',

  // the properties below are optional
  s3Destination: {
    bucket: 'bucket',

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

Properties

NameTypeDescription
exportConfigTypestringThe export configuration type. Valid values are:.
s3Destination?IResolvable | S3ReportExportConfigPropertyA S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

exportConfigType

Type: string

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?

Type: IResolvable | S3ReportExportConfigProperty (optional)

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