Interface CfnPlan.TriggerConditionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPlan.TriggerConditionProperty.Jsii$Proxy
- Enclosing class:
CfnPlan
@Stability(Stable)
public static interface CfnPlan.TriggerConditionProperty
extends software.amazon.jsii.JsiiSerializable
Defines a condition that must be met for a trigger to fire.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.arcregionswitch.*; TriggerConditionProperty triggerConditionProperty = TriggerConditionProperty.builder() .associatedAlarmName("associatedAlarmName") .condition("condition") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPlan.TriggerConditionProperty
static final class
An implementation forCfnPlan.TriggerConditionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the CloudWatch alarm associated with the condition.The condition that must be met.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociatedAlarmName
The name of the CloudWatch alarm associated with the condition.- See Also:
-
getCondition
The condition that must be met.Valid values include ALARM and OK.
- See Also:
-
builder
-