Interface CfnWebhook.WebhookFilterRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWebhook.WebhookFilterRuleProperty.Jsii$Proxy
Enclosing class:
CfnWebhook

@Stability(Stable) public static interface CfnWebhook.WebhookFilterRuleProperty extends software.amazon.jsii.JsiiSerializable
The event criteria that specify when a webhook notification is sent to your URL.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.codepipeline.*;
 WebhookFilterRuleProperty webhookFilterRuleProperty = WebhookFilterRuleProperty.builder()
         .jsonPath("jsonPath")
         // the properties below are optional
         .matchEquals("matchEquals")
         .build();
 

See Also: