{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.Rekognition.Types.AgeRange -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.Rekognition.Types.AgeRange where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Structure containing the estimated age range, in years, for a face. -- -- Amazon Rekognition estimates an age range for faces detected in the -- input image. Estimated age ranges can overlap. A face of a 5-year-old -- might have an estimated range of 4-6, while the face of a 6-year-old -- might have an estimated range of 4-8. -- -- /See:/ 'newAgeRange' smart constructor. data AgeRange = AgeRange' { -- | The highest estimated age. high :: Prelude.Maybe Prelude.Natural, -- | The lowest estimated age. low :: Prelude.Maybe Prelude.Natural } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AgeRange' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'high', 'ageRange_high' - The highest estimated age. -- -- 'low', 'ageRange_low' - The lowest estimated age. newAgeRange :: AgeRange newAgeRange = AgeRange' { high = Prelude.Nothing, low = Prelude.Nothing } -- | The highest estimated age. ageRange_high :: Lens.Lens' AgeRange (Prelude.Maybe Prelude.Natural) ageRange_high = Lens.lens (\AgeRange' {high} -> high) (\s@AgeRange' {} a -> s {high = a} :: AgeRange) -- | The lowest estimated age. ageRange_low :: Lens.Lens' AgeRange (Prelude.Maybe Prelude.Natural) ageRange_low = Lens.lens (\AgeRange' {low} -> low) (\s@AgeRange' {} a -> s {low = a} :: AgeRange) instance Data.FromJSON AgeRange where parseJSON = Data.withObject "AgeRange" ( \x -> AgeRange' Prelude.<$> (x Data..:? "High") Prelude.<*> (x Data..:? "Low") ) instance Prelude.Hashable AgeRange where hashWithSalt _salt AgeRange' {..} = _salt `Prelude.hashWithSalt` high `Prelude.hashWithSalt` low instance Prelude.NFData AgeRange where rnf AgeRange' {..} = Prelude.rnf high `Prelude.seq` Prelude.rnf low