Class: Aws::Rekognition::Types::DetectLabelsSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectLabelsSettings
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Overview
Settings for the DetectLabels request. Settings can include filters for both GENERAL_LABELS and IMAGE_PROPERTIES. GENERAL_LABELS filters can be inclusive or exclusive and applied to individual labels or label categories. IMAGE_PROPERTIES filters allow specification of a maximum number of dominant colors.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#general_labels ⇒ Types::GeneralLabelsSettings
Contains the specified filters for GENERAL_LABELS.
-
#image_properties ⇒ Types::DetectLabelsImagePropertiesSettings
Contains the chosen number of maximum dominant colors in an image.
Instance Attribute Details
#general_labels ⇒ Types::GeneralLabelsSettings
Contains the specified filters for GENERAL_LABELS.
2366 2367 2368 2369 2370 2371 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2366 class DetectLabelsSettings < Struct.new( :general_labels, :image_properties) SENSITIVE = [] include Aws::Structure end |
#image_properties ⇒ Types::DetectLabelsImagePropertiesSettings
Contains the chosen number of maximum dominant colors in an image.
2366 2367 2368 2369 2370 2371 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2366 class DetectLabelsSettings < Struct.new( :general_labels, :image_properties) SENSITIVE = [] include Aws::Structure end |