amazonka-emr-2.0: Amazon EMR 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.EMR.Types.Application

Description

 
Synopsis

Documentation

data Application Source #

With Amazon EMR release version 4.0 and later, the only accepted parameter is the application name. To pass arguments to applications, you use configuration classifications specified using configuration JSON objects. For more information, see Configuring Applications.

With earlier Amazon EMR releases, the application is any Amazon or third-party software that you can add to the cluster. This structure contains a list of strings that indicates the software to use with the cluster and accepts a user argument list. Amazon EMR accepts and forwards the argument list to the corresponding installation script as bootstrap action argument.

See: newApplication smart constructor.

Constructors

Application' 

Fields

Instances

Instances details
FromJSON Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

ToJSON Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

Generic Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

Associated Types

type Rep Application :: Type -> Type #

Read Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

Show Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

NFData Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

Methods

rnf :: Application -> () #

Eq Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

Hashable Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

type Rep Application Source # 
Instance details

Defined in Amazonka.EMR.Types.Application

type Rep Application = D1 ('MetaData "Application" "Amazonka.EMR.Types.Application" "amazonka-emr-2.0-B3cWhP6sdymF3IBUMdPGcd" 'False) (C1 ('MetaCons "Application'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "additionalInfo") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "args") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text]))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "version") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newApplication :: Application Source #

Create a value of Application 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:additionalInfo:Application', application_additionalInfo - This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.

$sel:args:Application', application_args - Arguments for Amazon EMR to pass to the application.

$sel:name:Application', application_name - The name of the application.

$sel:version:Application', application_version - The version of the application.

application_additionalInfo :: Lens' Application (Maybe (HashMap Text Text)) Source #

This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.

application_args :: Lens' Application (Maybe [Text]) Source #

Arguments for Amazon EMR to pass to the application.

application_name :: Lens' Application (Maybe Text) Source #

The name of the application.

application_version :: Lens' Application (Maybe Text) Source #

The version of the application.