interface ICustomEventRule
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CodePipeline.Actions.ICustomEventRule |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscodepipelineactions#ICustomEventRule |
Java | software.amazon.awscdk.services.codepipeline.actions.ICustomEventRule |
Python | aws_cdk.aws_codepipeline_actions.ICustomEventRule |
TypeScript (source) | aws-cdk-lib » aws_codepipeline_actions » ICustomEventRule |
Represents a custom event rule in AWS CodePipeline Actions.
This interface defines the structure for specifying a custom event rule in the AWS CodePipeline Actions module. The event rule is defined by an event pattern and a target.
See also: https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_events_targets-readme.html
Properties
| Name | Type | Description |
|---|---|---|
| event | Event | event pattern when this rule should be triggered. |
| target | IRule | Target e.g. Lambda when event pattern is fulfilled. |
| description? | string | Description. |
| rule | string | Rulename. |
eventPattern
Type:
Event
event pattern when this rule should be triggered.
target
Type:
IRule
Target e.g. Lambda when event pattern is fulfilled.
description?
Type:
string
(optional)
Description.
ruleName?
Type:
string
(optional)
Rulename.

.NET
Go
Java
Python
TypeScript (