interface ReportGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodeBuild.ReportGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodebuild#ReportGroupReference |
Java | software.amazon.awscdk.services.codebuild.ReportGroupReference |
Python | aws_cdk.aws_codebuild.ReportGroupReference |
TypeScript | aws-cdk-lib » aws_codebuild » ReportGroupReference |
A reference to a ReportGroup resource.
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 reportGroupReference: codebuild.ReportGroupReference = {
reportGroupArn: 'reportGroupArn',
reportGroupId: 'reportGroupId',
};
Properties
| Name | Type | Description |
|---|---|---|
| report | string | The ARN of the ReportGroup resource. |
| report | string | The Id of the ReportGroup resource. |
reportGroupArn
Type:
string
The ARN of the ReportGroup resource.
reportGroupId
Type:
string
The Id of the ReportGroup resource.

.NET
Go
Java
Python
TypeScript