interface ReportExportConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CodeBuild.CfnReportGroupPropsMixin.ReportExportConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscodebuild#CfnReportGroupPropsMixin_ReportExportConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.codebuild.CfnReportGroupPropsMixin.ReportExportConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_codebuild.CfnReportGroupPropsMixin.ReportExportConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_codebuild » CfnReportGroupPropsMixin » 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/cfn-property-mixins';
const reportExportConfigProperty: codebuild.CfnReportGroupPropsMixin.ReportExportConfigProperty = {
exportConfigType: 'exportConfigType',
s3Destination: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
encryptionDisabled: false,
encryptionKey: 'encryptionKey',
packaging: 'packaging',
path: 'path',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| export | string | The export configuration type. Valid values are:. |
| s3 | IResolvable | S3 | A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported. |
exportConfigType?
Type:
string
(optional)
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 | S3
(optional)
A S3ReportExportConfig object that contains information about the S3 bucket where the run of a report is exported.

.NET
Go
Java
Python
TypeScript