Class: Aws::Notifications::Types::EventRuleStatusSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Notifications::Types::EventRuleStatusSummary
- Defined in:
- gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb
Overview
Provides additional information about the current EventRule status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#reason ⇒ String
A human-readable reason for
EventRuleStatus. -
#status ⇒ String
The status of the
EventRule.
Instance Attribute Details
#reason ⇒ String
A human-readable reason for EventRuleStatus.
612 613 614 615 616 617 |
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 612 class EventRuleStatusSummary < Struct.new( :status, :reason) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the EventRule.
Values:
ACTIVE- The
EventRulecan process events.
^
- The
INACTIVE- The
EventRulemay be unable to process events.
^
- The
CREATINGThe
EventRuleis being created.Only
GETandLISTcalls can be run.
UPDATINGThe
EventRuleis being updated.Only
GETandLISTcalls can be run.
DELETINGThe
EventRuleis being deleted.Only
GETandLISTcalls can be run.
612 613 614 615 616 617 |
# File 'gems/aws-sdk-notifications/lib/aws-sdk-notifications/types.rb', line 612 class EventRuleStatusSummary < Struct.new( :status, :reason) SENSITIVE = [] include Aws::Structure end |