Interface CfnStreamProcessor.NotificationChannelProperty

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

@Stability(Stable) public static interface CfnStreamProcessor.NotificationChannelProperty extends software.amazon.jsii.JsiiSerializable
The Amazon Simple Notification Service topic to which Amazon Rekognition publishes the object detection results and completion status of a video analysis operation.

Amazon Rekognition publishes a notification the first time an object of interest or a person is detected in the video stream. Amazon Rekognition also publishes an an end-of-session notification with a summary when the stream processing session is complete. For more information, see StreamProcessorNotificationChannel .

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.rekognition.*;
 NotificationChannelProperty notificationChannelProperty = NotificationChannelProperty.builder()
         .arn("arn")
         .build();
 

See Also: