Interface CfnRule.SendNotificationActionProperty

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

@Stability(Stable) public static interface CfnRule.SendNotificationActionProperty extends software.amazon.jsii.JsiiSerializable
Information about the send notification action.

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.connect.*;
 SendNotificationActionProperty sendNotificationActionProperty = SendNotificationActionProperty.builder()
         .content("content")
         .contentType("contentType")
         .deliveryMethod("deliveryMethod")
         .recipient(NotificationRecipientTypeProperty.builder()
                 .userArns(List.of("userArns"))
                 .userTags(Map.of(
                         "userTagsKey", "userTags"))
                 .build())
         // the properties below are optional
         .subject("subject")
         .build();
 
  • Method Details