Interface CfnSubscriberNotification.NotificationConfigurationProperty

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

@Stability(Stable) public static interface CfnSubscriberNotification.NotificationConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specify the configurations you want to use for subscriber notification.

The subscriber is notified when new data is written to the data lake for sources that the subscriber consumes in Security Lake .

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.securitylake.*;
 Object sqsNotificationConfiguration;
 NotificationConfigurationProperty notificationConfigurationProperty = NotificationConfigurationProperty.builder()
         .httpsNotificationConfiguration(HttpsNotificationConfigurationProperty.builder()
                 .endpoint("endpoint")
                 .targetRoleArn("targetRoleArn")
                 // the properties below are optional
                 .authorizationApiKeyName("authorizationApiKeyName")
                 .authorizationApiKeyValue("authorizationApiKeyValue")
                 .httpMethod("httpMethod")
                 .build())
         .sqsNotificationConfiguration(sqsNotificationConfiguration)
         .build();
 

See Also: