Interface ProjectNotifyOnOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, NotificationRuleOptions
All Known Implementing Classes:
ProjectNotifyOnOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:33:59.063Z") @Stability(Stable) public interface ProjectNotifyOnOptions extends software.amazon.jsii.JsiiSerializable, NotificationRuleOptions
Additional options to pass to the notification rule.

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.codebuild.*;
 import software.amazon.awscdk.services.codestarnotifications.*;
 ProjectNotifyOnOptions projectNotifyOnOptions = ProjectNotifyOnOptions.builder()
         .events(List.of(ProjectNotificationEvents.BUILD_FAILED))
         // the properties below are optional
         .createdBy("createdBy")
         .detailType(DetailType.BASIC)
         .enabled(false)
         .notificationRuleName("notificationRuleName")
         .build();