interface ReportReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Artifact.ReportReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsartifact#ReportReference |
Java | software.amazon.awscdk.interfaces.artifact.ReportReference |
Python | aws_cdk.interfaces.aws_artifact.ReportReference |
TypeScript | aws-cdk-lib » interfaces » aws_artifact » ReportReference |
A reference to a Report resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_artifact as interfaces_artifact } from 'aws-cdk-lib/interfaces';
const reportReference: interfaces_artifact.ReportReference = {
reportArn: 'reportArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| report | string | The Arn of the Report resource. |
reportArn
Type:
string
The Arn of the Report resource.

.NET
Go
Java
Python
TypeScript