[][src]Struct rusoto_emr::Application

pub struct Application {
    pub additional_info: Option<HashMap<String, String>>,
    pub args: Option<Vec<String>>,
    pub name: Option<String>,
    pub version: Option<String>,
}

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

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.

args: Option<Vec<String>>

Arguments for Amazon EMR to pass to the application.

name: Option<String>

The name of the application.

version: Option<String>

The version of the application.

Trait Implementations

impl PartialEq<Application> for Application[src]

impl Default for Application[src]

impl Clone for Application[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Application[src]

impl<'de> Deserialize<'de> for Application[src]

impl Serialize for Application[src]

Auto Trait Implementations

impl Send for Application

impl Sync for Application

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self