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