interface AlarmReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CloudWatch.AlarmReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscloudwatch#AlarmReference |
Java | software.amazon.awscdk.interfaces.cloudwatch.AlarmReference |
Python | aws_cdk.interfaces.aws_cloudwatch.AlarmReference |
TypeScript | aws-cdk-lib » interfaces » aws_cloudwatch » AlarmReference |
A reference to a Alarm 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_aws_cloudwatch } from 'aws-cdk-lib/interfaces';
const alarmReference: interfaces_aws_cloudwatch.AlarmReference = {
alarmArn: 'alarmArn',
alarmName: 'alarmName',
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | string | The ARN of the Alarm resource. |
| alarm | string | The AlarmName of the Alarm resource. |
alarmArn
Type:
string
The ARN of the Alarm resource.
alarmName
Type:
string
The AlarmName of the Alarm resource.

.NET
Go
Java
Python
TypeScript