interface State
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Events.AlarmEvents.CloudWatchAlarmStateChange.State |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudwatch/events#AlarmEvents_CloudWatchAlarmStateChange_State |
Java | software.amazon.awscdk.mixins.preview.services.cloudwatch.events.AlarmEvents.CloudWatchAlarmStateChange.State |
Python | aws_cdk.mixins_preview.aws_cloudwatch.events.AlarmEvents.CloudWatchAlarmStateChange.State |
TypeScript | @aws-cdk/mixins-preview ยป aws_cloudwatch ยป events ยป AlarmEvents ยป CloudWatchAlarmStateChange ยป State |
Type definition for State.
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 state: cloudwatch_events.AlarmEvents.CloudWatchAlarmStateChange.State = {
actionsSuppressedBy: ['actionsSuppressedBy'],
actionsSuppressedReason: ['actionsSuppressedReason'],
evaluationState: ['evaluationState'],
reason: ['reason'],
reasonData: ['reasonData'],
timestamp: ['timestamp'],
value: ['value'],
};
Properties
| Name | Type | Description |
|---|---|---|
| actions | string[] | actionsSuppressedBy property. |
| actions | string[] | actionsSuppressedReason property. |
| evaluation | string[] | evaluationState property. |
| reason? | string[] | reason property. |
| reason | string[] | reasonData property. |
| timestamp? | string[] | timestamp property. |
| value? | string[] | value property. |
actionsSuppressedBy?
Type:
string[]
(optional, default: Do not filter on this field)
actionsSuppressedBy property.
Specify an array of string values to match this event if the actual value of actionsSuppressedBy is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
actionsSuppressedReason?
Type:
string[]
(optional, default: Do not filter on this field)
actionsSuppressedReason property.
Specify an array of string values to match this event if the actual value of actionsSuppressedReason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
evaluationState?
Type:
string[]
(optional, default: Do not filter on this field)
evaluationState property.
Specify an array of string values to match this event if the actual value of evaluationState is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reason?
Type:
string[]
(optional, default: Do not filter on this field)
reason property.
Specify an array of string values to match this event if the actual value of reason is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reasonData?
Type:
string[]
(optional, default: Do not filter on this field)
reasonData property.
Specify an array of string values to match this event if the actual value of reasonData is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
timestamp?
Type:
string[]
(optional, default: Do not filter on this field)
timestamp property.
Specify an array of string values to match this event if the actual value of timestamp is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
value?
Type:
string[]
(optional, default: Do not filter on this field)
value property.
Specify an array of string values to match this event if the actual value of value 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