Show / Hide Table of Contents

Interface ICfnEventRuleMixinProps

Properties for CfnEventRulePropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Notifications
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnEventRuleMixinProps
Syntax (vb)
Public Interface ICfnEventRuleMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Notifications;

             var cfnEventRuleMixinProps = new CfnEventRuleMixinProps {
                 EventPattern = "eventPattern",
                 EventType = "eventType",
                 NotificationConfigurationArn = "notificationConfigurationArn",
                 Regions = new [] { "regions" },
                 Source = "source"
             };

Synopsis

Properties

EventPattern

An additional event pattern used to further filter the events this EventRule receives.

EventType

The event type this rule should match with the EventBridge events.

NotificationConfigurationArn

The ARN for the NotificationConfiguration associated with this EventRule .

Regions

A list of AWS Regions that send events to this EventRule .

Source

The event source this rule should match with the EventBridge event sources.

Properties

EventPattern

An additional event pattern used to further filter the events this EventRule receives.

string? EventPattern { get; }
Property Value

string

Remarks

For more information, see Amazon EventBridge event patterns in the Amazon EventBridge User Guide.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#cfn-notifications-eventrule-eventpattern

EventType

The event type this rule should match with the EventBridge events.

string? EventType { get; }
Property Value

string

Remarks

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: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#cfn-notifications-eventrule-eventtype

NotificationConfigurationArn

The ARN for the NotificationConfiguration associated with this EventRule .

string? NotificationConfigurationArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#cfn-notifications-eventrule-notificationconfigurationarn

Regions

A list of AWS Regions that send events to this EventRule .

string[]? Regions { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#cfn-notifications-eventrule-regions

Source

The event source this rule should match with the EventBridge event sources.

string? Source { get; }
Property Value

string

Remarks

It must match with atleast one of the valid EventBridge event sources. Only AWS service sourced events are supported. For example, aws.ec2 and aws.cloudwatch . For more information, see Event delivery from AWS services in the Amazon EventBridge User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-eventrule.html#cfn-notifications-eventrule-source

Back to top Generated by DocFX