interface InsightRuleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudWatch.InsightRuleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudwatch#InsightRuleReference |
Java | software.amazon.awscdk.interfaces.cloudwatch.InsightRuleReference |
Python | aws_cdk.interfaces.aws_cloudwatch.InsightRuleReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudwatch » InsightRuleReference |
A reference to a InsightRule resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cloudwatch as interfaces_cloudwatch } from 'aws-cdk-lib/interfaces';
const insightRuleReference: interfaces_cloudwatch.InsightRuleReference = {
insightRuleArn: 'insightRuleArn',
insightRuleId: 'insightRuleId',
};
Properties
| Name | Type | Description |
|---|---|---|
| insight | string | The ARN of the InsightRule resource. |
| insight | string | The Id of the InsightRule resource. |
insightRuleArn
Type:
string
The ARN of the InsightRule resource.
insightRuleId
Type:
string
The Id of the InsightRule resource.

.NET
Go
Java
Python
TypeScript