amazonka-emr-serverless-2.0: Amazon EMR Serverless 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.EMRServerless.Types.Hive

Description

 
Synopsis

Documentation

data Hive Source #

The configurations for the Hive job driver.

See: newHive smart constructor.

Constructors

Hive' 

Fields

Instances

Instances details
FromJSON Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

ToJSON Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Generic Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Associated Types

type Rep Hive :: Type -> Type #

Methods

from :: Hive -> Rep Hive x #

to :: Rep Hive x -> Hive #

Show Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Methods

showsPrec :: Int -> Hive -> ShowS #

show :: Hive -> String #

showList :: [Hive] -> ShowS #

NFData Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Methods

rnf :: Hive -> () #

Eq Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Methods

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

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

Hashable Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

Methods

hashWithSalt :: Int -> Hive -> Int #

hash :: Hive -> Int #

type Rep Hive Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.Hive

type Rep Hive = D1 ('MetaData "Hive" "Amazonka.EMRServerless.Types.Hive" "amazonka-emr-serverless-2.0-Zw6ehwruaDFJFsqn31iYt" 'False) (C1 ('MetaCons "Hive'" 'PrefixI 'True) (S1 ('MetaSel ('Just "initQueryFile") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: (S1 ('MetaSel ('Just "parameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "query") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)))))

newHive Source #

Arguments

:: Text

$sel:query:Hive'

-> Hive 

Create a value of Hive 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:initQueryFile:Hive', hive_initQueryFile - The query file for the Hive job run.

$sel:parameters:Hive', hive_parameters - The parameters for the Hive job run.

$sel:query:Hive', hive_query - The query for the Hive job run.

hive_initQueryFile :: Lens' Hive (Maybe Text) Source #

The query file for the Hive job run.

hive_parameters :: Lens' Hive (Maybe Text) Source #

The parameters for the Hive job run.

hive_query :: Lens' Hive Text Source #

The query for the Hive job run.