amazonka-appflow-2.0: Amazon Appflow 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.AppFlow.Types.Range

Description

 
Synopsis

Documentation

data Range Source #

The range of values that the property supports.

See: newRange smart constructor.

Constructors

Range' 

Fields

Instances

Instances details
FromJSON Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Generic Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Associated Types

type Rep Range :: Type -> Type #

Methods

from :: Range -> Rep Range x #

to :: Rep Range x -> Range #

Read Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Show Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Methods

showsPrec :: Int -> Range -> ShowS #

show :: Range -> String #

showList :: [Range] -> ShowS #

NFData Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Methods

rnf :: Range -> () #

Eq Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Methods

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

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

Hashable Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

Methods

hashWithSalt :: Int -> Range -> Int #

hash :: Range -> Int #

type Rep Range Source # 
Instance details

Defined in Amazonka.AppFlow.Types.Range

type Rep Range = D1 ('MetaData "Range" "Amazonka.AppFlow.Types.Range" "amazonka-appflow-2.0-3aJWKTszi6ZKDtrkFSqVAB" 'False) (C1 ('MetaCons "Range'" 'PrefixI 'True) (S1 ('MetaSel ('Just "maximum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double)) :*: S1 ('MetaSel ('Just "minimum") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Double))))

newRange :: Range Source #

Create a value of Range 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:Range', range_maximum - Maximum value supported by the field.

$sel:minimum:Range', range_minimum - Minimum value supported by the field.

range_maximum :: Lens' Range (Maybe Double) Source #

Maximum value supported by the field.

range_minimum :: Lens' Range (Maybe Double) Source #

Minimum value supported by the field.