Class: Aws::Rekognition::Types::ConnectedHomeSettingsForUpdate
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::ConnectedHomeSettingsForUpdate
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
The label detection settings you want to use in your stream processor. This includes the labels you want the stream processor to detect and the minimum confidence level allowed to label objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#labels ⇒ Array<String>
Specifies what you want to detect in the video, such as people, packages, or pets.
-
#min_confidence ⇒ Float
The minimum confidence required to label an object in the video.
Instance Attribute Details
#labels ⇒ Array<String>
Specifies what you want to detect in the video, such as people, packages, or pets. The current valid labels you can include in this list are: “PERSON”, “PET”, “PACKAGE”, and “ALL”.
687 688 689 690 691 692 |
# File 'lib/aws-sdk-rekognition/types.rb', line 687 class ConnectedHomeSettingsForUpdate < Struct.new( :labels, :min_confidence) SENSITIVE = [] include Aws::Structure end |
#min_confidence ⇒ Float
The minimum confidence required to label an object in the video.
687 688 689 690 691 692 |
# File 'lib/aws-sdk-rekognition/types.rb', line 687 class ConnectedHomeSettingsForUpdate < Struct.new( :labels, :min_confidence) SENSITIVE = [] include Aws::Structure end |