Interface CfnEventRuleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEventRuleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:28.722Z")
@Stability(Stable)
public interface CfnEventRuleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEventRulePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.notifications.mixins.*;
CfnEventRuleMixinProps cfnEventRuleMixinProps = CfnEventRuleMixinProps.builder()
.eventPattern("eventPattern")
.eventType("eventType")
.notificationConfigurationArn("notificationConfigurationArn")
.regions(List.of("regions"))
.source("source")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventRuleMixinPropsstatic final classAn implementation forCfnEventRuleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringAn additional event pattern used to further filter the events thisEventRulereceives.default StringThe event type this rule should match with the EventBridge events.default StringThe ARN for theNotificationConfigurationassociated with thisEventRule.A list of AWS Regions that send events to thisEventRule.default StringThe event source this rule should match with the EventBridge event sources.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEventPattern
An additional event pattern used to further filter the events thisEventRulereceives.For more information, see Amazon EventBridge event patterns in the Amazon EventBridge User Guide.
- See Also:
-
getEventType
The event type this rule should match with the EventBridge events.It must match with atleast one of the valid EventBridge event types. For example, Amazon EC2 Instance State change Notification and Amazon CloudWatch State Change. For more information, see Event delivery from AWS services in the Amazon EventBridge User Guide .
- See Also:
-
getNotificationConfigurationArn
The ARN for theNotificationConfigurationassociated with thisEventRule.- See Also:
-
getRegions
A list of AWS Regions that send events to thisEventRule.- See Also:
-
getSource
The event source this rule should match with the EventBridge event sources.It must match with atleast one of the valid EventBridge event sources. Only AWS service sourced events are supported. For example,
aws.ec2andaws.cloudwatch. For more information, see Event delivery from AWS services in the Amazon EventBridge User Guide .- See Also:
-
builder
- Returns:
- a
CfnEventRuleMixinProps.BuilderofCfnEventRuleMixinProps
-