amazonka-rekognition-2.0: Amazon Rekognition SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Rekognition.Types.GeneralLabelsSettings

Description

 
Synopsis

Documentation

data GeneralLabelsSettings Source #

Contains filters for the object labels returned by DetectLabels. Filters can be inclusive, exclusive, or a combination of both and can be applied to individual l abels or entire label categories.

See: newGeneralLabelsSettings smart constructor.

Constructors

GeneralLabelsSettings' 

Fields

Instances

Instances details
ToJSON GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

Generic GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

Associated Types

type Rep GeneralLabelsSettings :: Type -> Type #

Read GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

Show GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

NFData GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

Methods

rnf :: GeneralLabelsSettings -> () #

Eq GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

Hashable GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

type Rep GeneralLabelsSettings Source # 
Instance details

Defined in Amazonka.Rekognition.Types.GeneralLabelsSettings

type Rep GeneralLabelsSettings = D1 ('MetaData "GeneralLabelsSettings" "Amazonka.Rekognition.Types.GeneralLabelsSettings" "amazonka-rekognition-2.0-EaCrS9R3rWADqefEZvOx5B" 'False) (C1 ('MetaCons "GeneralLabelsSettings'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "labelCategoryExclusionFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "labelCategoryInclusionFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "labelExclusionFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "labelInclusionFilters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])))))

newGeneralLabelsSettings :: GeneralLabelsSettings Source #

Create a value of GeneralLabelsSettings with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:labelCategoryExclusionFilters:GeneralLabelsSettings', generalLabelsSettings_labelCategoryExclusionFilters - The label categories that should be excluded from the return from DetectLabels.

$sel:labelCategoryInclusionFilters:GeneralLabelsSettings', generalLabelsSettings_labelCategoryInclusionFilters - The label categories that should be included in the return from DetectLabels.

$sel:labelExclusionFilters:GeneralLabelsSettings', generalLabelsSettings_labelExclusionFilters - The labels that should be excluded from the return from DetectLabels.

$sel:labelInclusionFilters:GeneralLabelsSettings', generalLabelsSettings_labelInclusionFilters - The labels that should be included in the return from DetectLabels.

generalLabelsSettings_labelCategoryExclusionFilters :: Lens' GeneralLabelsSettings (Maybe [Text]) Source #

The label categories that should be excluded from the return from DetectLabels.

generalLabelsSettings_labelCategoryInclusionFilters :: Lens' GeneralLabelsSettings (Maybe [Text]) Source #

The label categories that should be included in the return from DetectLabels.

generalLabelsSettings_labelExclusionFilters :: Lens' GeneralLabelsSettings (Maybe [Text]) Source #

The labels that should be excluded from the return from DetectLabels.

generalLabelsSettings_labelInclusionFilters :: Lens' GeneralLabelsSettings (Maybe [Text]) Source #

The labels that should be included in the return from DetectLabels.