interface EventRuleReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Notifications.EventRuleReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsnotifications#EventRuleReference |
Java | software.amazon.awscdk.interfaces.notifications.EventRuleReference |
Python | aws_cdk.interfaces.aws_notifications.EventRuleReference |
TypeScript | aws-cdk-lib » interfaces » aws_notifications » EventRuleReference |
A reference to a EventRule resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_notifications as interfaces_aws_notifications } from 'aws-cdk-lib/interfaces';
const eventRuleReference: interfaces_aws_notifications.EventRuleReference = {
eventRuleArn: 'eventRuleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | The Arn of the EventRule resource. |
eventRuleArn
Type:
string
The Arn of the EventRule resource.

.NET
Go
Java
Python
TypeScript