amazonka-connect-2.0: Amazon Connect Service 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.Connect.Types.ControlPlaneTagFilter

Description

 
Synopsis

Documentation

data ControlPlaneTagFilter Source #

An object that can be used to specify Tag conditions inside the SearchFilter. This accepts an OR of AND (List of List) input where:

  • Top level list specifies conditions that need to be applied with OR operator
  • Inner list specifies conditions that need to be applied with AND operator.

See: newControlPlaneTagFilter smart constructor.

Constructors

ControlPlaneTagFilter' 

Fields

Instances

Instances details
ToJSON ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

Generic ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

Associated Types

type Rep ControlPlaneTagFilter :: Type -> Type #

Read ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

Show ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

NFData ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

Methods

rnf :: ControlPlaneTagFilter -> () #

Eq ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

Hashable ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

type Rep ControlPlaneTagFilter Source # 
Instance details

Defined in Amazonka.Connect.Types.ControlPlaneTagFilter

type Rep ControlPlaneTagFilter = D1 ('MetaData "ControlPlaneTagFilter" "Amazonka.Connect.Types.ControlPlaneTagFilter" "amazonka-connect-2.0-IAACrecRcUS5AABe9BOFyN" 'False) (C1 ('MetaCons "ControlPlaneTagFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "andConditions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [TagCondition])) :*: (S1 ('MetaSel ('Just "orConditions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [[TagCondition]])) :*: S1 ('MetaSel ('Just "tagCondition") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TagCondition)))))

newControlPlaneTagFilter :: ControlPlaneTagFilter Source #

Create a value of ControlPlaneTagFilter 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:andConditions:ControlPlaneTagFilter', controlPlaneTagFilter_andConditions - A list of conditions which would be applied together with an AND condition.

$sel:orConditions:ControlPlaneTagFilter', controlPlaneTagFilter_orConditions - A list of conditions which would be applied together with an OR condition.

$sel:tagCondition:ControlPlaneTagFilter', controlPlaneTagFilter_tagCondition - A leaf node condition which can be used to specify a tag condition.

controlPlaneTagFilter_andConditions :: Lens' ControlPlaneTagFilter (Maybe [TagCondition]) Source #

A list of conditions which would be applied together with an AND condition.

controlPlaneTagFilter_orConditions :: Lens' ControlPlaneTagFilter (Maybe [[TagCondition]]) Source #

A list of conditions which would be applied together with an OR condition.

controlPlaneTagFilter_tagCondition :: Lens' ControlPlaneTagFilter (Maybe TagCondition) Source #

A leaf node condition which can be used to specify a tag condition.