[][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 Clone for Application[src]

impl Debug for Application[src]

impl Default for Application[src]

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

impl PartialEq<Application> for Application[src]

impl Serialize for Application[src]

impl StructuralPartialEq for Application[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.