pub struct ScriptBootstrapActionConfig {
pub args: Option<Vec<String>>,
pub path: String,
}
Expand description
Configuration of the script to run during a bootstrap action.
Fields§
§args: Option<Vec<String>>
A list of command line arguments to pass to the bootstrap action script.
path: String
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§
Source§impl Clone for ScriptBootstrapActionConfig
impl Clone for ScriptBootstrapActionConfig
Source§fn clone(&self) -> ScriptBootstrapActionConfig
fn clone(&self) -> ScriptBootstrapActionConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ScriptBootstrapActionConfig
impl Debug for ScriptBootstrapActionConfig
Source§impl Default for ScriptBootstrapActionConfig
impl Default for ScriptBootstrapActionConfig
Source§fn default() -> ScriptBootstrapActionConfig
fn default() -> ScriptBootstrapActionConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScriptBootstrapActionConfig
impl<'de> Deserialize<'de> for ScriptBootstrapActionConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ScriptBootstrapActionConfig
Auto Trait Implementations§
impl Freeze for ScriptBootstrapActionConfig
impl RefUnwindSafe for ScriptBootstrapActionConfig
impl Send for ScriptBootstrapActionConfig
impl Sync for ScriptBootstrapActionConfig
impl Unpin for ScriptBootstrapActionConfig
impl UnwindSafe for ScriptBootstrapActionConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more