Class: Aws::Rekognition::Types::StreamProcessorSettingsForUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StreamProcessorSettingsForUpdate
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Note:
When making an API call, you may pass StreamProcessorSettingsForUpdate data as a hash:
{
connected_home_for_update: {
labels: ["ConnectedHomeLabel"],
min_confidence: 1.0,
},
}
The stream processor settings that you want to update. ConnectedHome
settings can be updated to detect different labels with a different
minimum confidence.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connected_home_for_update ⇒ Types::ConnectedHomeSettingsForUpdate
The label detection settings you want to use for your stream processor.
Instance Attribute Details
#connected_home_for_update ⇒ Types::ConnectedHomeSettingsForUpdate
The label detection settings you want to use for your stream processor.
6708 6709 6710 6711 6712 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 6708 class StreamProcessorSettingsForUpdate < Struct.new( :connected_home_for_update) SENSITIVE = [] include Aws::Structure end |