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

Description

 
Synopsis

Documentation

data SelectFields Source #

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

See: newSelectFields smart constructor.

Constructors

SelectFields' 

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 SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

ToJSON SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

Generic SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

Associated Types

type Rep SelectFields :: Type -> Type #

Read SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

Show SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

NFData SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

Methods

rnf :: SelectFields -> () #

Eq SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

Hashable SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

type Rep SelectFields Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFields

type Rep SelectFields = D1 ('MetaData "SelectFields" "Amazonka.Glue.Types.SelectFields" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "SelectFields'" '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]]))))

newSelectFields Source #

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

$sel:inputs:SelectFields', selectFields_inputs - The data inputs identified by their node names.

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

selectFields_name :: Lens' SelectFields Text Source #

The name of the transform node.

selectFields_inputs :: Lens' SelectFields (NonEmpty Text) Source #

The data inputs identified by their node names.

selectFields_paths :: Lens' SelectFields [[Text]] Source #

A JSON path to a variable in the data structure.