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]

[src]

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

impl Debug for ScriptBootstrapActionConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ScriptBootstrapActionConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations