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

.NET
Go
Java
Python
TypeScript