interface CfnReportGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CodeBuild.Mixins.CfnReportGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscodebuild/mixins#CfnReportGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.codebuild.mixins.CfnReportGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_codebuild.mixins.CfnReportGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_codebuild » mixins » CfnReportGroupMixinProps |
Properties for CfnReportGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as codebuild_mixins } from '@aws-cdk/mixins-preview/aws-codebuild';
const cfnReportGroupMixinProps: codebuild_mixins.CfnReportGroupMixinProps = {
deleteReports: false,
exportConfig: {
exportConfigType: 'exportConfigType',
s3Destination: {
bucket: 'bucket',
bucketOwner: 'bucketOwner',
encryptionDisabled: false,
encryptionKey: 'encryptionKey',
packaging: 'packaging',
path: 'path',
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| delete | boolean | IResolvable | When deleting a report group, specifies if reports within the report group should be deleted. |
| export | IResolvable | Report | Information about the destination where the raw data of this ReportGroup is exported. |
| name? | string | The name of the ReportGroup . |
| tags? | Cfn[] | A list of tag key and value pairs associated with this report group. |
| type? | string | The type of the ReportGroup . This can be one of the following values:. |
deleteReports?
Type:
boolean | IResolvable
(optional)
When deleting a report group, specifies if reports within the report group should be deleted.
- true - Deletes any reports that belong to the report group before deleting the report group.
- false - You must delete any reports in the report group. This is the default value. If you delete a report group that contains one or more reports, an exception is thrown.
exportConfig?
Type:
IResolvable | Report
(optional)
Information about the destination where the raw data of this ReportGroup is exported.
name?
Type:
string
(optional)
The name of the ReportGroup .
tags?
Type:
Cfn[]
(optional)
A list of tag key and value pairs associated with this report group.
These tags are available for use by AWS services that support AWS CodeBuild report group tags.
type?
Type:
string
(optional)
The type of the ReportGroup . This can be one of the following values:.
- CODE_COVERAGE - The report group contains code coverage reports.
- TEST - The report group contains test reports.

.NET
Go
Java
Python
TypeScript