amazonka-sagemaker-geospatial-2.0: Amazon SageMaker geospatial capabilities 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.SageMakerGeoSpatial.Types.Filter

Description

 
Synopsis

Documentation

data Filter Source #

The structure representing the filters supported by a RasterDataCollection.

See: newFilter smart constructor.

Constructors

Filter' 

Fields

Instances

Instances details
FromJSON Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

Generic Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.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.SageMakerGeoSpatial.Types.Filter

Show Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

NFData Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

Methods

rnf :: Filter -> () #

Eq Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

Methods

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

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

Hashable Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

Methods

hashWithSalt :: Int -> Filter -> Int #

hash :: Filter -> Int #

type Rep Filter Source # 
Instance details

Defined in Amazonka.SageMakerGeoSpatial.Types.Filter

type Rep Filter = D1 ('MetaData "Filter" "Amazonka.SageMakerGeoSpatial.Types.Filter" "amazonka-sagemaker-geospatial-2.0-Fg7YtbyXAZrLwLaIITXFtu" 'False) (C1 ('MetaCons "Filter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "maximum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "minimum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "type'") '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:maximum:Filter', filter_maximum - The maximum value of the filter.

$sel:minimum:Filter', filter_minimum - The minimum value of the filter.

$sel:name:Filter', filter_name - The name of the filter.

$sel:type':Filter', filter_type - The type of the filter being used.

filter_maximum :: Lens' Filter (Maybe Double) Source #

The maximum value of the filter.

filter_minimum :: Lens' Filter (Maybe Double) Source #

The minimum value of the filter.

filter_name :: Lens' Filter Text Source #

The name of the filter.

filter_type :: Lens' Filter Text Source #

The type of the filter being used.