Class: Aws::Rekognition::Types::StreamProcessorNotificationChannel
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessorNotificationChannel
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
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. For example, if Amazon Rekognition detects a person at second 2, a pet at second 4, and a person again at second 5, Amazon Rekognition sends 2 object class detected notifications, one for a person at second 2 and one for a pet at second 4.
Amazon Rekognition also publishes an an end-of-session notification with a summary when the stream processing session is complete.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#sns_topic_arn ⇒ String
The Amazon Resource Number (ARN) of the Amazon Amazon Simple Notification Service topic to which Amazon Rekognition posts the completion status.
Instance Attribute Details
#sns_topic_arn ⇒ String
The Amazon Resource Number (ARN) of the Amazon Amazon Simple Notification Service topic to which Amazon Rekognition posts the completion status.
7659 7660 7661 7662 7663 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7659 class StreamProcessorNotificationChannel < Struct.new( :sns_topic_arn) SENSITIVE = [] include Aws::Structure end |