interface EventRuleStatusSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Notifications.CfnEventRule.EventRuleStatusSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsnotifications#CfnEventRule_EventRuleStatusSummaryProperty |
Java | software.amazon.awscdk.services.notifications.CfnEventRule.EventRuleStatusSummaryProperty |
Python | aws_cdk.aws_notifications.CfnEventRule.EventRuleStatusSummaryProperty |
TypeScript | aws-cdk-lib » aws_notifications » CfnEventRule » EventRuleStatusSummaryProperty |
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 { aws_notifications as notifications } from 'aws-cdk-lib';
const eventRuleStatusSummaryProperty: notifications.CfnEventRule.EventRuleStatusSummaryProperty = {
reason: 'reason',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| reason | string | A human-readable reason for EventRuleStatus . |
| status | string | The status of the EventRule . |
reason
Type:
string
A human-readable reason for EventRuleStatus .
status
Type:
string
The status of the EventRule .
Values:
ACTIVEThe
EventRulecan process events.INACTIVEThe
EventRulemay be unable to process events.CREATINGThe
EventRuleis being created.
Only GET and LIST calls can be run.
UPDATINGThe
EventRuleis being updated.
Only GET and LIST calls can be run.
DELETINGThe
EventRuleis being deleted.
Only GET and LIST calls can be run.

.NET
Go
Java
Python
TypeScript