amazonka-rds-2.0: Amazon Relational Database 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.RDS.Types.Filter

Description

 
Synopsis

Documentation

data Filter Source #

A filter name and value pair that is used to return a more specific list of results from a describe operation. Filters can be used to match a set of resources by specific criteria, such as IDs. The filters supported by a describe operation are documented with the describe operation.

Currently, wildcards are not supported in filters.

The following actions can be filtered:

  • DescribeDBClusterBacktracks
  • DescribeDBClusterEndpoints
  • DescribeDBClusters
  • DescribeDBInstances
  • DescribePendingMaintenanceActions

See: newFilter smart constructor.

Constructors

Filter' 

Fields

  • name :: Text

    The name of the filter. Filter names are case-sensitive.

  • values :: [Text]

    One or more filter values. Filter values are case-sensitive.

Instances

Instances details
ToQuery Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Generic Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Associated Types

type Rep Filter :: Type -> Type #

Methods

from :: Filter -> Rep Filter x #

to :: Rep Filter x -> Filter #

Read Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Show Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

NFData Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Methods

rnf :: Filter -> () #

Eq Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Methods

(==) :: Filter -> Filter -> Bool #

(/=) :: Filter -> Filter -> Bool #

Hashable Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

Methods

hashWithSalt :: Int -> Filter -> Int #

hash :: Filter -> Int #

type Rep Filter Source # 
Instance details

Defined in Amazonka.RDS.Types.Filter

type Rep Filter = D1 ('MetaData "Filter" "Amazonka.RDS.Types.Filter" "amazonka-rds-2.0-3xXyiLHmAvvCXXUIx1uhpP" 'False) (C1 ('MetaCons "Filter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "values") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))

newFilter Source #

Create a value of Filter 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:name:Filter', filter_name - The name of the filter. Filter names are case-sensitive.

$sel:values:Filter', filter_values - One or more filter values. Filter values are case-sensitive.

filter_name :: Lens' Filter Text Source #

The name of the filter. Filter names are case-sensitive.

filter_values :: Lens' Filter [Text] Source #

One or more filter values. Filter values are case-sensitive.