Struct aws_sdk_emr::types::Application
source · #[non_exhaustive]pub struct Application {
pub name: Option<String>,
pub version: Option<String>,
pub args: Option<Vec<String>>,
pub additional_info: Option<HashMap<String, String>>,
}
Expand description
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the application.
version: Option<String>
The version of the application.
args: Option<Vec<String>>
Arguments for Amazon EMR to pass to the application.
additional_info: Option<HashMap<String, String>>
This option is for advanced users only. This is meta information about third-party applications that third-party vendors use for testing purposes.
Implementations§
source§impl Application
impl Application
source§impl Application
impl Application
sourcepub fn builder() -> ApplicationBuilder
pub fn builder() -> ApplicationBuilder
Creates a new builder-style object to manufacture Application
.
Trait Implementations§
source§impl Clone for Application
impl Clone for Application
source§fn clone(&self) -> Application
fn clone(&self) -> Application
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for Application
impl Debug for Application
source§impl PartialEq for Application
impl PartialEq for Application
source§fn eq(&self, other: &Application) -> bool
fn eq(&self, other: &Application) -> bool
self
and other
values to be equal, and is used
by ==
.