Class: Aws::Rekognition::Types::StreamProcessorSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessorSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Input parameters used in a streaming video analyzed by a Amazon Rekognition stream processor. You can use ‘FaceSearch` to recognize faces in a streaming video, or you can use `ConnectedHome` to detect labels.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connected_home ⇒ Types::ConnectedHomeSettings
Label detection settings to use on a streaming video.
-
#face_search ⇒ Types::FaceSearchSettings
Face search settings to use on a streaming video.
Instance Attribute Details
#connected_home ⇒ Types::ConnectedHomeSettings
Label detection settings to use on a streaming video. Defining the settings is required in the request parameter for CreateStreamProcessor. Including this setting in the ‘CreateStreamProcessor` request enables you to use the stream processor for label detection. You can then select what you want the stream processor to detect, such as people or pets. When the stream processor has started, one notification is sent for each object class specified. For example, if packages and pets are selected, one SNS notification is published the first time a package is detected and one SNS notification is published the first time a pet is detected, as well as an end-of-session summary.
7762 7763 7764 7765 7766 7767 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7762 class StreamProcessorSettings < Struct.new( :face_search, :connected_home) SENSITIVE = [] include Aws::Structure end |
#face_search ⇒ Types::FaceSearchSettings
Face search settings to use on a streaming video.
7762 7763 7764 7765 7766 7767 |
# File 'lib/aws-sdk-rekognition/types.rb', line 7762 class StreamProcessorSettings < Struct.new( :face_search, :connected_home) SENSITIVE = [] include Aws::Structure end |