Show / Hide Table of Contents

Class AlarmEvents.CloudWatchAlarmStateChange.ConfigurationItem

(experimental) Type definition for ConfigurationItem.

Inheritance
object
AlarmEvents.CloudWatchAlarmStateChange.ConfigurationItem
Implements
AlarmEvents.CloudWatchAlarmStateChange.IConfigurationItem
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

Implements

AlarmEvents.CloudWatchAlarmStateChange.IConfigurationItem
Back to top Generated by DocFX