Interface PipelineNotifyOnOptions

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

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:37.961Z") @Stability(Stable) public interface PipelineNotifyOnOptions 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.codepipeline.*;
 import software.amazon.awscdk.services.codestarnotifications.*;
 PipelineNotifyOnOptions pipelineNotifyOnOptions = PipelineNotifyOnOptions.builder()
         .events(List.of(PipelineNotificationEvents.PIPELINE_EXECUTION_FAILED))
         // the properties below are optional
         .detailType(DetailType.BASIC)
         .enabled(false)
         .notificationRuleName("notificationRuleName")
         .build();