Struct rusoto_emr::SupportedProductConfig[][src]

pub struct SupportedProductConfig {
    pub args: Option<Vec<String>>,
    pub name: Option<String>,
}

The list of supported product configurations which allow user-supplied arguments. EMR accepts these arguments and forwards them to the corresponding installation script as bootstrap action arguments.

Fields

The list of user-supplied arguments.

The name of the product configuration.

Trait Implementations

impl Default for SupportedProductConfig
[src]

Returns the "default value" for a type. Read more

impl Debug for SupportedProductConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for SupportedProductConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SupportedProductConfig
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations