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.DropFields

Description

 
Synopsis

Documentation

data DropFields Source #

Specifies a transform that chooses the data property keys that you want to drop.

See: newDropFields smart constructor.

Constructors

DropFields' 

Fields

  • name :: Text

    The name of the transform node.

  • inputs :: NonEmpty Text

    The data inputs identified by their node names.

  • paths :: [[Text]]

    A JSON path to a variable in the data structure.

Instances

Instances details
FromJSON DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

ToJSON DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

Generic DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

Associated Types

type Rep DropFields :: Type -> Type #

Read DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

Show DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

NFData DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

Methods

rnf :: DropFields -> () #

Eq DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

Hashable DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

type Rep DropFields Source # 
Instance details

Defined in Amazonka.Glue.Types.DropFields

type Rep DropFields = D1 ('MetaData "DropFields" "Amazonka.Glue.Types.DropFields" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "DropFields'" 'PrefixI 'True) (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "inputs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "paths") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [[Text]]))))

newDropFields Source #

Create a value of DropFields 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:DropFields', dropFields_name - The name of the transform node.

$sel:inputs:DropFields', dropFields_inputs - The data inputs identified by their node names.

$sel:paths:DropFields', dropFields_paths - A JSON path to a variable in the data structure.

dropFields_name :: Lens' DropFields Text Source #

The name of the transform node.

dropFields_inputs :: Lens' DropFields (NonEmpty Text) Source #

The data inputs identified by their node names.

dropFields_paths :: Lens' DropFields [[Text]] Source #

A JSON path to a variable in the data structure.