interface EventRuleStatusSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Notifications.Mixins.CfnEventRulePropsMixin.EventRuleStatusSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnotifications/mixins#CfnEventRulePropsMixin_EventRuleStatusSummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.notifications.mixins.CfnEventRulePropsMixin.EventRuleStatusSummaryProperty |
Python | aws_cdk.mixins_preview.aws_notifications.mixins.CfnEventRulePropsMixin.EventRuleStatusSummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_notifications » mixins » CfnEventRulePropsMixin » 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 { mixins as notifications_mixins } from '@aws-cdk/mixins-preview/aws-notifications';
const eventRuleStatusSummaryProperty: notifications_mixins.CfnEventRulePropsMixin.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
(optional)
A human-readable reason for EventRuleStatus .
status?
Type:
string
(optional)
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