Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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.
Application' | |
|
Instances
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:args:Application'
, application_args
- Arguments for Amazon EMR to pass to the application.
$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:name:Application'
, application_name
- The name of the application.
$sel:version:Application'
, application_version
- The version of the application.
application_args :: Lens' Application (Maybe [Text]) Source #
Arguments for Amazon EMR to pass to 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_name :: Lens' Application (Maybe Text) Source #
The name of the application.
application_version :: Lens' Application (Maybe Text) Source #
The version of the application.