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

Description

 
Synopsis

Documentation

data SelectFromCollection Source #

Specifies a transform that chooses one DynamicFrame from a collection of DynamicFrames. The output is the selected DynamicFrame

See: newSelectFromCollection smart constructor.

Constructors

SelectFromCollection' 

Fields

Instances

Instances details
FromJSON SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

ToJSON SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

Generic SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

Associated Types

type Rep SelectFromCollection :: Type -> Type #

Read SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

Show SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

NFData SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

Methods

rnf :: SelectFromCollection -> () #

Eq SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

Hashable SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

type Rep SelectFromCollection Source # 
Instance details

Defined in Amazonka.Glue.Types.SelectFromCollection

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

newSelectFromCollection Source #

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

$sel:inputs:SelectFromCollection', selectFromCollection_inputs - The data inputs identified by their node names.

$sel:index:SelectFromCollection', selectFromCollection_index - The index for the DynamicFrame to be selected.

selectFromCollection_inputs :: Lens' SelectFromCollection (NonEmpty Text) Source #

The data inputs identified by their node names.

selectFromCollection_index :: Lens' SelectFromCollection Natural Source #

The index for the DynamicFrame to be selected.