Struct rusoto_emr::ScriptBootstrapActionConfig[][src]

pub struct ScriptBootstrapActionConfig {
    pub args: Option<Vec<String>>,
    pub path: String,
}

Configuration of the script to run during a bootstrap action.

Fields

A list of command line arguments to pass to the bootstrap action script.

Location of the script to run during a bootstrap action. Can be either a location in Amazon S3 or on a local file system.

Trait Implementations

impl Default for ScriptBootstrapActionConfig
[src]

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

impl Debug for ScriptBootstrapActionConfig
[src]

Formats the value using the given formatter. Read more

impl Clone for ScriptBootstrapActionConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ScriptBootstrapActionConfig
[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