Interface CfnMaintenanceWindowTask.NotificationConfigProperty

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

@Stability(Stable) public static interface CfnMaintenanceWindowTask.NotificationConfigProperty extends software.amazon.jsii.JsiiSerializable
The NotificationConfig property type specifies configurations for sending notifications for a maintenance window task in AWS Systems Manager .

NotificationConfig is a property of the MaintenanceWindowRunCommandParameters property type.

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.ssm.*;
 NotificationConfigProperty notificationConfigProperty = NotificationConfigProperty.builder()
         .notificationArn("notificationArn")
         // the properties below are optional
         .notificationEvents(List.of("notificationEvents"))
         .notificationType("notificationType")
         .build();
 

See Also: