interface CloudWatchSetAlarmStateActionProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.Actions.CloudWatchSetAlarmStateActionProps | 
|  Java | software.amazon.awscdk.services.iot.actions.CloudWatchSetAlarmStateActionProps | 
|  Python | aws_cdk.aws_iot_actions.CloudWatchSetAlarmStateActionProps | 
|  TypeScript (source) | @aws-cdk/aws-iot-actions»CloudWatchSetAlarmStateActionProps | 
Configuration properties of an action for CloudWatch alarm.
Example
import * as cloudwatch from '@aws-cdk/aws-cloudwatch';
const metric = new cloudwatch.Metric({
  namespace: 'MyNamespace',
  metricName: 'MyMetric',
  dimensions: { MyDimension: 'MyDimensionValue' },
});
const alarm = new cloudwatch.Alarm(this, 'MyAlarm', {
  metric: metric,
  threshold: 100,
  evaluationPeriods: 3,
  datapointsToAlarm: 2,
});
const topicRule = new iot.TopicRule(this, 'TopicRule', {
  sql: iot.IotSql.fromStringAsVer20160323("SELECT topic(2) as device_id FROM 'device/+/data'"),
  actions: [
    new actions.CloudWatchSetAlarmStateAction(alarm, {
      reason: 'AWS Iot Rule action is triggered',
      alarmStateToSet: cloudwatch.AlarmState.ALARM,
    }),
  ],
});
Properties
| Name | Type | Description | 
|---|---|---|
| alarm | Alarm | The value of the alarm state to set. | 
| reason? | string | The reason for the alarm change. | 
| role? | IRole | The IAM role that allows access to AWS service. | 
alarmStateToSet
Type:
Alarm
The value of the alarm state to set.
reason?
Type:
string
(optional, default: None)
The reason for the alarm change.
role?
Type:
IRole
(optional, default: a new role will be created)
The IAM role that allows access to AWS service.
