Show / Hide Table of Contents

Class AlarmEvents.CloudWatchAlarmStateChange.State

(experimental) Type definition for State.

Inheritance
object
AlarmEvents.CloudWatchAlarmStateChange.State
Implements
AlarmEvents.CloudWatchAlarmStateChange.IState
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.State : AlarmEvents.CloudWatchAlarmStateChange.IState
Syntax (vb)
Public Class AlarmEvents.CloudWatchAlarmStateChange.State Implements AlarmEvents.CloudWatchAlarmStateChange.IState
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 state = new State {
                 ActionsSuppressedBy = new [] { "actionsSuppressedBy" },
                 ActionsSuppressedReason = new [] { "actionsSuppressedReason" },
                 EvaluationState = new [] { "evaluationState" },
                 Reason = new [] { "reason" },
                 ReasonData = new [] { "reasonData" },
                 Timestamp = new [] { "timestamp" },
                 Value = new [] { "value" }
             };

Synopsis

Constructors

State()

(experimental) Type definition for State.

Properties

ActionsSuppressedBy

(experimental) actionsSuppressedBy property.

ActionsSuppressedReason

(experimental) actionsSuppressedReason property.

EvaluationState

(experimental) evaluationState property.

Reason

(experimental) reason property.

ReasonData

(experimental) reasonData property.

Timestamp

(experimental) timestamp property.

Value

(experimental) value property.

Constructors

State()

(experimental) Type definition for State.

public State()
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 state = new State {
                 ActionsSuppressedBy = new [] { "actionsSuppressedBy" },
                 ActionsSuppressedReason = new [] { "actionsSuppressedReason" },
                 EvaluationState = new [] { "evaluationState" },
                 Reason = new [] { "reason" },
                 ReasonData = new [] { "reasonData" },
                 Timestamp = new [] { "timestamp" },
                 Value = new [] { "value" }
             };

Properties

ActionsSuppressedBy

(experimental) actionsSuppressedBy property.

public string[]? ActionsSuppressedBy { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

ActionsSuppressedReason

(experimental) actionsSuppressedReason property.

public string[]? ActionsSuppressedReason { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

EvaluationState

(experimental) evaluationState property.

public string[]? EvaluationState { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Reason

(experimental) reason property.

public string[]? Reason { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

ReasonData

(experimental) reasonData property.

public string[]? ReasonData { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Timestamp

(experimental) timestamp property.

public string[]? Timestamp { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Value

(experimental) value property.

public string[]? Value { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Implements

AlarmEvents.CloudWatchAlarmStateChange.IState
Back to top Generated by DocFX