ReportGroupReference

class aws_cdk.aws_codebuild.ReportGroupReference(*, report_group_arn, report_group_id)

Bases: object

A reference to a ReportGroup resource.

Parameters:
  • report_group_arn (str) – The ARN of the ReportGroup resource.

  • report_group_id (str) – The Id of the ReportGroup resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_codebuild as codebuild

report_group_reference = codebuild.ReportGroupReference(
    report_group_arn="reportGroupArn",
    report_group_id="reportGroupId"
)

Attributes

report_group_arn

The ARN of the ReportGroup resource.

report_group_id

The Id of the ReportGroup resource.