amazonka-connect-2.0: gen/Amazonka/Connect/Types/UserSearchCriteria.hs
{-# 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.Connect.Types.UserSearchCriteria
-- 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.Connect.Types.UserSearchCriteria where
import Amazonka.Connect.Types.HierarchyGroupCondition
import Amazonka.Connect.Types.StringCondition
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
-- | The search criteria to be used to return users.
--
-- The @name@ and @description@ fields support \"contains\" queries with a
-- minimum of 2 characters and a maximum of 25 characters. Any queries with
-- character lengths outside of this range will throw invalid results.
--
-- /See:/ 'newUserSearchCriteria' smart constructor.
data UserSearchCriteria = UserSearchCriteria'
{ -- | A list of conditions which would be applied together with an @AND@
-- condition.
andConditions :: Prelude.Maybe [UserSearchCriteria],
-- | A leaf node condition which can be used to specify a hierarchy group
-- condition.
hierarchyGroupCondition :: Prelude.Maybe HierarchyGroupCondition,
-- | A list of conditions which would be applied together with an @OR@
-- condition.
orConditions :: Prelude.Maybe [UserSearchCriteria],
-- | A leaf node condition which can be used to specify a string condition.
stringCondition :: Prelude.Maybe StringCondition
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'UserSearchCriteria' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'andConditions', 'userSearchCriteria_andConditions' - A list of conditions which would be applied together with an @AND@
-- condition.
--
-- 'hierarchyGroupCondition', 'userSearchCriteria_hierarchyGroupCondition' - A leaf node condition which can be used to specify a hierarchy group
-- condition.
--
-- 'orConditions', 'userSearchCriteria_orConditions' - A list of conditions which would be applied together with an @OR@
-- condition.
--
-- 'stringCondition', 'userSearchCriteria_stringCondition' - A leaf node condition which can be used to specify a string condition.
newUserSearchCriteria ::
UserSearchCriteria
newUserSearchCriteria =
UserSearchCriteria'
{ andConditions =
Prelude.Nothing,
hierarchyGroupCondition = Prelude.Nothing,
orConditions = Prelude.Nothing,
stringCondition = Prelude.Nothing
}
-- | A list of conditions which would be applied together with an @AND@
-- condition.
userSearchCriteria_andConditions :: Lens.Lens' UserSearchCriteria (Prelude.Maybe [UserSearchCriteria])
userSearchCriteria_andConditions = Lens.lens (\UserSearchCriteria' {andConditions} -> andConditions) (\s@UserSearchCriteria' {} a -> s {andConditions = a} :: UserSearchCriteria) Prelude.. Lens.mapping Lens.coerced
-- | A leaf node condition which can be used to specify a hierarchy group
-- condition.
userSearchCriteria_hierarchyGroupCondition :: Lens.Lens' UserSearchCriteria (Prelude.Maybe HierarchyGroupCondition)
userSearchCriteria_hierarchyGroupCondition = Lens.lens (\UserSearchCriteria' {hierarchyGroupCondition} -> hierarchyGroupCondition) (\s@UserSearchCriteria' {} a -> s {hierarchyGroupCondition = a} :: UserSearchCriteria)
-- | A list of conditions which would be applied together with an @OR@
-- condition.
userSearchCriteria_orConditions :: Lens.Lens' UserSearchCriteria (Prelude.Maybe [UserSearchCriteria])
userSearchCriteria_orConditions = Lens.lens (\UserSearchCriteria' {orConditions} -> orConditions) (\s@UserSearchCriteria' {} a -> s {orConditions = a} :: UserSearchCriteria) Prelude.. Lens.mapping Lens.coerced
-- | A leaf node condition which can be used to specify a string condition.
userSearchCriteria_stringCondition :: Lens.Lens' UserSearchCriteria (Prelude.Maybe StringCondition)
userSearchCriteria_stringCondition = Lens.lens (\UserSearchCriteria' {stringCondition} -> stringCondition) (\s@UserSearchCriteria' {} a -> s {stringCondition = a} :: UserSearchCriteria)
instance Prelude.Hashable UserSearchCriteria where
hashWithSalt _salt UserSearchCriteria' {..} =
_salt
`Prelude.hashWithSalt` andConditions
`Prelude.hashWithSalt` hierarchyGroupCondition
`Prelude.hashWithSalt` orConditions
`Prelude.hashWithSalt` stringCondition
instance Prelude.NFData UserSearchCriteria where
rnf UserSearchCriteria' {..} =
Prelude.rnf andConditions
`Prelude.seq` Prelude.rnf hierarchyGroupCondition
`Prelude.seq` Prelude.rnf orConditions
`Prelude.seq` Prelude.rnf stringCondition
instance Data.ToJSON UserSearchCriteria where
toJSON UserSearchCriteria' {..} =
Data.object
( Prelude.catMaybes
[ ("AndConditions" Data..=) Prelude.<$> andConditions,
("HierarchyGroupCondition" Data..=)
Prelude.<$> hierarchyGroupCondition,
("OrConditions" Data..=) Prelude.<$> orConditions,
("StringCondition" Data..=)
Prelude.<$> stringCondition
]
)