interface CloudWatchAlarmConfigurationChangeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Events.AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/events#AlarmEvents_CloudWatchAlarmConfigurationChange_CloudWatchAlarmConfigurationChangeProps |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.events.AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps |
Python | aws_cdk.mixins_preview.aws_cloudwatch.events.AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_cloudwatch ยป events ยป AlarmEvents ยป CloudWatchAlarmConfigurationChange ยป CloudWatchAlarmConfigurationChangeProps |
Props type for Alarm aws.cloudwatch@CloudWatchAlarmConfigurationChange event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as cloudwatch_events } from '@aws-cdk/mixins-preview/aws-cloudwatch';
const cloudWatchAlarmConfigurationChangeProps: cloudwatch_events.AlarmEvents.CloudWatchAlarmConfigurationChange.CloudWatchAlarmConfigurationChangeProps = {
alarmName: ['alarmName'],
configuration: {
actionsEnabled: ['actionsEnabled'],
actionsSuppressor: ['actionsSuppressor'],
actionsSuppressorExtensionPeriod: ['actionsSuppressorExtensionPeriod'],
actionsSuppressorWaitPeriod: ['actionsSuppressorWaitPeriod'],
alarmActions: ['alarmActions'],
alarmName: ['alarmName'],
alarmRule: ['alarmRule'],
comparisonOperator: ['comparisonOperator'],
datapointsToAlarm: ['datapointsToAlarm'],
description: ['description'],
evaluateLowSampleCountPercentile: ['evaluateLowSampleCountPercentile'],
evaluationPeriods: ['evaluationPeriods'],
insufficientDataActions: ['insufficientDataActions'],
metrics: [{
id: ['id'],
metricStat: {
metric: {
dimensions: ['dimensions'],
name: ['name'],
namespace: ['namespace'],
},
period: ['period'],
stat: ['stat'],
},
returnData: ['returnData'],
}],
okActions: ['okActions'],
threshold: ['threshold'],
timestamp: ['timestamp'],
treatMissingData: ['treatMissingData'],
},
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
operation: ['operation'],
state: {
actionsSuppressedBy: ['actionsSuppressedBy'],
evaluationState: ['evaluationState'],
reason: ['reason'],
reasonData: ['reasonData'],
timestamp: ['timestamp'],
value: ['value'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| alarm | string[] | alarmName property. |
| configuration? | Configuration | configuration property. |
| event | AWSEvent | EventBridge event metadata. |
| operation? | string[] | operation property. |
| state? | State | state property. |
alarmName?
Type:
string[]
(optional, default: Do not filter on this field)
alarmName property.
Specify an array of string values to match this event if the actual value of alarmName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
configuration?
Type:
Configuration
(optional, default: Do not filter on this field)
configuration property.
Specify an array of string values to match this event if the actual value of configuration is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
operation?
Type:
string[]
(optional, default: Do not filter on this field)
operation property.
Specify an array of string values to match this event if the actual value of operation is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
state?
Type:
State
(optional, default: Do not filter on this field)
state property.
Specify an array of string values to match this event if the actual value of state is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript