Interface CfnEventRule.EventRuleStatusSummaryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventRule.EventRuleStatusSummaryProperty.Jsii$Proxy
- Enclosing class:
CfnEventRule
@Stability(Stable)
public static interface CfnEventRule.EventRuleStatusSummaryProperty
extends software.amazon.jsii.JsiiSerializable
Provides additional information about the current
EventRule status.
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.notifications.*;
EventRuleStatusSummaryProperty eventRuleStatusSummaryProperty = EventRuleStatusSummaryProperty.builder()
.reason("reason")
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventRule.EventRuleStatusSummaryPropertystatic final classAn implementation forCfnEventRule.EventRuleStatusSummaryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getReason
A human-readable reason forEventRuleStatus.- See Also:
-
getStatus
The status of theEventRule.- Values:
ACTIVE- The
EventRulecan process events. INACTIVE- The
EventRulemay be unable to process events. CREATING- The
EventRuleis being created.
Only
GETandLISTcalls can be run.UPDATING- The
EventRuleis being updated.
Only
GETandLISTcalls can be run.DELETING- The
EventRuleis being deleted.
Only
GETandLISTcalls can be run.- See Also:
-
builder
-