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

.NET
Go
Java
Python
TypeScript