amazonka-glue-2.0: Amazon Glue 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.Glue.Types.NullCheckBoxList

Description

 
Synopsis

Documentation

data NullCheckBoxList Source #

Represents whether certain values are recognized as null values for removal.

See: newNullCheckBoxList smart constructor.

Constructors

NullCheckBoxList' 

Fields

  • isEmpty :: Maybe Bool

    Specifies that an empty string is considered as a null value.

  • isNegOne :: Maybe Bool

    Specifies that an integer value of -1 is considered as a null value.

  • isNullString :: Maybe Bool

    Specifies that a value spelling out the word 'null' is considered as a null value.

Instances

Instances details
FromJSON NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

ToJSON NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

Generic NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

Associated Types

type Rep NullCheckBoxList :: Type -> Type #

Read NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

Show NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

NFData NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

Methods

rnf :: NullCheckBoxList -> () #

Eq NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

Hashable NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

type Rep NullCheckBoxList Source # 
Instance details

Defined in Amazonka.Glue.Types.NullCheckBoxList

type Rep NullCheckBoxList = D1 ('MetaData "NullCheckBoxList" "Amazonka.Glue.Types.NullCheckBoxList" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "NullCheckBoxList'" 'PrefixI 'True) (S1 ('MetaSel ('Just "isEmpty") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "isNegOne") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "isNullString") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)))))

newNullCheckBoxList :: NullCheckBoxList Source #

Create a value of NullCheckBoxList 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:isEmpty:NullCheckBoxList', nullCheckBoxList_isEmpty - Specifies that an empty string is considered as a null value.

$sel:isNegOne:NullCheckBoxList', nullCheckBoxList_isNegOne - Specifies that an integer value of -1 is considered as a null value.

$sel:isNullString:NullCheckBoxList', nullCheckBoxList_isNullString - Specifies that a value spelling out the word 'null' is considered as a null value.

nullCheckBoxList_isEmpty :: Lens' NullCheckBoxList (Maybe Bool) Source #

Specifies that an empty string is considered as a null value.

nullCheckBoxList_isNegOne :: Lens' NullCheckBoxList (Maybe Bool) Source #

Specifies that an integer value of -1 is considered as a null value.

nullCheckBoxList_isNullString :: Lens' NullCheckBoxList (Maybe Bool) Source #

Specifies that a value spelling out the word 'null' is considered as a null value.