Class AlarmEvents.CloudWatchAlarmStateChange.ConfigurationItem
(experimental) Type definition for ConfigurationItem.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class AlarmEvents.CloudWatchAlarmStateChange.ConfigurationItem : AlarmEvents.CloudWatchAlarmStateChange.IConfigurationItem
Syntax (vb)
Public Class AlarmEvents.CloudWatchAlarmStateChange.ConfigurationItem Implements AlarmEvents.CloudWatchAlarmStateChange.IConfigurationItem
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Events;
var configurationItem = new ConfigurationItem {
Id = new [] { "id" },
MetricStat = new MetricStat {
Metric = new Metric {
Dimensions = new [] { "dimensions" },
Name = new [] { "name" },
Namespace = new [] { "namespace" }
},
Period = new [] { "period" },
Stat = new [] { "stat" }
},
ReturnData = new [] { "returnData" }
};
Synopsis
Constructors
| ConfigurationItem() | (experimental) Type definition for ConfigurationItem. |
Properties
| Id | (experimental) id property. |
| MetricStat | (experimental) metricStat property. |
| ReturnData | (experimental) returnData property. |
Constructors
ConfigurationItem()
(experimental) Type definition for ConfigurationItem.
public ConfigurationItem()
Remarks
Stability: Experimental
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.CloudWatch.Events;
var configurationItem = new ConfigurationItem {
Id = new [] { "id" },
MetricStat = new MetricStat {
Metric = new Metric {
Dimensions = new [] { "dimensions" },
Name = new [] { "name" },
Namespace = new [] { "namespace" }
},
Period = new [] { "period" },
Stat = new [] { "stat" }
},
ReturnData = new [] { "returnData" }
};
Properties
Id
(experimental) id property.
public string[]? Id { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
MetricStat
(experimental) metricStat property.
public AlarmEvents.CloudWatchAlarmStateChange.IMetricStat? MetricStat { get; set; }
Property Value
AlarmEvents.CloudWatchAlarmStateChange.IMetricStat
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental
ReturnData
(experimental) returnData property.
public string[]? ReturnData { get; set; }
Property Value
string[]
Remarks
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.
Default: - Do not filter on this field
Stability: Experimental