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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#general_labelsTypes::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_propertiesTypes::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