Class: Aws::Rekognition::Types::DetectLabelsSettings

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-rekognition/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

Instance Attribute Details

#general_labelsTypes::GeneralLabelsSettings

Contains the specified filters for GENERAL_LABELS.



2354
2355
2356
2357
2358
2359
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2354

class DetectLabelsSettings < Struct.new(
  :general_labels,
  :image_properties)
  SENSITIVE = []
  include Aws::Structure
end

#image_propertiesTypes::DetectLabelsImagePropertiesSettings

Contains the chosen number of maximum dominant colors in an image.



2354
2355
2356
2357
2358
2359
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2354

class DetectLabelsSettings < Struct.new(
  :general_labels,
  :image_properties)
  SENSITIVE = []
  include Aws::Structure
end