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

Description

 
Synopsis

Documentation

data SparkSubmit Source #

The configurations for the Spark submit job driver.

See: newSparkSubmit smart constructor.

Constructors

SparkSubmit' 

Fields

Instances

Instances details
FromJSON SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

ToJSON SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

Generic SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

Associated Types

type Rep SparkSubmit :: Type -> Type #

Show SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

NFData SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

Methods

rnf :: SparkSubmit -> () #

Eq SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

Hashable SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

type Rep SparkSubmit Source # 
Instance details

Defined in Amazonka.EMRServerless.Types.SparkSubmit

type Rep SparkSubmit = D1 ('MetaData "SparkSubmit" "Amazonka.EMRServerless.Types.SparkSubmit" "amazonka-emr-serverless-2.0-Zw6ehwruaDFJFsqn31iYt" 'False) (C1 ('MetaCons "SparkSubmit'" 'PrefixI 'True) (S1 ('MetaSel ('Just "entryPointArguments") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Sensitive Text])) :*: (S1 ('MetaSel ('Just "sparkSubmitParameters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (Sensitive Text))) :*: S1 ('MetaSel ('Just "entryPoint") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Sensitive Text)))))

newSparkSubmit Source #

Create a value of SparkSubmit 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:entryPointArguments:SparkSubmit', sparkSubmit_entryPointArguments - The arguments for the Spark submit job run.

$sel:sparkSubmitParameters:SparkSubmit', sparkSubmit_sparkSubmitParameters - The parameters for the Spark submit job run.

$sel:entryPoint:SparkSubmit', sparkSubmit_entryPoint - The entry point for the Spark submit job run.

sparkSubmit_entryPointArguments :: Lens' SparkSubmit (Maybe [Text]) Source #

The arguments for the Spark submit job run.

sparkSubmit_sparkSubmitParameters :: Lens' SparkSubmit (Maybe Text) Source #

The parameters for the Spark submit job run.

sparkSubmit_entryPoint :: Lens' SparkSubmit Text Source #

The entry point for the Spark submit job run.